Searched defs:acceptNode (Results 1 - 19 of 19) sorted by relevance

/external/webkit/LayoutTests/fast/dom/TreeWalker/script-tests/
H A Dtraversal-reject.js8 acceptNode: function(node) {
17 acceptNode: function(node) {
H A Dtraversal-skip.js8 acceptNode: function(node) {
17 acceptNode: function(node) {
H A Dtraversal-skip-most.js8 acceptNode: function(node) {
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) {
/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 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
/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));
/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
H A DMatchPatternIterator.java239 if(DTMIterator.FILTER_ACCEPT == acceptNode(next, m_execContext))
287 public short acceptNode(int n, XPathContext xctxt) method in class:MatchPatternIterator
313 // System.out.println("\n::acceptNode - score: "+score.num()+"::");
H A DFilterExprWalker.java156 * This method needs to override AxesWalker.acceptNode because FilterExprWalkers
162 public short acceptNode(int n) method in class:FilterExprWalker
H A DPredicatedNodeTest.java461 public short acceptNode(int n) method in class:PredicatedNodeTest
472 // System.out.println("\n::acceptNode - score: "+score.num()+"::");
/external/webkit/Source/WebCore/bindings/js/
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/webkit/Source/WebCore/bindings/v8/
H A DV8NodeFilterCondition.cpp61 short V8NodeFilterCondition::acceptNode(ScriptState* state, Node* node) const function in class:WebCore::V8NodeFilterCondition
74 v8::Local<v8::Value> value = m_filter->ToObject()->Get(v8::String::New("acceptNode"));
76 V8Proxy::throwError(V8Proxy::TypeError, "NodeFilter object does not have an acceptNode function");
/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/jdiff/
H A Dxerces.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ org/ org/apache/ org/apache/html/ ...

Completed in 328 milliseconds