HomeSort by relevance Sort by last modified time
    Searched defs:currentNode (Results 1 - 25 of 35) sorted by null

1 2

  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRUnbufferedCommonTreeNodeStreamState.h 31 ANTLRCommonTree *currentNode;
42 - (ANTLRCommonTree *) currentNode;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRUnbufferedCommonTreeNodeStreamState.h 31 ANTLRCommonTree *currentNode;
42 - (ANTLRCommonTree *) currentNode;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRUnbufferedCommonTreeNodeStreamState.h 31 ANTLRCommonTree *currentNode;
42 - (ANTLRCommonTree *) currentNode;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRUnbufferedCommonTreeNodeStreamState.h 31 ANTLRCommonTree *currentNode;
42 - (ANTLRCommonTree *) currentNode;
ANTLRUnbufferedCommonTreeNodeStream.h 39 ANTLRCommonTree *currentNode;
60 @property (retain, getter=getCurrentNode, setter=setCurrentNode:) ANTLRCommonTree *currentNode;
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncCurrent.java 56 int currentNode = DTM.NULL;
62 currentNode = iter.getCurrentContextNode();
68 // not predicate => ContextNode == CurrentNode
69 currentNode = xctxt.getContextNode();
71 return new XNodeSet(currentNode, xctxt.getDTMManager());
FuncPosition.java 95 int currentNode = xctxt.getContextNode();
96 // System.out.println("currentNode: "+currentNode);
99 if(n == currentNode)
FunctionDef1Arg.java 86 int currentNode = xctxt.getCurrentNode();
87 if(DTM.NULL == currentNode)
91 DTM dtm = xctxt.getDTM(currentNode);
92 return dtm.getStringValue(currentNode);
119 int currentNode = xctxt.getCurrentNode();
120 if(DTM.NULL == currentNode)
124 DTM dtm = xctxt.getDTM(currentNode);
125 XMLString str = dtm.getStringValue(currentNode);
  /external/webkit/Source/WebCore/dom/
