HomeSort by relevance Sort by last modified time
    Searched refs:NodeFilter (Results 1 - 25 of 61) sorted by null

1 2 3

  /libcore/luni/src/main/java/org/w3c/dom/ls/
LSSerializerFilter.java 15 import org.w3c.dom.traversal.NodeFilter;
21 * based on the <code>NodeFilter</code> interface defined in [<a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Traversal-Range-20001113'>DOM Level 2 Traversal and Range</a>]
47 public interface LSSerializerFilter extends NodeFilter {
51 * is automatically serialized. See <code>NodeFilter</code> for
  /libcore/luni/src/main/java/org/w3c/dom/traversal/
NodeIterator.java 43 * in the <code>NodeFilter</code> interface. Nodes not accepted by
51 * The <code>NodeFilter</code> used to screen nodes.
53 public NodeFilter getFilter();
NodeFilter.java 20 * <code>NodeFilter</code>, it applies the filter before it returns the next
24 * <p>The DOM does not provide any filters. <code>NodeFilter</code> is just an
37 public interface NodeFilter {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/xml/dom/
NodeFilter.py 1 # This is the Python mapping for interface NodeFilter from
4 class NodeFilter:
6 This is the DOM2 NodeFilter interface. It contains only constants.
xmlbuilder.py 6 from xml.dom.NodeFilter import NodeFilter
320 whatToShow = NodeFilter.SHOW_ALL
331 del NodeFilter
expatbuilder.py 34 from xml.dom.NodeFilter import NodeFilter
506 Node.ELEMENT_NODE: NodeFilter.SHOW_ELEMENT,
507 Node.ATTRIBUTE_NODE: NodeFilter.SHOW_ATTRIBUTE,
508 Node.TEXT_NODE: NodeFilter.SHOW_TEXT,
509 Node.CDATA_SECTION_NODE: NodeFilter.SHOW_CDATA_SECTION,
510 Node.ENTITY_REFERENCE_NODE: NodeFilter.SHOW_ENTITY_REFERENCE,
511 Node.ENTITY_NODE: NodeFilter.SHOW_ENTITY,
512 Node.PROCESSING_INSTRUCTION_NODE: NodeFilter.SHOW_PROCESSING_INSTRUCTION,
513 Node.COMMENT_NODE: NodeFilter.SHOW_COMMENT,
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/xml/dom/
NodeFilter.py 1 # This is the Python mapping for interface NodeFilter from
4 class NodeFilter:
6 This is the DOM2 NodeFilter interface. It contains only constants.
xmlbuilder.py 6 from xml.dom.NodeFilter import NodeFilter
320 whatToShow = NodeFilter.SHOW_ALL
331 del NodeFilter
expatbuilder.py 34 from xml.dom.NodeFilter import NodeFilter
506 Node.ELEMENT_NODE: NodeFilter.SHOW_ELEMENT,
507 Node.ATTRIBUTE_NODE: NodeFilter.SHOW_ATTRIBUTE,
508 Node.TEXT_NODE: NodeFilter.SHOW_TEXT,
509 Node.CDATA_SECTION_NODE: NodeFilter.SHOW_CDATA_SECTION,
510 Node.ENTITY_REFERENCE_NODE: NodeFilter.SHOW_ENTITY_REFERENCE,
511 Node.ENTITY_NODE: NodeFilter.SHOW_ENTITY,
512 Node.PROCESSING_INSTRUCTION_NODE: NodeFilter.SHOW_PROCESSING_INSTRUCTION,
513 Node.COMMENT_NODE: NodeFilter.SHOW_COMMENT,
    [all...]
  /external/python/cpython2/Lib/xml/dom/
NodeFilter.py 1 # This is the Python mapping for interface NodeFilter from
4 class NodeFilter:
6 This is the DOM2 NodeFilter interface. It contains only constants.
xmlbuilder.py 6 from xml.dom.NodeFilter import NodeFilter
320 whatToShow = NodeFilter.SHOW_ALL
331 del NodeFilter
expatbuilder.py 34 from xml.dom.NodeFilter import NodeFilter
506 Node.ELEMENT_NODE: NodeFilter.SHOW_ELEMENT,
507 Node.ATTRIBUTE_NODE: NodeFilter.SHOW_ATTRIBUTE,
508 Node.TEXT_NODE: NodeFilter.SHOW_TEXT,
509 Node.CDATA_SECTION_NODE: NodeFilter.SHOW_CDATA_SECTION,
510 Node.ENTITY_REFERENCE_NODE: NodeFilter.SHOW_ENTITY_REFERENCE,
511 Node.ENTITY_NODE: NodeFilter.SHOW_ENTITY,
512 Node.PROCESSING_INSTRUCTION_NODE: NodeFilter.SHOW_PROCESSING_INSTRUCTION,
513 Node.COMMENT_NODE: NodeFilter.SHOW_COMMENT
    [all...]
  /external/python/cpython3/Lib/xml/dom/
NodeFilter.py 1 # This is the Python mapping for interface NodeFilter from
4 class NodeFilter:
6 This is the DOM2 NodeFilter interface. It contains only constants.
expatbuilder.py 34 from xml.dom.NodeFilter import NodeFilter
499 Node.ELEMENT_NODE: NodeFilter.SHOW_ELEMENT,
500 Node.ATTRIBUTE_NODE: NodeFilter.SHOW_ATTRIBUTE,
501 Node.TEXT_NODE: NodeFilter.SHOW_TEXT,
502 Node.CDATA_SECTION_NODE: NodeFilter.SHOW_CDATA_SECTION,
503 Node.ENTITY_REFERENCE_NODE: NodeFilter.SHOW_ENTITY_REFERENCE,
504 Node.ENTITY_NODE: NodeFilter.SHOW_ENTITY,
505 Node.PROCESSING_INSTRUCTION_NODE: NodeFilter.SHOW_PROCESSING_INSTRUCTION,
506 Node.COMMENT_NODE: NodeFilter.SHOW_COMMENT
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/xml/dom/
NodeFilter.py 1 # This is the Python mapping for interface NodeFilter from
4 class NodeFilter:
6 This is the DOM2 NodeFilter interface. It contains only constants.
xmlbuilder.py 6 from xml.dom.NodeFilter import NodeFilter
320 whatToShow = NodeFilter.SHOW_ALL
331 del NodeFilter
  /prebuilts/gdb/linux-x86/lib/python2.7/xml/dom/
NodeFilter.py 1 # This is the Python mapping for interface NodeFilter from
4 class NodeFilter:
6 This is the DOM2 NodeFilter interface. It contains only constants.
xmlbuilder.py 6 from xml.dom.NodeFilter import NodeFilter
320 whatToShow = NodeFilter.SHOW_ALL
331 del NodeFilter
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/dom/
NodeFilter.py 1 # This is the Python mapping for interface NodeFilter from
4 class NodeFilter:
6 This is the DOM2 NodeFilter interface. It contains only constants.
xmlbuilder.py 6 from xml.dom.NodeFilter import NodeFilter
320 whatToShow = NodeFilter.SHOW_ALL
331 del NodeFilter
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/dom/
NodeFilter.py 1 # This is the Python mapping for interface NodeFilter from
4 class NodeFilter:
6 This is the DOM2 NodeFilter interface. It contains only constants.
xmlbuilder.py 6 from xml.dom.NodeFilter import NodeFilter
320 whatToShow = NodeFilter.SHOW_ALL
331 del NodeFilter
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMNodeIterator.java 29 import org.w3c.dom.traversal.NodeFilter;
92 // org.w3c.dom.traversal.NodeFilter API follows
120 * object. We could return something which supports the NodeFilter interface
128 public NodeFilter getFilter()
  /developers/samples/android/input/autofill/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/util/
Util.java 42 public static final NodeFilter AUTOFILL_ID_FILTER = (node, id) ->
194 @NonNull NodeFilter filter) {
208 @NonNull NodeFilter filter) {
226 @NonNull NodeFilter filter) {
306 public interface NodeFilter {
  /prebuilts/tools/common/m2/repository/com/google/android/apps/common/testing/accessibility/framework/accessibility-test-framework/2.0/
accessibility-test-framework-2.0.jar 

Completed in 433 milliseconds

1 2 3