Searched refs:acceptNode (Results 1 - 25 of 36) sorted by relevance

12

/external/webkit/Source/WebCore/dom/
H A DNodeFilter.cpp32 short NodeFilter::acceptNode(ScriptState* state, Node* node) const function in class:WebCore::NodeFilter
35 return m_condition ? m_condition->acceptNode(state, node) : static_cast<short>(FILTER_ACCEPT);
H A DNodeFilterCondition.cpp32 short NodeFilterCondition::acceptNode(ScriptState*, Node*) const function in class:WebCore::NodeFilterCondition
H A DTraversal.cpp41 short Traversal::acceptNode(ScriptState* state, Node* node) const function in class:WebCore::Traversal
51 return m_filter->acceptNode(state, node);
H A DNodeFilterCondition.h42 virtual short acceptNode(ScriptState*, Node*) const = 0;
H A DNodeFilter.h37 * The following constants are returned by the acceptNode()
78 short acceptNode(ScriptState*, Node*) const;
82 short acceptNode(Node* node) const { return acceptNode(scriptStateFromNode(mainThreadNormalWorld(), node), node); } function in class:WebCore::NodeFilter
H A DTreeWalker.cpp64 short acceptNodeResult = acceptNode(state, node.get());
76 short acceptNodeResult = acceptNode(state, node.get());
109 short acceptNodeResult = acceptNode(state, node.get());
146 short acceptNodeResult = acceptNode(state, sibling.get());
168 short acceptNodeResult = acceptNode(state, node.get());
183 short acceptNodeResult = acceptNode(state, sibling.get());
205 short acceptNodeResult = acceptNode(state, node.get());
219 short acceptNodeResult = acceptNode(state, node.get());
226 acceptNodeResult = acceptNode(state, node.get());
243 short acceptNodeResult = acceptNode(stat
[all...]
H A DTraversal.h45 short acceptNode(ScriptState*, Node*) const;
H A DNodeFilter.idl30 // Constants returned by acceptNode
50 [CallWith=ScriptState] short acceptNode(in Node n);
H A DNodeIterator.cpp106 bool nodeWasAccepted = acceptNode(state, provisionalResult.get()) == NodeFilter::FILTER_ACCEPT;
135 bool nodeWasAccepted = acceptNode(state, provisionalResult.get()) == NodeFilter::FILTER_ACCEPT;
/external/webkit/Source/WebCore/bindings/objc/
H A DObjCNodeFilterCondition.mm40 short ObjCNodeFilterCondition::acceptNode(ExecState*, Node* node) const
44 return [m_filter.get() acceptNode:kit(node)];
H A DObjCNodeFilterCondition.h47 virtual short acceptNode(JSC::ExecState*, Node*) const;
/external/webkit/Source/WebCore/bindings/cpp/
H A DWebDOMNodeFilterCustom.cpp32 short WebDOMNodeFilter::acceptNode(const WebDOMNode& n) function in class:WebDOMNodeFilter
37 return impl()->acceptNode(0, toWebCore(n));
H A DWebNativeNodeFilterCondition.cpp37 short WebNativeNodeFilterCondition::acceptNode(WebCore::ScriptState*, WebCore::Node* node) const function in class:WebNativeNodeFilterCondition
39 return m_filter->acceptNode(toWebKit(node));
H A DWebNativeNodeFilterCondition.h36 virtual short acceptNode(WebCore::ScriptState*, WebCore::Node*) const;
/external/apache-xml/src/main/java/org/apache/xml/dtm/
H A DDTMFilter.java154 public short acceptNode(int nodeHandle, int whatToShow); method in interface:DTMFilter
186 public short acceptNode(int nodeHandle, int whatToShow, int expandedName); method in interface:DTMFilter
/external/webkit/LayoutTests/fast/dom/TreeWalker/script-tests/
H A DacceptNode-filter.js23 acceptNode : function(node) {
46 debug("<br>Testing with object lacking acceptNode property");
54 debug("<br>Testing with object with non-function acceptNode property");
55 walker = document.createTreeWalker(testElement, NodeFilter.SHOW_ELEMENT, { acceptNode: "foo" }, false);
62 debug("<br>Testing with function having acceptNode function");
64 filter.acceptNode = function(node) { return NodeFilter.FILTER_SKIP; };
70 debug("<br>Testing acceptNode callee");
72 acceptNode: function(node) {
H A Dfilter-throw.js20 acceptNode : function(node) {
H A Dtraversal-skip-most.js8 acceptNode: function(node) {
H A Dtraversal-reject.js8 acceptNode: function(node) {
17 acceptNode: function(node) {
H A Dtraversal-skip.js8 acceptNode: function(node) {
17 acceptNode: function(node) {
/external/webkit/Source/WebCore/bindings/v8/
H A DV8NodeFilterCondition.h54 virtual short acceptNode(ScriptState*, Node*) const;
/external/webkit/Source/WebCore/bindings/js/
H A DJSNodeFilterCondition.h43 virtual short acceptNode(ScriptState*, Node*) const;
H A DJSNodeFilterCondition.cpp40 short JSNodeFilterCondition::acceptNode(JSC::ExecState* exec, Node* filterNode) const function in class:WebCore::JSNodeFilterCondition
60 function = m_filter.get().get(exec, Identifier(exec, "acceptNode"));
63 throwError(exec, createTypeError(exec, "NodeFilter object does not have an acceptNode function"));
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
H A DKeyIterator.java100 public short acceptNode(int testNode) method in class:KeyIterator
/external/apache-xml/src/main/java/org/apache/xpath/axes/
H A DUnionChildIterator.java113 public short acceptNode(int n) method in class:UnionChildIterator

Completed in 1081 milliseconds

12