TreeWalker.h 44 Node* currentNode() const { return m_current.get(); }
Position.cpp 532 Node* currentNode = currentPos.node();
536 if (currentNode != lastNode) {
538 bool currentEditable = currentNode->rendererIsEditable();
544 lastNode = currentNode;
549 if (endsOfNodeAreVisuallyDistinctPositions(currentNode) && currentNode != boundary)
553 RenderObject* renderer = currentNode->renderer();
568 if (endsOfNodeAreVisuallyDistinctPositions(currentNode) && currentPos.atStartOfNode())
572 if (editingIgnoresContent(currentNode) || isTableElement(currentNode)) {
    [all...]
  /external/webkit/Source/JavaScriptCore/profiler/
Profile.cpp 54 ProfileNode* currentNode = m_head->firstChild();
55 for (ProfileNode* nextNode = currentNode; nextNode; nextNode = nextNode->firstChild())
56 currentNode = nextNode;
58 if (!currentNode)
59 currentNode = m_head.get();
62 while (currentNode && currentNode != endNode) {
63 (currentNode->*function)();
64 currentNode = currentNode->traverseNextNodePostOrder()
    [all...]
ProfileGenerator.cpp 152 ProfileNode* currentNode = 0;
154 currentNode = next;
156 if (currentNode->callIdentifier().m_name != "profile")
160 currentNode->parent()->setSelfTime(currentNode->parent()->selfTime() + currentNode->totalTime());
161 currentNode->parent()->removeChild(currentNode);
167 ProfileNode* currentNode = 0;
169 currentNode = next
    [all...]
  /external/llvm/lib/Analysis/
DominanceFrontier.cpp 56 const DomTreeNode *currentNode = currentW->Node;
59 assert (currentNode && "Invalid work object. Missing current Node");
66 // Loop over CFG successors to calculate DFlocal[currentNode]
70 if (DT[*SI]->getIDom() != currentNode)
79 for (DomTreeNode::const_iterator NI = currentNode->begin(),
80 NE = currentNode->end(); NI != NE; ++NI) {
85 IDominee, currentNode));
PathProfileInfo.cpp 139 BallLarusNode* currentNode = _ppi->_currentDag->getRoot ();
143 while (currentNode != _ppi->_currentDag->getExit()) {
144 BallLarusEdge* next = getNextEdge(currentNode, increment);
171 currentNode = next->getTarget();
178 BallLarusNode* currentNode = _ppi->_currentDag->getRoot ();
182 while (currentNode != _ppi->_currentDag->getExit()) {
183 BallLarusEdge* next = getNextEdge(currentNode, increment);
188 pbv->push_back (currentNode->getBlock());
191 pbv->push_back (currentNode->getBlock());
196 currentNode = next->getTarget()
    [all...]
PathNumbering.cpp 366 BallLarusNode* currentNode = dfsStack.top();
367 BasicBlock* currentBlock = currentNode->getBlock();
369 if(currentNode->getColor() != BallLarusNode::WHITE) {
372 currentNode->setColor(BallLarusNode::BLACK);
376 for( BasicBlock::iterator bbCurrent = currentNode->getBlock()->begin(),
377 bbEnd = currentNode->getBlock()->end(); bbCurrent != bbEnd;
381 BallLarusEdge* callEdge = addEdge(currentNode, getExit(), 0);
388 TerminatorInst* terminator = currentNode->getBlock()->getTerminator();
391 addEdge(currentNode, getExit(),0);
393 currentNode->setColor(BallLarusNode::GRAY)
    [all...]
  /external/webkit/Source/WebCore/html/parser/
HTMLConstructionSite.h 84 ContainerNode* currentNode() const { return m_openElements.topNode(); }
  /external/apache-xml/src/main/java/org/apache/xml/utils/
DOMBuilder.java 178 Node currentNode = m_currentNode;
180 if (null != currentNode)
182 if (currentNode == m_root && m_nextSibling != null)
183 currentNode.insertBefore(newNode, m_nextSibling);
185 currentNode.appendChild(newNode);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
FusionDictionary.java 356 Node currentNode = mRoot;
363 currentGroup = currentNode.mData.get(nodeIndex);
370 currentNode = currentGroup.mChildren;
371 nodeIndex = findIndexOfChar(currentNode, word[charIndex]);
376 final int insertionIndex = findInsertionIndex(currentNode, word[charIndex]);
380 currentNode.mData.add(insertionIndex, newGroup);
381 if (DBG) checkStack(currentNode);
430 currentNode.mData.set(nodeIndex, newParent);
432 if (DBG) checkStack(currentNode);
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3commontreenodestream.h 224 pANTLR3_BASE_TREE currentNode;
322 pANTLR3_BASE_TREE currentNode;
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemCallTemplate.java 212 int currentNode = xctxt.getCurrentNode();
221 XObject obj = ewp.getValue(transformer, currentNode);
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
KeyTable.java 195 int currentNode;
197 while (DTM.NULL != (currentNode = m_keyNodes.nextNode()))
206 currentNode,
211 addValueInRefsTable(xctxt, exprResult, currentNode);
220 addValueInRefsTable(xctxt, exprResult, currentNode);
  /external/webkit/Source/WebCore/page/
FocusController.cpp 208 Node* currentNode = document->focusedNode();
212 if (caretBrowsing && !currentNode)
213 currentNode = frame->selection()->start().deprecatedNode();
218 ? document->nextFocusableNode(currentNode, event)
219 : document->previousFocusableNode(currentNode, event);
  /libcore/luni/src/main/java/java/util/prefs/
AbstractPreferences.java 562 AbstractPreferences currentNode = this;
565 synchronized (currentNode.lock) {
566 temp = currentNode.cachedNode.get(name);
568 temp = getNodeFromBackend(createNew, currentNode, name);
571 currentNode = temp;
572 if (currentNode == null) {
576 return currentNode;
580 AbstractPreferences currentNode, String name) throws BackingStoreException {
586 temp = currentNode.childSpi(name);
587 currentNode.cachedNode.put(name, temp)
    [all...]
  /sdk/hierarchyviewer2/libs/hierarchyviewerlib/src/com/android/hierarchyviewerlib/device/
DeviceBridge.java 439 ViewNode currentNode = null;
451 currentNode = currentNode.parent;
454 currentNode = new ViewNode(window, currentNode, line.substring(depth));
457 if (currentNode == null) {
460 while (currentNode.parent != null) {
461 currentNode = currentNode.parent;
465 currentNode.protocolVersion = serverInfo.protocolVersion
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
NewHdfParser.java 111 Data currentNode;
119 currentNode = output;
532 Data child = handleNodeCreation(state.currentNode, element);
533 state.context.push(state.currentNode);
534 state.currentNode = child;
543 Data child = handleNodeCreation(state.currentNode, element);
548 Data child = handleNodeCreation(state.currentNode, element);
558 Data child = handleNodeCreation(state.currentNode, element);
567 state.currentNode = state.context.pop();

Completed in 860 milliseconds

1 2