HomeSort by relevance Sort by last modified time
    Searched refs:NodeList (Results 26 - 50 of 957) sorted by null

12 3 4 5 6 7 8 91011>>

  /libcore/luni/src/test/java/tests/org/w3c/dom/
HasAttribute.java 5 import org.w3c.dom.NodeList;
51 NodeList elementList;
64 // NodeList elementList;
75 NodeList elementList;
86 NodeList elementList;
DocumentGetElementsByTagnameNS.java 6 import org.w3c.dom.NodeList;
12 * The method getElementsByTagNameNS returns a NodeList of all the Elements with
17 * values of namespaceURI=* and localName=*. This should return a nodeList of 1
64 NodeList childList;
78 NodeList childList;
90 NodeList childList;
98 NodeList childList;
108 NodeList childList;
  /external/apache-xml/src/main/java/org/apache/xpath/objects/
XNodeSetForDOM.java 28 import org.w3c.dom.NodeList;
33 * Node object, NodeList object, or NodeIterator.
61 public XNodeSetForDOM(NodeList nodeList, XPathContext xctxt)
64 m_origObj = nodeList;
69 // m_obj=new org.apache.xpath.NodeSetDTM(nodeList, xctxt);
70 org.apache.xpath.NodeSetDTM nsdtm=new org.apache.xpath.NodeSetDTM(nodeList, xctxt);
101 * Cast result object to a nodelist. Always issues an error.
114 * Cast result object to a nodelist. Always issues an error.
120 public NodeList nodelist() throws javax.xml.transform.TransformerExceptio method in class:XNodeSetForDOM
    [all...]
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/modules/
ModuleDeclaration.java 5 import com.github.javaparser.ast.NodeList;
29 private NodeList<AnnotationExpr> annotations;
33 private NodeList<ModuleStmt> moduleStmts;
36 this(null, new NodeList<>(), new Name(), false, new NodeList<>());
40 this(null, new NodeList<>(), name, isOpen, new NodeList<>());
44 public ModuleDeclaration(NodeList<AnnotationExpr> annotations, Name name, boolean isOpen, NodeList<ModuleStmt> moduleStmts) {
52 public ModuleDeclaration(TokenRange tokenRange, NodeList<AnnotationExpr> annotations, Name name, boolean isOpen, NodeList<ModuleStmt> moduleStmts)
    [all...]
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/stmt/
ExplicitConstructorInvocationStmt.java 24 import com.github.javaparser.ast.NodeList;
57 private NodeList<Type> typeArguments;
64 private NodeList<Expression> arguments;
67 this(null, new NodeList<>(), true, null, new NodeList<>());
70 public ExplicitConstructorInvocationStmt(final boolean isThis, final Expression expression, final NodeList<Expression> arguments) {
71 this(null, new NodeList<>(), isThis, expression, arguments);
75 public ExplicitConstructorInvocationStmt(final NodeList<Type> typeArguments, final boolean isThis, final Expression expression, final NodeList<Expression> arguments) {
83 public ExplicitConstructorInvocationStmt(TokenRange tokenRange, NodeList<Type> typeArguments, boolean isThis, Expression expression, NodeList<Expression> arguments)
    [all...]
TryStmt.java 26 import com.github.javaparser.ast.NodeList;
99 private NodeList<Expression> resources;
103 private NodeList<CatchClause> catchClauses;
109 this(null, new NodeList<>(), new BlockStmt(), new NodeList<>(), null);
112 public TryStmt(final BlockStmt tryBlock, final NodeList<CatchClause> catchClauses, final BlockStmt finallyBlock) {
113 this(null, new NodeList<>(), tryBlock, catchClauses, finallyBlock);
117 public TryStmt(NodeList<Expression> resources, final BlockStmt tryBlock, final NodeList<CatchClause> catchClauses, final BlockStmt finallyBlock) {
125 public TryStmt(TokenRange tokenRange, NodeList<Expression> resources, BlockStmt tryBlock, NodeList<CatchClause> catchClauses, BlockStmt finallyBl (…)
    [all...]
ForStmt.java 26 import com.github.javaparser.ast.NodeList;
71 private NodeList<Expression> initialization;
76 private NodeList<Expression> update;
81 this(null, new NodeList<>(), new BooleanLiteralExpr(), new NodeList<>(), new ReturnStmt());
85 public ForStmt(final NodeList<Expression> initialization, final Expression compare, final NodeList<Expression> update, final Statement body) {
93 public ForStmt(TokenRange tokenRange, NodeList<Expression> initialization, Expression compare, NodeList<Expression> update, Statement body) {
125 public NodeList<Expression> getInitialization()
    [all...]
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/
NodeList.java 43 * This way, a NodeList does not create an extra level inside the AST.
47 public class NodeList<N extends Node> implements List<N>, Iterable<N>, HasParentNode<NodeList<N>>, Visitable, Observable {
55 public NodeList() {
59 public NodeList(Collection<N> n) {
63 public NodeList(N... n) {
99 public static <X extends Node> NodeList<X> nodeList(X... nodes) {
100 final NodeList<X> nodeList = new NodeList<>()
    [all...]
ArrayCreationLevel.java 52 private NodeList<AnnotationExpr> annotations = new NodeList<>();
55 this(null, null, new NodeList<>());
59 this(null, new IntegerLiteralExpr("" + dimension), new NodeList<>());
63 this(null, dimension, new NodeList<>());
67 public ArrayCreationLevel(Expression dimension, NodeList<AnnotationExpr> annotations) {
75 public ArrayCreationLevel(TokenRange tokenRange, Expression dimension, NodeList<AnnotationExpr> annotations) {
119 public NodeList<AnnotationExpr> getAnnotations() {
124 public ArrayCreationLevel setAnnotations(final NodeList<AnnotationExpr> annotations) {
PackageDeclaration.java 49 private NodeList<AnnotationExpr> annotations = new NodeList<>();
54 this(null, new NodeList<>(), new Name());
58 this(null, new NodeList<>(), name);
62 public PackageDeclaration(NodeList<AnnotationExpr> annotations, Name name) {
70 public PackageDeclaration(TokenRange tokenRange, NodeList<AnnotationExpr> annotations, Name name) {
96 public NodeList<AnnotationExpr> getAnnotations() {
114 public PackageDeclaration setAnnotations(final NodeList<AnnotationExpr> annotations) {
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/body/
Parameter.java 26 import com.github.javaparser.ast.NodeList;
65 private NodeList<AnnotationExpr> varArgsAnnotations;
69 private NodeList<AnnotationExpr> annotations;
74 this(null, EnumSet.noneOf(Modifier.class), new NodeList<>(), new ClassOrInterfaceType(), false, new NodeList<>(), new SimpleName());
78 this(null, EnumSet.noneOf(Modifier.class), new NodeList<>(), type, false, new NodeList<>(), name);
88 this(null, EnumSet.noneOf(Modifier.class), new NodeList<>(), type, false, new NodeList<>(), new SimpleName(name));
92 this(null, modifiers, new NodeList<>(), type, false, new NodeList<>(), name)
    [all...]
AnnotationDeclaration.java 26 import com.github.javaparser.ast.NodeList;
54 this(null, EnumSet.noneOf(Modifier.class), new NodeList<>(), new SimpleName(), new NodeList<>());
58 this(null, modifiers, new NodeList<>(), new SimpleName(name), new NodeList<>());
62 public AnnotationDeclaration(EnumSet<Modifier> modifiers, NodeList<AnnotationExpr> annotations, SimpleName name, NodeList<BodyDeclaration<?>> members) {
70 public AnnotationDeclaration(TokenRange tokenRange, EnumSet<Modifier> modifiers, NodeList<AnnotationExpr> annotations, SimpleName name, NodeList<BodyDeclaration<?>> members) {
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/type/
ClassOrInterfaceType.java 25 import com.github.javaparser.ast.NodeList;
68 private NodeList<Type> typeArguments;
71 this(null, null, new SimpleName(), null, new NodeList<>());
78 this(null, null, new SimpleName(name), null, new NodeList<>());
82 this(null, scope, new SimpleName(name), null, new NodeList<>());
85 public ClassOrInterfaceType(final ClassOrInterfaceType scope, final SimpleName name, final NodeList<Type> typeArguments) {
86 this(null, scope, name, typeArguments, new NodeList<>());
90 public ClassOrInterfaceType(final ClassOrInterfaceType scope, final SimpleName name, final NodeList<Type> typeArguments, final NodeList<AnnotationExpr> annotations) {
98 public ClassOrInterfaceType(TokenRange tokenRange, ClassOrInterfaceType scope, SimpleName name, NodeList<Type> typeArguments, NodeList<AnnotationExpr> annotations)
    [all...]
UnionType.java 24 import com.github.javaparser.ast.NodeList;
66 private NodeList<ReferenceType> elements;
69 this(null, new NodeList<>());
76 public UnionType(TokenRange tokenRange, NodeList<ReferenceType> elements) {
83 public UnionType(NodeList<ReferenceType> elements) {
88 public NodeList<ReferenceType> getElements() {
93 public UnionType setElements(final NodeList<ReferenceType> elements) {
107 public UnionType setAnnotations(NodeList<AnnotationExpr> annotations) {
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/observer/
PropagatingAstObserver.java 25 import com.github.javaparser.ast.NodeList;
47 public void concreteListChange(NodeList observedNode, ListChangeType type, int index, Node nodeAddedOrRemoved) {
66 public final void listChange(NodeList observedNode, ListChangeType type, int index, Node nodeAddedOrRemoved) {
76 public void listReplacement(NodeList observedNode, int index, Node oldNode, Node newNode) {
89 public void concreteListChange(NodeList observedNode, ListChangeType type, int index, Node nodeAddedOrRemoved) {
93 public void concreteListReplacement(NodeList observedNode, int index, Node oldValue, Node newValue) {
  /external/javaparser/javaparser-core/src/main/javacc-support/com/github/javaparser/
GeneratedJavaParserBase.java 6 import com.github.javaparser.ast.NodeList;
145 * Get the token that starts the NodeList l
147 JavaToken nodeListBegin(NodeList<?> l) {
189 * Quickly create a new NodeList
191 <T extends Node> NodeList<T> emptyList() {
192 return new NodeList<>();
198 <T extends Node> NodeList<T> add(NodeList<T> list, T obj) {
200 list = new NodeList<>();
209 <T extends Node> NodeList<T> addWhenNotNull(NodeList<T> list, T obj)
    [all...]
  /external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/ast/visitor/
CloneVisitorTest.java 25 import com.github.javaparser.ast.NodeList;
52 NodeList<BodyDeclaration<?>> bodyDeclarationList = new NodeList<>();
60 NodeList<TypeDeclaration<?>> typeDeclarationList = new NodeList<>();
84 NodeList<TypeDeclaration<?>> typeDeclarationListClone = cuClone.getTypes();
  /external/javaparser/javaparser-core/src/main/javacc/
java.jj 66 import static com.github.javaparser.ast.NodeList.*;
611 NodeList<ImportDeclaration> imports = emptyList();
613 NodeList<TypeDeclaration<?>> types = emptyList();
644 final CompilationUnit compilationUnit = new CompilationUnit(range(token_source.getHomeToken(), token()), null, new NodeList<ImportDeclaration>(), new NodeList<TypeDeclaration<?>>(), null);
652 NodeList<AnnotationExpr> annotations = new NodeList<AnnotationExpr>();
688 NodeList<AnnotationExpr> annotations = new NodeList<AnnotationExpr>();
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_nodeappendchildgetnodename.java 65 NodeList elementList;
67 NodeList childList;
hc_nodechildnodesempty.java 31 * The "getChildNodes()" method returns a NodeList
33 * are not any children, this is a NodeList that does not
37 * NodeList returned should not have any nodes.
65 NodeList elementList;
66 NodeList childList;
hc_nodeclonefalsenocopytext.java 64 NodeList elementList;
66 NodeList childList;
hc_nodeclonenodefalse.java 37 * length of the NodeList are checked. The "getNodeName()"
66 NodeList elementList;
70 NodeList cloneChildren;
hc_nodelistindexgetlength.java 64 NodeList elementList;
66 NodeList employeeList;
hc_nodelistindexgetlengthofemptylist.java 65 NodeList emList;
68 NodeList textList;
hc_nodelistindexnotzero.java 66 NodeList elementList;
68 NodeList employeeList;

Completed in 2331 milliseconds

12 3 4 5 6 7 8 91011>>