Searched refs:_root (Results 1 - 17 of 17) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/trax/
H A DSAX2DOM.java56 private Node _root = null; field in class:SAX2DOM
79 _root = _document;
83 _root = root;
92 _root = _document;
103 return _root;
123 if (last == _root && _nextSiblingCache != null) {
133 _nodeStk.push(_root);
216 if (last == _root && _nextSibling != null)
260 if (last == _root && _nextSibling != null)
293 if (last == _root
[all...]
/openjdk7/hotspot/src/share/vm/adlc/
H A Dforms.hpp256 Form *_root; member in class:FormList
265 if (_tail==NULL) { _root = _tail = _cur = entry;}
272 void reset() { if (_root) {_cur = _root; _justReset = 1;} };
279 void reset2() { if (_root) {_cur2 = _root; _justReset2 = 1;} };
315 FormList() { _justReset = 1; _justReset2 = 1; _root = NULL; _tail = NULL; _cur = NULL; _cur2 = NULL;};
/openjdk7/hotspot/src/share/vm/memory/
H A DbinaryTreeDictionary.hpp169 TreeList<Chunk>* _root; member in class:BinaryTreeDictionary
180 TreeList<Chunk>* root() const { return _root; }
181 void set_root(TreeList<Chunk>* v) { _root = v; }
H A DbinaryTreeDictionary.cpp317 _total_size(0), _total_free_blocks(0), _root(0) {}
524 if (tl == _root) {
525 if ((_root->left() == NULL) && (_root->right() == NULL)) {
526 if (_root->count() == 1) {
527 assert(_root->head() == tc, "Should only be this one chunk");
646 assert(!removing_only_chunk || _root == NULL, "root should be NULL");
720 // work down from the _root, looking for insertion point
1281 // . _root has no parent
1288 guarantee(root() == NULL || root()->parent() == NULL, "_root should
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DParser.java94 private SyntaxTreeNode _root; field in class:Parser
120 _root = null;
431 return (SyntaxTreeNode)getStylesheet(_root);
506 return _root;
1244 _root = null;
1294 if (_root == null) {
1300 _root = element;
/openjdk7/hotspot/src/share/vm/opto/
H A Dsuperword.hpp121 DepMem* _root; member in class:VALUE_OBJ_CLASS_SPEC
126 _root = new (_arena) DepMem(NULL);
130 DepMem* root() { return _root; }
H A Dgcm.cpp126 spstack.push(_root);
207 // roots.push(_root); _root will be processed among C->top() inputs
231 n->set_req(0, _root);
855 Node_Backward_Iterator iter((Node *)_root, visited, stack, _bbs);
1021 const Block* root_block = _bbs[_root->_idx];
1124 Node_Backward_Iterator iter((Node *)_root, visited, stack, _bbs);
1282 proj_list.push(_root); // Add real root as another root
1459 _root->dump(99999);
H A Dblock.cpp368 _root(r),
389 _broot = _bbs[_root->_idx];
403 nstack.push(_root, 0);
408 // 'np' is _root (see above) or RegionNode, StartNode: we push on stack
411 // idx > 0, except for the first node (_root) pushed on stack
887 _dump_cfg(_root,visited);
H A Dcompile.hpp318 RootNode* _root; // Unique root of compilation, or NULL after bail-out. member in class:Compile
679 RootNode* root() const { return _root; }
680 void set_root(RootNode* r) { _root = r; }
H A Dloopnode.hpp1108 IdealLoopTree* _root; member in class:LoopTreeIterator
1112 LoopTreeIterator(IdealLoopTree* root) : _root(root), _curnt(root) {}
H A Dblock.hpp383 RootNode *_root; // Root of whole program member in class:PhaseCFG
H A Dchaitin.cpp554 uint fp_lrg = n2lidx(_cfg._root->in(1)->in(TypeFunc::FramePtr));
1551 // set control to _root and place it into Start block
1553 base->init_req(0, _cfg._root);
1562 assert(base->in(0) == _cfg._root &&
H A Dcompile.cpp2022 assert( true, "Break here to ccp.dump_nodes_and_types(_root,999,1)");
3215 _root->verify_edges(visited);
3268 _root = NULL; // flush the graph, too
H A Dloopnode.cpp3751 while (_curnt != _root && _curnt->_next == NULL) {
3754 if (_curnt == _root) {
/openjdk7/hotspot/src/share/vm/ci/
H A DciTypeFlow.hpp770 Loop* _root; member in class:ciTypeFlow::PostorderLoops
773 PostorderLoops(Loop* root) : _root(root), _current(root) {
786 Loop* _root; member in class:ciTypeFlow::PreorderLoops
789 PreorderLoops(Loop* root) : _root(root), _current(root) {}
H A DciTypeFlow.cpp2424 while (_current != _root && _current->sibling() == NULL) {
2427 if (_current == _root) {
/openjdk7/hotspot/src/share/vm/runtime/
H A DvmStructs.cpp1096 c2_nonstatic_field(Compile, _root, RootNode*) \

Completed in 130 milliseconds