Searched defs:baseNode (Results 1 - 5 of 5) sorted by relevance

/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowUriMatcher.java82 private void addNodes(MatchNode baseNode, List<String> segments, int code) { argument
87 nextNode = baseNode.number;
90 baseNode.number = nextNode;
94 nextNode = baseNode.text;
97 baseNode.text = nextNode;
101 nextNode = baseNode.map.get(segment);
104 baseNode.map.put(segment, nextNode);
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DXMPNormalizer.java330 XMPNode baseNode = XMPNodeUtils
333 if (baseNode == null)
349 baseNode = new XMPNode(info.getPrefix() + info.getPropName(), info
351 baseSchema.addChild(baseNode);
352 transplantArrayItemAlias (propertyIt, currProp, baseNode);
363 compareAliasedSubtrees (currProp, baseNode, true);
377 int xdIndex = XMPNodeUtils.lookupLanguageItem(baseNode,
381 itemNode = baseNode.getChild(xdIndex);
384 else if (baseNode.hasChildren())
386 itemNode = baseNode
521 compareAliasedSubtrees(XMPNode aliasNode, XMPNode baseNode, boolean outerCall) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DInputMethodController.cpp292 Node* baseNode = base.deprecatedNode(); local
297 if (baseNode && baseNode == extentNode && baseNode->isTextNode() && baseOffset + text.length() == extentOffset) {
298 m_compositionNode = toText(baseNode);
307 if (baseNode->renderer())
308 baseNode->renderer()->setShouldDoFullPaintInvalidation(true);
312 RefPtrWillBeRawPtr<Range> selectedRange = Range::create(baseNode->document(), baseNode, start, baseNode, en
322 Node* baseNode = base.anchorNode(); local
[all...]
H A DDOMSelection.cpp134 Node* DOMSelection::baseNode() const function in class:blink::DOMSelection
261 void DOMSelection::setBaseAndExtent(Node* baseNode, int baseOffset, Node* extentNode, int extentOffset, ExceptionState& exceptionState) argument
276 if (!isValidForPosition(baseNode) || !isValidForPosition(extentNode))
280 VisiblePosition visibleBase = VisiblePosition(createLegacyEditingPosition(baseNode, baseOffset), DOWNSTREAM);
H A DTextIterator.cpp390 Node* baseNode = m_node->lastChild() ? m_node->lastChild() : m_node.get(); local
391 emitCharacter('\n', baseNode->parentNode(), baseNode, 1, 1);
1121 Node* baseNode = m_node->lastChild() ? m_node->lastChild() : m_node.get();
1134 emitCharacter('\n', baseNode->parentNode(), baseNode, 1, 1);
1140 emitCharacter('\n', baseNode->parentNode(), baseNode, 1, 1);
1146 emitCharacter(space, baseNode->parentNode(), baseNode,
[all...]

Completed in 207 milliseconds