Searched defs:refNode (Results 1 - 10 of 10) sorted by relevance

/external/webkit/Source/WebCore/editing/
H A DFormatBlockCommand.cpp68 Element* refNode = enclosingBlockFlowElement(end); local
73 if (isElementForFormatBlock(refNode->tagQName()) && start == startOfBlock(start)
74 && (end == endOfBlock(end) || isNodeVisiblyContainedWithin(refNode, range.get()))
75 && refNode != root && !root->isDescendantOf(refNode)) {
77 if (refNode->hasTagName(tagName()))
79 nodeAfterInsertionPosition = refNode;
H A DInsertParagraphSeparatorCommand.cpp256 Node *refNode; local
261 refNode = startBlock;
263 refNode = startBlock->childNode(insertionPosition.deprecatedEditingOffset());
264 ASSERT(refNode); // must be true or we'd be in the end of block case
266 refNode = insertionPosition.deprecatedNode();
271 insertNodeBefore(blockToInsert, refNode);
H A DModifySelectionListLevel.cpp91 void ModifySelectionListLevelCommand::insertSiblingNodeRangeBefore(Node* startNode, Node* endNode, Node* refNode) argument
97 insertNodeBefore(node, refNode);
106 void ModifySelectionListLevelCommand::insertSiblingNodeRangeAfter(Node* startNode, Node* endNode, Node* refNode) argument
112 insertNodeAfter(node, refNode);
117 refNode = node;
H A DReplaceSelectionCommand.cpp88 void insertNodeBefore(PassRefPtr<Node> node, Node* refNode);
224 void ReplacementFragment::insertNodeBefore(PassRefPtr<Node> node, Node* refNode) argument
226 if (!node || !refNode)
229 ContainerNode* parent = refNode->parentNode();
234 parent->insertBefore(node, refNode, ec);
988 RefPtr<Node> refNode = fragment.firstChild(); local
989 RefPtr<Node> node = refNode->nextSibling();
991 fragment.removeNode(refNode);
994 if ((isListElement(refNode.get()) || (isStyleSpan(refNode
[all...]
/external/webkit/Source/WebCore/svg/
H A DSVGLinearGradientElement.cpp184 Node* refNode = ownerDocument()->getElementById(SVGURIReference::getTarget(current->href())); local
185 if (refNode && (refNode->hasTagName(SVGNames::linearGradientTag) || refNode->hasTagName(SVGNames::radialGradientTag))) {
186 current = static_cast<SVGGradientElement*>(refNode);
H A DSVGPatternElement.cpp278 Node* refNode = ownerDocument()->getElementById(SVGURIReference::getTarget(current->href())); local
279 if (refNode && refNode->hasTagName(SVGNames::patternTag)) {
280 current = static_cast<const SVGPatternElement*>(const_cast<const Node*>(refNode));
H A DSVGRadialGradientElement.cpp198 Node* refNode = ownerDocument()->getElementById(SVGURIReference::getTarget(current->href())); local
199 if (refNode && (refNode->hasTagName(SVGNames::radialGradientTag) || refNode->hasTagName(SVGNames::linearGradientTag))) {
200 current = static_cast<SVGGradientElement*>(refNode);
/external/webkit/Source/WebCore/webaudio/
H A DAudioContext.cpp252 refNode(node.get()); // context keeps reference until source has finished playing
262 refNode(node.get()); // context keeps reference until we stop making javascript rendering callbacks
345 void AudioContext::refNode(AudioNode* node) function in class:WebCore::AudioContext
/external/webkit/Source/WebCore/dom/
H A DRange.cpp195 void Range::setStart(PassRefPtr<Node> refNode, int offset, ExceptionCode& ec) argument
202 if (!refNode) {
207 if (refNode->document() != m_ownerDocument) {
213 Node* childNode = checkNodeWOffset(refNode.get(), offset, ec);
217 m_start.set(refNode, offset, childNode);
235 void Range::setEnd(PassRefPtr<Node> refNode, int offset, ExceptionCode& ec) argument
242 if (!refNode) {
247 if (refNode->document() != m_ownerDocument) {
253 Node* childNode = checkNodeWOffset(refNode.get(), offset, ec);
257 m_end.set(refNode, offse
288 isPointInRange(Node* refNode, int offset, ExceptionCode& ec) argument
319 comparePoint(Node* refNode, int offset, ExceptionCode& ec) const argument
360 compareNode(Node* refNode, ExceptionCode& ec) const argument
571 intersectsNode(Node* refNode, ExceptionCode& ec) argument
1214 setStartAfter(Node* refNode, ExceptionCode& ec) argument
1239 setEndBefore(Node* refNode, ExceptionCode& ec) argument
1264 setEndAfter(Node* refNode, ExceptionCode& ec) argument
1290 selectNode(Node* refNode, ExceptionCode& ec) argument
1355 selectNodeContents(Node* refNode, ExceptionCode& ec) argument
1490 setStartBefore(Node* refNode, ExceptionCode& ec) argument
[all...]
/external/libxml2/
H A Dxmlschemas.c23769 xmlSchemaPSVIIDCNodePtr refNode = NULL; local
23789 refNode = matcher->targets->items[i];
23791 refKeys = refNode->keys;
23832 XML_SCHEMAV_CVC_IDC, refNode,
23837 refNode->keys, nbFields),
23851 XML_SCHEMAV_CVC_IDC, refNode,
23855 refNode->keys, nbFields),

Completed in 252 milliseconds