/external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/ |
H A D | node_breadcrumb.js | 52 var currentNode = cvox.ChromeVox.navigationManager.getCurrentNode(); 53 while (currentNode && !currentNode.hasAttribute) { 54 currentNode = currentNode.parentNode; 56 if (!currentNode) { 58 } else if (currentNode.hasAttribute(cvox.NodeBreadcrumb.TOUCHED_TAG)) { 59 cvTag = currentNode.getAttribute(cvox.NodeBreadcrumb.TOUCHED_TAG); 62 currentNode.setAttribute(cvox.NodeBreadcrumb.TOUCHED_TAG, cvTag); 158 var currentNode [all...] |
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
H A D | SimplifyMarkupCommand.cpp | 61 ContainerNode* currentNode = startingNode; local 63 while (currentNode != rootNode) { 64 if (currentNode->parentNode() != rootNode && isRemovableBlock(currentNode)) 65 nodesToRemove.append(currentNode); 67 currentNode = currentNode->parentNode(); 68 if (!currentNode) 71 if (!currentNode->renderer() || !currentNode [all...] |
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
H A D | ChildNodeList.cpp | 49 Node* ChildNodeList::traverseForwardToOffset(unsigned offset, Node& currentNode, unsigned& currentOffset) const argument 52 for (Node* next = currentNode.nextSibling(); next; next = next->nextSibling()) { 59 Node* ChildNodeList::traverseBackwardToOffset(unsigned offset, Node& currentNode, unsigned& currentOffset) const argument 62 for (Node* previous = currentNode.previousSibling(); previous; previous = previous->previousSibling()) {
|
H A D | ChildNodeList.h | 58 Node* traverseForwardToOffset(unsigned offset, Node& currentNode, unsigned& currentOffset) const; 59 Node* traverseBackwardToOffset(unsigned offset, Node& currentNode, unsigned& currentOffset) const;
|
H A D | LiveNodeList.h | 55 Element* traverseForwardToOffset(unsigned offset, Element& currentNode, unsigned& currentOffset) const; 56 Element* traverseBackwardToOffset(unsigned offset, Element& currentNode, unsigned& currentOffset) const;
|
H A D | TreeWalker.idl | 30 [RaisesException=Setter] attribute Node currentNode;
|
H A D | Position.cpp | 545 Node* currentNode = currentPos.node(); local 549 if (currentNode != lastNode) { 551 bool currentEditable = currentNode->hasEditableStyle(); 557 lastNode = currentNode; 562 if (endsOfNodeAreVisuallyDistinctPositions(currentNode) && currentNode != boundary) 566 RenderObject* renderer = currentNode->renderer(); 581 if (endsOfNodeAreVisuallyDistinctPositions(currentNode) && currentPos.atStartOfNode()) 585 if (editingIgnoresContent(currentNode) || isRenderedHTMLTableElement(currentNode)) { 668 Node* currentNode = currentPos.node(); local [all...] |
H A D | TreeWalker.h | 48 Node* currentNode() const { return m_current.get(); } function in class:blink::FINAL
|
/external/apache-xml/src/main/java/org/apache/xpath/functions/ |
H A D | 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);
|
H A D | FuncCurrent.java | 56 int currentNode = DTM.NULL; 62 currentNode = iter.getCurrentContextNode(); 69 currentNode = xctxt.getContextNode(); 71 return new XNodeSet(currentNode, xctxt.getDTMManager());
|
H A D | FuncPosition.java | 95 int currentNode = xctxt.getContextNode(); 96 // System.out.println("currentNode: "+currentNode); 99 if(n == currentNode)
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
H A D | CollectionItemsCache.h | 93 NodeType* currentNode = collection.traverseToFirst(); 96 while (currentNode) { 97 m_cachedList.append(currentNode); 98 currentNode = collection.traverseForwardToOffset(currentIndex + 1, *currentNode, currentIndex);
|
H A D | CollectionIndexCache.h | 170 NodeType* currentNode = collection.traverseBackwardToOffset(index, *cachedNode(), currentIndex); 171 ASSERT(currentNode); 172 setCachedNode(currentNode, currentIndex); 173 return currentNode; 195 NodeType* currentNode = collection.traverseForwardToOffset(index, *cachedNode(), currentIndex); 196 if (!currentNode) { 201 setCachedNode(currentNode, currentIndex); 202 return currentNode;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/ |
H A D | ANTLRUnbufferedCommonTreeNodeStreamState.h | 31 ANTLRCommonTree *currentNode; variable 42 - (ANTLRCommonTree *) currentNode;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/ |
H A D | ANTLRUnbufferedCommonTreeNodeStreamState.h | 31 ANTLRCommonTree *currentNode; variable 42 - (ANTLRCommonTree *) currentNode;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/ |
H A D | ANTLRUnbufferedCommonTreeNodeStreamState.h | 31 ANTLRCommonTree *currentNode; variable 42 - (ANTLRCommonTree *) currentNode;
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
H A D | ANTLRUnbufferedCommonTreeNodeStreamState.h | 31 ANTLRCommonTree *currentNode; variable 42 - (ANTLRCommonTree *) currentNode;
|
/external/chromium_org/third_party/WebKit/Source/core/frame/ |
H A D | SmartClip.cpp | 246 for (Node* currentNode = node; currentNode; currentNode = NodeTraversal::next(*currentNode, node)) { 247 RenderStyle* style = currentNode->computedStyle(); 251 if (Node* nodeFromFrame = nodeInsideFrame(currentNode)) 254 IntRect nodeRect = currentNode->pixelSnappedBoundingBox(); 255 if (currentNode->renderer() && !nodeRect.isEmpty()) { 256 if (currentNode->isTextNode()) { 257 String nodeValue = currentNode [all...] |
/external/llvm/lib/Analysis/ |
H A D | DominanceFrontier.cpp | 55 const DomTreeNode *currentNode = currentW->Node; local 58 assert (currentNode && "Invalid work object. Missing current Node"); 65 // Loop over CFG successors to calculate DFlocal[currentNode] 69 if (DT[*SI]->getIDom() != currentNode) 78 for (DomTreeNode::const_iterator NI = currentNode->begin(), 79 NE = currentNode->end(); NI != NE; ++NI) { 84 IDominee, currentNode));
|
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/omaha/ |
H A D | XMLParser.java | 84 Node currentNode = new Node(qName); 85 mTagStack.peek().children.add(currentNode); 86 mTagStack.push(currentNode); 91 currentNode.attributes.put(attributeName, attributeValue);
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/ |
H A D | CPUProfileBottomUpDataGrid.js | 260 var currentNode = profileDataGridNode; 263 while (currentNode.parent && (currentNode instanceof WebInspector.ProfileDataGridNode)) { 264 currentNode._takePropertiesFromProfileDataGridNode(profileDataGridNode); 266 focusNode = currentNode; 267 currentNode = currentNode.parent; 269 if (currentNode instanceof WebInspector.ProfileDataGridNode) 270 currentNode._keepOnlyChild(focusNode);
|
/external/apache-xml/src/main/java/org/apache/xalan/transformer/ |
H A D | 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/apache-xml/src/main/java/org/apache/xpath/patterns/ |
H A D | StepPattern.java | 320 * @param currentNode The current node context. 330 public XObject execute(XPathContext xctxt, int currentNode) argument 334 DTM dtm = xctxt.getDTM(currentNode); 338 int expType = dtm.getExpandedTypeID(currentNode); 340 return execute(xctxt, currentNode, dtm, expType); 372 * @param currentNode The currentNode. 382 XPathContext xctxt, int currentNode, DTM dtm, int expType) 398 score = super.execute(xctxt, currentNode, dtm, expType); 405 if (!executePredicates(xctxt, dtm, currentNode)) 381 execute( XPathContext xctxt, int currentNode, DTM dtm, int expType) argument 664 executeRelativePathPattern( XPathContext xctxt, DTM dtm, int currentNode) argument 708 executePredicates( XPathContext xctxt, DTM dtm, int currentNode) argument [all...] |
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/ui/ |
H A D | context_menu_widget.js | 111 var currentNode = cvox.ChromeVox.navigationManager.getCurrentNode(); 112 var cmd = currentNode.parentNode.id;
|
/external/antlr/antlr-3.4/runtime/C/include/ |
H A D | antlr3commontreenodestream.h | 224 pANTLR3_BASE_TREE currentNode; member in struct:ANTLR3_COMMON_TREE_NODE_STREAM_struct 322 pANTLR3_BASE_TREE currentNode; member in struct:ANTLR3_TREE_WALK_STATE_struct
|