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

1 2 3 4 5 6

  /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);
  /cts/tests/tests/hardware/src/android/hardware/cts/helpers/sensoroperations/
SequentialSensorOperation.java 52 ISensorTestNode currentNode = asTestNode(parent);
56 operation.execute(currentNode);
RepeatingSensorOperation.java 53 ISensorTestNode currentNode = asTestNode(parent);
57 operation.execute(new TestNode(currentNode, i));
ParallelSensorOperation.java 95 final ISensorTestNode currentNode = asTestNode(parent);
101 operation.execute(currentNode);
  /external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/api/process/ast/
TypeLocator.java 88 AbstractTypeDeclaration currentNode = typeDeclaration;
90 typeNames.add(currentNode.getName().getFullyQualifiedName());
92 ASTNode parentNode = currentNode.getParent();
100 + currentNode);
103 currentNode = (AbstractTypeDeclaration) parentNode;
  /external/llvm/include/llvm/Analysis/
DominanceFrontierImpl.h 168 const DomTreeNodeT *currentNode = currentW->Node;
171 assert(currentNode && "Invalid work object. Missing current Node");
176 // Loop over CFG successors to calculate DFlocal[currentNode]
181 if (DT[*SI]->getIDom() != currentNode)
190 for (typename DomTreeNodeT::const_iterator NI = currentNode->begin(),
191 NE = currentNode->end();
197 childBB, currentBB, IDominee, currentNode));
  /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);
  /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);
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
FolderSelectorAdapter.java 239 TreeNode currentNode;
240 while ((currentNode = stack.poll()) != null) {
242 // If parentNode is null then currentNode is the root node (not a real folder)
245 if (parentNode != null && !currentNode.mAddedToList) {
250 pathName = currentNode.mWrappedObject.mFolder.name;
257 + currentNode.mWrappedObject.mFolder.name;
259 currentNode.mWrappedObject.mPathName = pathName;
260 folderList.add(currentNode.mWrappedObject);
262 currentNode.mAddedToList = true;
264 final TreeNode childNode = currentNode.pollChild()
    [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();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
AndroidContentAssist.java 164 Node currentNode = context.getSecond();
165 assert parentNode != null || currentNode != null;
168 if (currentNode == null || currentNode.getNodeType() == Node.TEXT_NODE) {
171 computeTextValues(proposals, offset, parentNode, currentNode, parentUiNode,
173 } else if (currentNode.getNodeType() == Node.ELEMENT_NODE) {
174 String parent = currentNode.getNodeName();
180 ? null : rootUiNode.findXmlNode(currentNode);
182 parentNode, currentNode, parent, info, nextChar);
185 currentNode, parent, nextChar)
    [all...]
  /prebuilts/tools/common/m2/repository/org/apache/maven/shared/maven-dependency-tree/1.2/
maven-dependency-tree-1.2.jar 
  /prebuilts/tools/common/m2/repository/org/apache/maven/shared/maven-dependency-tree/2.1/
maven-dependency-tree-2.1.jar 
  /external/guice/extensions/persist/lib/
log4j-1.2.14.jar 
  /external/slf4j/log4j-over-slf4j/compatibility/lib/
log4j-1.2.14.jar 
  /prebuilts/gradle-plugin/com/android/tools/perflib/perflib/25.0.0/
perflib-25.0.0.jar 

Completed in 1482 milliseconds

1 2 3 4 5 6