Searched refs:cloneList (Results 1 – 8 of 8) sorted by relevance
/external/apache-xml/src/main/java/org/apache/xpath/axes/ |
D | AxesWalker.java | 113 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/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/visitor/ |
D | CloneVisitor.java | 43 NodeList<ImportDeclaration> imports = cloneList(n.getImports(), arg); in visit() 46 NodeList<TypeDeclaration<?>> types = cloneList(n.getTypes(), arg); in visit() 59 NodeList<AnnotationExpr> annotations = cloneList(n.getAnnotations(), arg); in visit() 72 NodeList<ClassOrInterfaceType> typeBound = cloneList(n.getTypeBound(), arg); in visit() 73 NodeList<AnnotationExpr> annotations = cloneList(n.getAnnotations(), arg); in visit() 104 NodeList<ClassOrInterfaceType> extendedTypes = cloneList(n.getExtendedTypes(), arg); in visit() 105 NodeList<ClassOrInterfaceType> implementedTypes = cloneList(n.getImplementedTypes(), arg); in visit() 106 NodeList<TypeParameter> typeParameters = cloneList(n.getTypeParameters(), arg); in visit() 107 NodeList<BodyDeclaration<?>> members = cloneList(n.getMembers(), arg); in visit() 108 NodeList<Modifier> modifiers = cloneList(n.getModifiers(), arg); in visit() [all …]
|
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/ |
D | ACallCommand.java | 39 cloneList(this._macro_), in clone() 40 cloneList(this._arguments_)); in clone()
|
D | ADefCommand.java | 43 cloneList(this._macro_), in clone() 44 cloneList(this._arguments_), in clone()
|
D | Node.java | 66 protected <T> List<T> cloneList(List<T> list) in cloneList() method in Node
|
D | ASequenceExpression.java | 30 cloneList(this._args_)); in clone()
|
D | AMultipleCommand.java | 30 cloneList(this._command_)); in clone()
|
D | AFunctionExpression.java | 35 cloneList(this._args_)); in clone()
|