Home
last modified time | relevance | path

Searched refs:copier (Results 1 – 13 of 13) sorted by relevance

/external/python/cpython2/Lib/
Dcopy.py74 copier = _copy_dispatch.get(cls)
75 if copier:
76 return copier(x)
78 copier = getattr(cls, "__copy__", None)
79 if copier:
80 return copier(x)
161 copier = _deepcopy_dispatch.get(cls)
162 if copier:
163 y = copier(x, memo)
172 copier = getattr(x, "__deepcopy__", None)
[all …]
/external/javassist/src/main/javassist/bytecode/
DAnnotationDefaultAttribute.java107 AnnotationsAttribute.Copier copier in copy() local
110 copier.memberValue(0); in copy()
111 return new AnnotationDefaultAttribute(newCp, copier.close()); in copy()
DParameterAnnotationsAttribute.java107 Copier copier = new Copier(info, constPool, newCp, classnames); in copy() local
109 copier.parameters(); in copy()
111 copier.close()); in copy()
DStackMap.java119 Copier copier = new Copier(this, newCp, classnames); in copy() local
120 copier.visit(); in copy()
121 return copier.getStackMap(); in copy()
DAnnotationsAttribute.java163 Copier copier = new Copier(info, constPool, newCp, classnames); in copy() local
165 copier.annotationArray(); in copy()
166 return new AnnotationsAttribute(newCp, getName(), copier.close()); in copy()
/external/v8/src/inspector/
Dv8-value-copier.cc171 V8ValueCopier copier; in copyValueFromDebuggerContext() local
172 copier.m_isolate = isolate; in copyValueFromDebuggerContext()
173 copier.m_from = debuggerContext; in copyValueFromDebuggerContext()
174 copier.m_to = toContext; in copyValueFromDebuggerContext()
175 copier.m_calls = 0; in copyValueFromDebuggerContext()
176 return copier.copy(value, 0); in copyValueFromDebuggerContext()
Dinspector.gypi92 'inspector/v8-value-copier.cc',
93 'inspector/v8-value-copier.h',
DBUILD.gn188 "v8-value-copier.cc",
189 "v8-value-copier.h",
/external/desugar/java/com/google/devtools/build/android/desugar/
DJava7Compatibility.java112 InlineOneMethod copier = new InlineOneMethod("$jacocoInit", this); in visitMethodInsn() local
113 bytecode.accept(copier, ClassReader.SKIP_DEBUG /* we're copying generated code anyway */); in visitMethodInsn()
DLambdaClassFixer.java204 CopyOneMethod copier = new CopyOneMethod(methodName); in copyRewrittenLambdaMethods() local
206 bytecode.accept(copier, ClassReader.SKIP_DEBUG); in copyRewrittenLambdaMethods()
207 checkState(copier.copied(), "Didn't find %s", rewritten); in copyRewrittenLambdaMethods()
/external/clang/test/Analysis/
Ddtor.cpp511 struct copier { struct
517 copier<IsSimple, T>::do_copy(dest, src, count); in do_copy()
/external/python/cpython2/Lib/test/
Dtest_collections.py218 for copier in copy.copy, copy.deepcopy:
219 q = copier(p)
/external/jline/src/src/test/resources/jline/example/
Denglish.gz