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

1 2 3

  /external/chromium_org/third_party/WebKit/Source/core/editing/
SimplifyMarkupCommand.cpp 61 Node* currentNode = startingNode;
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->renderer()->isRenderInline() || toRenderInline(currentNode->renderer())->alwaysCreateLineBoxes()
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
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);
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)
  /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;
  /external/chromium_org/third_party/WebKit/Source/core/frame/
SmartClip.cpp 263 for (Node* currentNode = node; currentNode; currentNode = NodeTraversal::next(*currentNode, node)) {
264 RenderStyle* style = currentNode->computedStyle();
268 if (Node* nodeFromFrame = nodeInsideFrame(currentNode))
271 IntRect nodeRect = currentNode->pixelSnappedBoundingBox();
272 if (currentNode->renderer() && !nodeRect.isEmpty()) {
273 if (currentNode->isTextNode()) {
274 String nodeValue = currentNode->nodeValue()
    [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));
PathNumbering.cpp 365 BallLarusNode* currentNode = dfsStack.top();
366 BasicBlock* currentBlock = currentNode->getBlock();
368 if(currentNode->getColor() != BallLarusNode::WHITE) {
371 currentNode->setColor(BallLarusNode::BLACK);
375 for( BasicBlock::iterator bbCurrent = currentNode->getBlock()->begin(),
376 bbEnd = currentNode->getBlock()->end(); bbCurrent != bbEnd;
380 BallLarusEdge* callEdge = addEdge(currentNode, getExit(), 0);
387 TerminatorInst* terminator = currentNode->getBlock()->getTerminator();
390 addEdge(currentNode, getExit(),0);
392 currentNode->setColor(BallLarusNode::GRAY)
    [all...]
PathProfileInfo.cpp 138 BallLarusNode* currentNode = _ppi->_currentDag->getRoot ();
142 while (currentNode != _ppi->_currentDag->getExit()) {
143 BallLarusEdge* next = getNextEdge(currentNode, increment);
170 currentNode = next->getTarget();
177 BallLarusNode* currentNode = _ppi->_currentDag->getRoot ();
181 while (currentNode != _ppi->_currentDag->getExit()) {
182 BallLarusEdge* next = getNextEdge(currentNode, increment);
187 pbv->push_back (currentNode->getBlock());
190 pbv->push_back (currentNode->getBlock());
195 currentNode = next->getTarget()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
BottomUpProfileDataGridTree.js 241 var currentNode = profileDataGridNode;
244 while (currentNode.parent && (currentNode instanceof WebInspector.ProfileDataGridNode)) {
245 currentNode._takePropertiesFromProfileDataGridNode(profileDataGridNode);
247 focusNode = currentNode;
248 currentNode = currentNode.parent;
250 if (currentNode instanceof WebInspector.ProfileDataGridNode)
251 currentNode._keepOnlyChild(focusNode);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
TreeWalker.idl 29 [RaisesException=Setter] attribute Node currentNode;
TreeWalker.h 45 Node* currentNode() const { return m_current.get(); }
Position.cpp 598 Node* currentNode = currentPos.node();
602 if (currentNode != lastNode) {
604 bool currentEditable = currentNode->rendererIsEditable();
610 lastNode = currentNode;
615 if (endsOfNodeAreVisuallyDistinctPositions(currentNode) && currentNode != boundary)
619 RenderObject* renderer = currentNode->renderer();
634 if (endsOfNodeAreVisuallyDistinctPositions(currentNode) && currentPos.atStartOfNode())
638 if (editingIgnoresContent(currentNode) || isTableElement(currentNode)) {
    [all...]
  /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 243 TreeNode currentNode;
244 while ((currentNode = stack.poll()) != null) {
246 // If parentNode is null then currentNode is the root node (not a real folder)
249 if (parentNode != null && !currentNode.mAddedToList) {
254 pathName = currentNode.mWrappedObject.mFolder.name;
261 + currentNode.mWrappedObject.mFolder.name;
263 currentNode.mWrappedObject.mPathName = pathName;
264 folderList.add(currentNode.mWrappedObject);
266 currentNode.mAddedToList = true;
268 final TreeNode childNode = currentNode.pollChild()
    [all...]
  /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...]
  /external/apache-xml/src/main/java/org/apache/xpath/patterns/
StepPattern.java 320 * @param currentNode The current node context.
330 public XObject execute(XPathContext xctxt, int currentNode)
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))
    [all...]
  /sdk/templates/docs/
default.js 50 var $currentNode = null;
65 .appendTo($currentNode);
78 $currentNode = $('<div>')
  /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/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/values/
ValuesContentAssist.java 142 Node parentNode, Node currentNode, UiElementNode uiParent,
144 super.computeTextValues(proposals, offset, parentNode, currentNode, uiParent,
196 int replaceLength = computeTextReplaceLength(currentNode, offset);
197 addMatchingProposals(proposals, values, offset, currentNode,
233 int replaceLength = computeTextReplaceLength(currentNode, offset);
234 addMatchingProposals(proposals, choices, offset, 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/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);

Completed in 1026 milliseconds

1 2 3