Home
last modified time | relevance | path

Searched refs:cloneList (Results 1 – 8 of 8) sorted by relevance

/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/visitor/
DCloneVisitor.java41 NodeList<ImportDeclaration> imports = cloneList(n.getImports(), arg); in visit()
44 NodeList<TypeDeclaration<?>> types = cloneList(n.getTypes(), arg); in visit()
54 NodeList<AnnotationExpr> annotations = cloneList(n.getAnnotations(), arg); in visit()
66 NodeList<ClassOrInterfaceType> typeBound = cloneList(n.getTypeBound(), arg); in visit()
67 NodeList<AnnotationExpr> annotations = cloneList(n.getAnnotations(), arg); in visit()
95 NodeList<ClassOrInterfaceType> extendedTypes = cloneList(n.getExtendedTypes(), arg); in visit()
96 NodeList<ClassOrInterfaceType> implementedTypes = cloneList(n.getImplementedTypes(), arg); in visit()
97 NodeList<TypeParameter> typeParameters = cloneList(n.getTypeParameters(), arg); in visit()
98 NodeList<BodyDeclaration<?>> members = cloneList(n.getMembers(), arg); in visit()
100 NodeList<AnnotationExpr> annotations = cloneList(n.getAnnotations(), arg); in visit()
[all …]
/external/apache-xml/src/main/java/org/apache/xpath/axes/
DAxesWalker.java113 AxesWalker cloneDeep(WalkingIterator cloneOwner, Vector cloneList) in cloneDeep() argument
116 AxesWalker clone = findClone(this, cloneList); in cloneDeep()
121 if(null != cloneList) in cloneDeep()
123 cloneList.addElement(this); in cloneDeep()
124 cloneList.addElement(clone); in cloneDeep()
131 clone.m_nextWalker = m_nextWalker.cloneDeep(cloneOwner, cloneList); in cloneDeep()
135 if(null != cloneList) in cloneDeep()
138 clone.m_prevWalker = m_prevWalker.cloneDeep(cloneOwner, cloneList); in cloneDeep()
157 static AxesWalker findClone(AxesWalker key, Vector cloneList) in findClone() argument
159 if(null != cloneList) in findClone()
[all …]
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
DACallCommand.java39 cloneList(this._macro_), in clone()
40 cloneList(this._arguments_)); in clone()
DADefCommand.java43 cloneList(this._macro_), in clone()
44 cloneList(this._arguments_), in clone()
DNode.java66 protected <T> List<T> cloneList(List<T> list) in cloneList() method in Node
DAMultipleCommand.java30 cloneList(this._command_)); in clone()
DASequenceExpression.java30 cloneList(this._args_)); in clone()
DAFunctionExpression.java35 cloneList(this._args_)); in clone()