HomeSort by relevance Sort by last modified time
    Searched refs:currentNode (Results 26 - 50 of 69) sorted by null

12 3

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
AndroidContentAssist.java 158 Node currentNode = context.getSecond();
159 assert parentNode != null || currentNode != null;
162 if (currentNode == null || currentNode.getNodeType() == Node.TEXT_NODE) {
165 computeTextValues(proposals, offset, parentNode, currentNode, parentUiNode,
167 } else if (currentNode.getNodeType() == Node.ELEMENT_NODE) {
168 String parent = currentNode.getNodeName();
174 ? null : rootUiNode.findXmlNode(currentNode);
176 parentNode, currentNode, parent, info, nextChar);
179 currentNode, parent, nextChar)
    [all...]
  /sdk/hierarchyviewer2/libs/hierarchyviewerlib/src/com/android/hierarchyviewerlib/ui/
LayoutViewer.java 214 DrawableViewNode currentNode = mSelectedNode;
215 while (currentNode != mTree) {
216 left += currentNode.viewNode.left;
217 top += currentNode.viewNode.top;
218 currentNode = currentNode.parent;
219 left -= currentNode.viewNode.scrollX;
220 top -= currentNode.viewNode.scrollY;
224 currentNode = mSelectedNode.parent;
229 currentNode.viewNode.width, currentNode.viewNode.height)
    [all...]
TreeView.java 243 DrawableViewNode currentNode = mSelectedNode;
244 while (currentNode.parent != null && currentNode.viewNode.index == 0) {
245 currentNode = currentNode.parent;
247 if (currentNode.parent != null) {
249 currentNode =
250 currentNode.parent.children
251 .get(currentNode.viewNode.index - 1);
252 while (currentNode.children.size() != 0)
    [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...]
  /external/webkit/Source/WebCore/dom/
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...]
TreeWalker.h 44 Node* currentNode() const { return m_current.get(); }
  /sdk/templates/docs/
default.js 50 var $currentNode = null;
65 .appendTo($currentNode);
78 $currentNode = $('<div>')
  /tools/motodev/src/plugins/db.devices/src/com/motorolamobility/studio/android/db/devices/ui/action/
PopupMenuActionDelegate.java 111 private ITreeNode currentNode;
122 handler = type.getHandler(currentNode);
148 currentNode = (ITreeNode) selectedObject;
  /external/webkit/Source/WebCore/html/parser/
HTMLConstructionSite.cpp 242 attach(currentNode(), Comment::create(currentNode()->document(), token.comment()));
260 return attach(currentNode(), child);
316 RefPtr<HTMLScriptElement> element = HTMLScriptElement::create(scriptTag, currentNode()->document(), true);
335 site.parent = currentNode();
368 RefPtr<Element> element = currentNode()->document()->createElement(tagName, true);
379 RefPtr<Element> element = HTMLElementFactory::createHTMLElement(tagName, currentNode()->document(), form(), true);
458 while (hasImpliedEndTag(currentNode()) && !currentNode()->hasLocalName(tagName))
464 while (hasImpliedEndTag(currentNode()))
    [all...]
HTMLTreeBuilder.cpp 467 m_parser->tokenizer()->setShouldAllowCDATA(m_insertionMode == InForeignContentMode && !isInHTMLNamespace(m_tree.currentNode()));
801 if (isNumberedHeaderTag(m_tree.currentNode()->localName())) {
    [all...]
HTMLConstructionSite.h 84 ContainerNode* currentNode() const { return m_openElements.topNode(); }
  /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 140 Node parentNode, Node currentNode, UiElementNode uiParent,
142 super.computeTextValues(proposals, offset, parentNode, currentNode, uiParent,
194 int replaceLength = computeTextReplaceLength(currentNode, offset);
195 addMatchingProposals(proposals, values, offset, currentNode,
231 int replaceLength = computeTextReplaceLength(currentNode, offset);
232 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/webkit/Source/WebKit/mac/WebView/
WebTextIterator.mm 107 - (DOMNode *)currentNode
  /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/webkit/Source/WebKit/android/jni/
WebViewCore.cpp     [all...]
  /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/webkit/Source/JavaScriptCore/profiler/
ProfileNode.cpp 219 for (ProfileNode* currentNode = node; currentNode; currentNode = currentNode->traverseNextNodePreOrder())
220 currentNode->setVisible(visible);
  /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();
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
FusionDictionary.java 389 Node currentNode = mRoot;
396 currentGroup = currentNode.mData.get(nodeIndex);
403 currentNode = currentGroup.mChildren;
404 nodeIndex = findIndexOfChar(currentNode, word[charIndex]);
409 final int insertionIndex = findInsertionIndex(currentNode, word[charIndex]);
413 currentNode.mData.add(insertionIndex, newGroup);
414 if (DBG) checkStack(currentNode);
472 currentNode.mData.set(nodeIndex, newParent);
474 if (DBG) checkStack(currentNode);
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRUnbufferedCommonTreeNodeStream.h 39 ANTLRCommonTree *currentNode;
60 @property (retain, getter=getCurrentNode, setter=setCurrentNode:) ANTLRCommonTree *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);
  /tools/motodev/src/plugins/db.core/src/com/motorolamobility/studio/android/db/core/ui/action/
PopupMenuActionDelegate.java 268 private ITreeNode currentNode;
279 handler = type.getHandler(currentNode);
305 currentNode = (ITreeNode) selectedObject;
  /external/libxml2/
HTMLparser.c     [all...]

Completed in 1091 milliseconds

12 3