/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_unicode.py | 18 new = node.clone() 23 new = node.clone()
|
fix_throw.py | 29 exc = results["exc"].clone() 39 val = val.clone() 41 args = [c.clone() for c in val.children[1:-1]] 49 tb = results["tb"].clone()
|
fix_exec.py | 33 args = [a.clone()] 36 args.extend([Comma(), b.clone()]) 38 args.extend([Comma(), c.clone()])
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_unicode.py | 18 new = node.clone() 23 new = node.clone()
|
fix_throw.py | 29 exc = results["exc"].clone() 39 val = val.clone() 41 args = [c.clone() for c in val.children[1:-1]] 49 tb = results["tb"].clone()
|
fix_exec.py | 33 args = [a.clone()] 36 args.extend([Comma(), b.clone()]) 38 args.extend([Comma(), c.clone()])
|
/external/chromium_org/content/browser/dom_storage/ |
session_storage_namespace_impl.cc | 51 SessionStorageNamespaceImpl* SessionStorageNamespaceImpl::Clone() { 52 return new SessionStorageNamespaceImpl(session_->Clone()); 61 DOMStorageSession* clone) 62 : session_(clone) {
|
/external/chromium_org/third_party/icu/source/test/perf/usetperf/ |
bitset.h | 14 * A simple, limited clone of the java.util.BitSet.
|
/external/chromium_org/third_party/libva/ |
README.chromium | 3 Source: git clone git://anongit.freedesktop.org/git/libva
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/ |
SConscript | 3 env = env.Clone()
|
/external/chromium_org/third_party/mesa/src/src/gallium/winsys/svga/drm/ |
SConscript | 3 env = env.Clone()
|
/external/chromium_org/third_party/webgl/ |
README.chromium | 5 SOURCE CODE: git clone https://github.com/KhronosGroup/WebGL.git
|
/external/icu/icu4c/source/test/perf/usetperf/ |
bitset.h | 14 * A simple, limited clone of the java.util.BitSet.
|
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/ |
EOF.java | 23 public Object clone() method in class:EOF
|
/external/mesa3d/src/gallium/drivers/svga/ |
SConscript | 3 env = env.Clone()
|
/external/mesa3d/src/gallium/winsys/svga/drm/ |
SConscript | 3 env = env.Clone()
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowSparseBooleanArray.java | 76 public SparseBooleanArray clone() { method in class:ShadowSparseBooleanArray 77 SparseBooleanArray clone = new SparseBooleanArray(); local 79 clone.put(keyAt(i), valueAt(i)); 81 return clone;
|
/external/valgrind/main/exp-bbv/tests/amd64-linux/ |
clone_test.S | 22 clone: label 23 mov $56,%rax # clone syscall 25 # Note, clone syscall is different than the glibc implementation 27 # int clone (flags, stack_pointer,parent_tidptr,child_tidptr,tls)
|
/external/valgrind/main/exp-bbv/tests/x86-linux/ |
clone_test.S | 22 clone: label 23 mov $120,%eax # clone syscall 25 # Note, clone syscall is different than the glibc implementation 27 # int clone (flags, stack_pointer,parent_tidptr,child_tidptr,tls)
|
/libcore/luni/src/main/java/java/net/ |
PasswordAuthentication.java | 43 this.password = password.clone(); 47 * Gets a clone of the password stored by this instance. The user is 48 * responsible to finalize the returned array if the password clone is no 54 return password.clone();
|
/external/apache-http/src/org/apache/http/client/methods/ |
HttpRequestBase.java | 171 public Object clone() throws CloneNotSupportedException { method in class:HttpRequestBase 172 HttpRequestBase clone = (HttpRequestBase) super.clone(); local 173 clone.abortLock = new ReentrantLock(); 174 clone.aborted = false; 175 clone.releaseTrigger = null; 176 clone.connRequest = null; 177 clone.headergroup = (HeaderGroup) CloneUtils.clone(this.headergroup); 178 clone.params = (HttpParams) CloneUtils.clone(this.params) [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/ |
X509CollectionStoreParameters.java | 37 * Returns a shallow clone. The returned contents are not copied, so adding 40 * @return a shallow clone. 42 public Object clone() method in class:X509CollectionStoreParameters
|
/external/pdfium/core/src/fpdfapi/fpdf_page/ |
fpdf_page_image.cpp | 32 m_pImage = pSrcObj->m_pImage->Clone();
52 CPDF_Image* CPDF_Image::Clone()
58 pImage->LoadImageF((CPDF_Stream*)((CPDF_Object*)m_pStream)->Clone(), m_bInline);
60 CPDF_Dictionary *pInlineDict = (CPDF_Dictionary*)m_pInlineDict->Clone(TRUE);
106 m_pInlineDict = (CPDF_Dictionary*)pDict->Clone();
|
/external/qemu/android/skin/ |
image.h | 77 /* create a skin image clone. the clone is not part of the cache and will 79 * if you need to modify the content of the clone (e.g. blending) 83 /* create a skin image clone, the clone is a rotated version of a source image 89 /* apply blending to a source skin image and copy the result to a target clone image */ 90 extern void skin_image_blend_clone( SkinImage* clone, SkinImage* source, int blend );
|
/frameworks/base/core/java/android/util/ |
LongArray.java | 114 public LongArray clone() { method in class:LongArray 115 LongArray clone = null; local 117 clone = (LongArray) super.clone(); 118 clone.mValues = mValues.clone(); 122 return clone;
|