/external/libweave/src/ |
streams_unittest.cc | 33 StreamCopier copier{&source, &destination}; 34 copier.Copy(callback);
|
/external/javassist/src/main/javassist/bytecode/ |
AnnotationDefaultAttribute.java | 107 AnnotationsAttribute.Copier copier local 108 = new AnnotationsAttribute.Copier(info, constPool, newCp, classnames); 110 copier.memberValue(0); 111 return new AnnotationDefaultAttribute(newCp, copier.close());
|
ParameterAnnotationsAttribute.java | 24 import javassist.bytecode.AnnotationsAttribute.Copier; 107 Copier copier = new Copier(info, constPool, newCp, classnames); local 109 copier.parameters(); 111 copier.close());
|
StackMap.java | 119 Copier copier = new Copier(this, newCp, classnames); local 120 copier.visit(); 121 return copier.getStackMap(); 223 static class Copier extends Walker { 228 Copier(StackMap map, ConstPool newCp, Map classnames) {
|
AnnotationsAttribute.java | 163 Copier copier = new Copier(info, constPool, newCp, classnames); local 165 copier.annotationArray(); 166 return new AnnotationsAttribute(newCp, getName(), copier.close()); 454 static class Copier extends Walker { 461 * Constructs a copier. This copier renames some class names 471 Copier(byte[] info, ConstPool src, ConstPool dest, Map map) {
|
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
copy.py | 74 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...] |
/prebuilts/gdb/linux-x86/lib/python2.7/ |
copy.py | 74 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...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
copy.py | 74 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...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
copy.py | 74 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...] |
/prebuilts/go/darwin-x86/test/fixedbugs/ |
issue8047.go | 7 // Issue 8047. Stack copier shouldn't crash if there
|
/prebuilts/go/linux-x86/test/fixedbugs/ |
issue8047.go | 7 // Issue 8047. Stack copier shouldn't crash if there
|
/cts/tests/tests/media/src/android/media/cts/ |
MediaScannerConnectionTest.java | 49 FileCopyHelper copier = new FileCopyHelper(mContext); local 53 copier.copyToExternalStorage(R.raw.testmp3, mMediaFile);
|
MediaScannerTest.java | 75 FileCopyHelper copier = new FileCopyHelper(mContext); local 76 copier.copyToExternalStorage(resid, out);
|
/cts/tests/tests/provider/src/android/provider/cts/ |
MediaStore_Audio_AlbumsTest.java | 168 FileCopyHelper copier = new FileCopyHelper(mContext); local 171 copier.copyToExternalStorage(R.raw.testmp3, path);
|
MediaStore_FilesTest.java | 494 FileCopyHelper copier = new FileCopyHelper(mContext); local 495 copier.copyToExternalStorage(resid, out);
|
/external/clang/test/Analysis/ |
dtor.cpp | 511 struct copier { struct in namespace:TypeTraitExpr 517 copier<IsSimple, T>::do_copy(dest, src, count);
|
/frameworks/base/libs/hwui/ |
SkiaCanvas.cpp | 234 ClipCopier copier(newCanvas); 235 mCanvas->replayClips(&copier);
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.text_3.5.0.v20100601-1300.jar | |
/external/icu/tools/srcgen/currysrc/libs/ |
org.eclipse.text_3.5.400.v20150505-1044.jar | |
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_collections.py | 175 for copier in copy.copy, copy.deepcopy: 176 q = copier(p) [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_collections.py | 175 for copier in copy.copy, copy.deepcopy: 176 q = copier(p) [all...] |
/prebuilts/go/darwin-x86/src/runtime/ |
extern.go | 83 copier to crash the program if an invalid pointer value (for example, 1)
|
/prebuilts/go/linux-x86/src/runtime/ |
extern.go | 83 copier to crash the program if an invalid pointer value (for example, 1)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_collections.py | 175 for copier in copy.copy, copy.deepcopy: 176 q = copier(p) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_collections.py | 175 for copier in copy.copy, copy.deepcopy: 176 q = copier(p) [all...] |