HomeSort by relevance Sort by last modified time
    Searched refs:NodeList (Results 51 - 75 of 231) sorted by null

1 23 4 5 6 7 8 910

  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/modules/
ModuleExportsStmt.java 5 import com.github.javaparser.ast.NodeList;
26 private NodeList<Name> moduleNames;
29 this(null, new Name(), new NodeList<>());
33 public ModuleExportsStmt(Name name, NodeList<Name> moduleNames) {
41 public ModuleExportsStmt(TokenRange tokenRange, Name name, NodeList<Name> moduleNames) {
94 public NodeList<Name> getModuleNames() {
99 public ModuleExportsStmt setModuleNames(final NodeList<Name> moduleNames) {
ModuleOpensStmt.java 5 import com.github.javaparser.ast.NodeList;
26 private NodeList<Name> moduleNames;
29 this(null, new Name(), new NodeList<>());
33 public ModuleOpensStmt(Name name, NodeList<Name> moduleNames) {
41 public ModuleOpensStmt(TokenRange tokenRange, Name name, NodeList<Name> moduleNames) {
94 public NodeList<Name> getModuleNames() {
99 public ModuleOpensStmt setModuleNames(final NodeList<Name> moduleNames) {
ModuleProvidesStmt.java 5 import com.github.javaparser.ast.NodeList;
27 private NodeList<Type> withTypes;
30 this(null, new ClassOrInterfaceType(), new NodeList<>());
34 public ModuleProvidesStmt(Type type, NodeList<Type> withTypes) {
42 public ModuleProvidesStmt(TokenRange tokenRange, Type type, NodeList<Type> withTypes) {
95 public NodeList<Type> getWithTypes() {
100 public ModuleProvidesStmt setWithTypes(final NodeList<Type> withTypes) {
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/stmt/
BlockStmt.java 24 import com.github.javaparser.ast.NodeList;
48 private NodeList<Statement> statements;
51 this(null, new NodeList<>());
55 public BlockStmt(final NodeList<Statement> statements) {
63 public BlockStmt(TokenRange tokenRange, NodeList<Statement> statements) {
82 public NodeList<Statement> getStatements() {
87 public BlockStmt setStatements(final NodeList<Statement> statements) {
SwitchEntryStmt.java 24 import com.github.javaparser.ast.NodeList;
68 private NodeList<Statement> statements;
71 this(null, null, new NodeList<>());
75 public SwitchEntryStmt(final Expression label, final NodeList<Statement> statements) {
83 public SwitchEntryStmt(TokenRange tokenRange, Expression label, NodeList<Statement> statements) {
108 public NodeList<Statement> getStatements() {
132 public SwitchEntryStmt setStatements(final NodeList<Statement> statements) {
SwitchStmt.java 24 import com.github.javaparser.ast.NodeList;
54 private NodeList<SwitchEntryStmt> entries;
57 this(null, new NameExpr(), new NodeList<>());
61 public SwitchStmt(final Expression selector, final NodeList<SwitchEntryStmt> entries) {
69 public SwitchStmt(TokenRange tokenRange, Expression selector, NodeList<SwitchEntryStmt> entries) {
89 public NodeList<SwitchEntryStmt> getEntries() {
103 public SwitchStmt setEntries(final NodeList<SwitchEntryStmt> entries) {
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/type/
IntersectionType.java 25 import com.github.javaparser.ast.NodeList;
61 private NodeList<ReferenceType> elements;
64 public IntersectionType(NodeList<ReferenceType> elements) {
72 public IntersectionType(TokenRange tokenRange, NodeList<ReferenceType> elements) {
91 public NodeList<ReferenceType> getElements() {
96 public IntersectionType setElements(final NodeList<ReferenceType> elements) {
110 public IntersectionType setAnnotations(NodeList<AnnotationExpr> annotations) {
ArrayType.java 26 import com.github.javaparser.ast.NodeList;
41 import static com.github.javaparser.ast.NodeList.nodeList;
76 public ArrayType(Type componentType, Origin origin, NodeList<AnnotationExpr> annotations) {
81 this(type, Origin.TYPE, nodeList(annotations));
88 public ArrayType(TokenRange tokenRange, Type componentType, Origin origin, NodeList<AnnotationExpr> annotations) {
175 private NodeList<AnnotationExpr> annotations = new NodeList<>();
179 public ArrayBracketPair(TokenRange tokenRange, Origin origin, NodeList<AnnotationExpr> annotations) {
185 public NodeList<AnnotationExpr> getAnnotations()
    [all...]
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/body/
FieldDeclaration.java 26 import com.github.javaparser.ast.NodeList;
52 import static com.github.javaparser.ast.NodeList.nodeList;
75 private NodeList<VariableDeclarator> variables;
78 this(null, EnumSet.noneOf(Modifier.class), new NodeList<>(), new NodeList<>());
82 this(null, modifiers, new NodeList<>(), nodeList(variable));
85 public FieldDeclaration(EnumSet<Modifier> modifiers, NodeList<VariableDeclarator> variables) {
86 this(null, modifiers, new NodeList<>(), variables)
    [all...]
ReceiverParameter.java 27 import com.github.javaparser.ast.NodeList;
61 private NodeList<AnnotationExpr> annotations;
66 this(null, new NodeList<>(), new ClassOrInterfaceType(), new Name());
70 this(null, new NodeList<>(), type, name);
80 this(null, new NodeList<>(), type, new Name(name));
84 public ReceiverParameter(NodeList<AnnotationExpr> annotations, Type type, Name name) {
92 public ReceiverParameter(TokenRange tokenRange, NodeList<AnnotationExpr> annotations, Type type, Name name) {
135 public NodeList<AnnotationExpr> getAnnotations() {
144 public ReceiverParameter setAnnotations(final NodeList<AnnotationExpr> annotations) {
BodyDeclaration.java 25 import com.github.javaparser.ast.NodeList;
46 private NodeList<AnnotationExpr> annotations;
49 this(null, new NodeList<>());
53 public BodyDeclaration(NodeList<AnnotationExpr> annotations) {
61 public BodyDeclaration(TokenRange tokenRange, NodeList<AnnotationExpr> annotations) {
68 this(range, new NodeList<>());
72 public NodeList<AnnotationExpr> getAnnotations() {
78 public T setAnnotations(final NodeList<AnnotationExpr> annotations) {
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/lexicalpreservation/
LexicalDifferenceCalculator.java 6 import com.github.javaparser.ast.NodeList;
89 Difference calculateListRemovalDifference(ObservableProperty observableProperty, NodeList nodeList, int index) {
90 Node container = nodeList.getParentNodeForChildren();
93 CalculatedSyntaxModel after = calculatedSyntaxModelAfterListRemoval(element, observableProperty, nodeList, index);
97 Difference calculateListAdditionDifference(ObservableProperty observableProperty, NodeList nodeList, int index, Node nodeAdded) {
98 Node container = nodeList.getParentNodeForChildren();
101 CalculatedSyntaxModel after = calculatedSyntaxModelAfterListAddition(element, observableProperty, nodeList, index, nodeAdded);
105 Difference calculateListReplacementDifference(ObservableProperty observableProperty, NodeList nodeList, int index, Node newValue)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/xml/dom/
minicompat.py 7 # NodeList -- lightest possible NodeList implementation
9 # EmptyNodeList -- lightest possible NodeList that is guaranteed to
39 __all__ = ["NodeList", "EmptyNodeList", "StringTypes", "defproperty"]
51 class NodeList(list):
66 doc="The number of nodes in the NodeList.")
79 NL = NodeList()
84 NL = NodeList()
99 doc="The number of nodes in the NodeList.")
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/xml/dom/
minicompat.py 7 # NodeList -- lightest possible NodeList implementation
9 # EmptyNodeList -- lightest possible NodeList that is guaranteed to
39 __all__ = ["NodeList", "EmptyNodeList", "StringTypes", "defproperty"]
51 class NodeList(list):
66 doc="The number of nodes in the NodeList.")
79 NL = NodeList()
84 NL = NodeList()
99 doc="The number of nodes in the NodeList.")
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/validator/chunks/
CommonValidators.java 3 import com.github.javaparser.ast.NodeList;
59 NodeList value = (NodeList) ppm.getValue(node);
  /external/python/cpython2/Lib/xml/dom/
minicompat.py 7 # NodeList -- lightest possible NodeList implementation
9 # EmptyNodeList -- lightest possible NodeList that is guaranteed to
39 __all__ = ["NodeList", "EmptyNodeList", "StringTypes", "defproperty"]
51 class NodeList(list):
66 doc="The number of nodes in the NodeList.")
79 NL = NodeList()
84 NL = NodeList()
99 doc="The number of nodes in the NodeList.")
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/expr/
ArrayCreationExpr.java 57 private NodeList<ArrayCreationLevel> levels;
65 this(null, new ClassOrInterfaceType(), new NodeList<>(), new ArrayInitializerExpr());
69 public ArrayCreationExpr(Type elementType, NodeList<ArrayCreationLevel> levels, ArrayInitializerExpr initializer) {
74 this(null, elementType, new NodeList<>(), new ArrayInitializerExpr());
82 this(null, elementType, new NodeList<>(), new ArrayInitializerExpr());
90 public ArrayCreationExpr(TokenRange tokenRange, Type elementType, NodeList<ArrayCreationLevel> levels, ArrayInitializerExpr initializer) {
154 public NodeList<ArrayCreationLevel> getLevels() {
159 public ArrayCreationExpr setLevels(final NodeList<ArrayCreationLevel> levels) {
178 result = new ArrayType(result, ArrayType.Origin.TYPE, new NodeList<>());
Name.java 26 import com.github.javaparser.ast.NodeList;
65 private NodeList<AnnotationExpr> annotations;
68 this(null, null, "empty", new NodeList<>());
72 this(null, null, identifier, new NodeList<>());
76 this(null, qualifier, identifier, new NodeList<>());
80 public Name(Name qualifier, final String identifier, NodeList<AnnotationExpr> annotations) {
88 public Name(TokenRange tokenRange, Name qualifier, String identifier, NodeList<AnnotationExpr> annotations) {
192 public NodeList<AnnotationExpr> getAnnotations() {
197 public Name setAnnotations(final NodeList<AnnotationExpr> annotations) {
FieldAccessExpr.java 24 import com.github.javaparser.ast.NodeList;
54 private NodeList<Type> typeArguments;
59 this(null, new ThisExpr(), new NodeList<>(), new SimpleName());
63 this(null, scope, new NodeList<>(), new SimpleName(name));
67 public FieldAccessExpr(final Expression scope, final NodeList<Type> typeArguments, final SimpleName name) {
75 public FieldAccessExpr(TokenRange tokenRange, Expression scope, NodeList<Type> typeArguments, SimpleName name) {
165 public Optional<NodeList<Type>> getTypeArguments() {
176 public FieldAccessExpr setTypeArguments(final NodeList<Type> typeArguments) {
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/nodeTypes/
NodeWithStatements.java 26 import com.github.javaparser.ast.NodeList;
38 NodeList<Statement> getStatements();
50 N setStatements(final NodeList<Statement> statements);
104 default N copyStatements(NodeList<Statement> nodeList) {
105 for (Statement n : nodeList) {
  /external/testng/src/main/java/org/testng/xml/dom/
DomUtil.java 11 import org.w3c.dom.NodeList;
35 NodeList nodes = m_document.getChildNodes();
58 NodeList item2Children = node.getChildNodes();
76 // NodeList item1Children = item1.getChildNodes();
86 // NodeList item2Children = item2.getChildNodes();
105 // NodeList tests = (NodeList) expr.evaluate(m_document, XPathConstants.NODESET);
120 NodeList children = root.getChildNodes();
140 NodeList children = node.getChildNodes();
153 NodeList itemChildren = item.getChildNodes()
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Xml/
CommonXml.py 71 NodeList = [Element1]
72 Root = CreateXmlElement('%s' % Key, '', NodeList, AttributeList)
204 NodeList = [Element1,
229 NodeList.append(CreateXmlElement('Copyright', Value, [], []))
232 NodeList.append(CreateXmlElement('License', Value, [], []))
235 NodeList.append(CreateXmlElement('Abstract', Value, [], [['Lang', Lang]]))
238 NodeList.append(CreateXmlElement('Description', Value, [], [['Lang', Lang]]))
241 Root = CreateXmlElement('%s' % Key, '', NodeList, AttributeList)
327 NodeList = [Element1,
339 Root = CreateXmlElement('%s' % Key, '', NodeList, AttributeList)
    [all...]
  /external/javaparser/javaparser-metamodel-generator/src/main/java/com/github/javaparser/generator/metamodel/
AstTypeAnalysis.java 3 import com.github.javaparser.ast.NodeList;
35 if (currentOuterType == NodeList.class) {
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/visitor/
CloneVisitor.java 41 NodeList<ImportDeclaration> imports = cloneList(n.getImports(), arg);
44 NodeList<TypeDeclaration<?>> types = cloneList(n.getTypes(), arg);
54 NodeList<AnnotationExpr> annotations = cloneList(n.getAnnotations(), arg);
66 NodeList<ClassOrInterfaceType> typeBound = cloneList(n.getTypeBound(), arg);
67 NodeList<AnnotationExpr> annotations = cloneList(n.getAnnotations(), arg);
95 NodeList<ClassOrInterfaceType> extendedTypes = cloneList(n.getExtendedTypes(), arg);
96 NodeList<ClassOrInterfaceType> implementedTypes = cloneList(n.getImplementedTypes(), arg);
97 NodeList<TypeParameter> typeParameters = cloneList(n.getTypeParameters(), arg);
98 NodeList<BodyDeclaration<?>> members = cloneList(n.getMembers(), arg);
100 NodeList<AnnotationExpr> annotations = cloneList(n.getAnnotations(), arg)
    [all...]
ModifierVisitor.java 55 NodeList<BodyDeclaration<?>> members = modifyList(n.getMembers(), arg);
57 NodeList<AnnotationExpr> annotations = modifyList(n.getAnnotations(), arg);
74 NodeList<AnnotationExpr> annotations = modifyList(n.getAnnotations(), arg);
105 NodeList<ArrayCreationLevel> levels = modifyList(n.getLevels(), arg);
119 NodeList<Expression> values = modifyList(n.getValues(), arg);
173 NodeList<Statement> statements = modifyList(n.getStatements(), arg);
249 NodeList<ClassOrInterfaceType> extendedTypes = modifyList(n.getExtendedTypes(), arg);
250 NodeList<ClassOrInterfaceType> implementedTypes = modifyList(n.getImplementedTypes(), arg);
251 NodeList<TypeParameter> typeParameters = modifyList(n.getTypeParameters(), arg);
252 NodeList<BodyDeclaration<?>> members = modifyList(n.getMembers(), arg)
    [all...]

Completed in 1706 milliseconds

1 23 4 5 6 7 8 910