/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
copy.py | 5 import copy 7 x = copy.copy(y) # make a shallow copy of y 8 x = copy.deepcopy(y) # make a deep copy of y 10 For module specific errors, copy.Error is raised. 16 - A shallow copy constructs a new compound object and then (to the 20 - A deep copy constructs a new compound object and then, recursively, 23 Two problems often exist with deep copy operations that don't exis 66 def copy(x): function [all...] |
weakref.py | 82 def copy(self): member in class:WeakValueDictionary 90 __copy__ = copy 93 from copy import deepcopy 264 def copy(self): member in class:WeakKeyDictionary 272 __copy__ = copy 275 from copy import deepcopy
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/ |
cygwinccompiler.py | 52 import os,sys,copy namespace 208 extra_preargs = copy.copy(extra_preargs or []) 209 libraries = copy.copy(libraries or []) 210 objects = copy.copy(objects or [])
|
emxccompiler.py | 24 import os,sys,copy namespace 107 extra_preargs = copy.copy(extra_preargs or []) 108 libraries = copy.copy(libraries or []) 109 objects = copy.copy(objects or [])
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/ |
tkFont.py | 116 def copy(self): member in class:Font 117 "Return a distinct copy of the current font" 211 fb = Font(font=w["font"]).copy()
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/ |
sharedctypes.py | 42 __all__ = ['RawValue', 'RawArray', 'Value', 'Array', 'copy', 'synchronized'] 124 def copy(obj): function
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
pystone.py | 53 def copy(self): member in class:Record 138 PtrParIn.PtrComp = NextRecord = PtrGlb.copy() 149 PtrParIn = NextRecord.copy()
|
test_sysconfig.py | 8 from copy import copy, deepcopy namespace 22 """Make a copy of sys.path""" 42 self._config_vars = copy(sysconfig._CONFIG_VARS) 62 sysconfig._CONFIG_VARS = copy(self._config_vars) 285 env = os.environ.copy() 307 env = os.environ.copy()
|
test_userdict.py | 73 # Test copy() 74 u2a = u2.copy() 77 u2c = u2b.copy() # making a copy of a UserDict is special cased 84 m2a = m2.copy() 87 # SF bug #476616 -- copy() of UserDict subclass shared data 238 def copy(self): member in class:SeqDict
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
CGIHTTPServer.py | 32 import copy namespace 160 env = copy.deepcopy(os.environ)
|
UserDict.py | 27 def copy(self): member in class:UserDict 29 return UserDict(self.data.copy()) 30 import copy namespace 34 c = copy.copy(self) 91 # does not define __init__() or copy(). In addition to the four base
|
copy.py | 5 import copy 7 x = copy.copy(y) # make a shallow copy of y 8 x = copy.deepcopy(y) # make a deep copy of y 10 For module specific errors, copy.Error is raised. 16 - A shallow copy constructs a new compound object and then (to the 20 - A deep copy constructs a new compound object and then, recursively, 23 Two problems often exist with deep copy operations that don't exis 66 def copy(x): function [all...] |
weakref.py | 82 def copy(self): member in class:WeakValueDictionary 90 __copy__ = copy 93 from copy import deepcopy 264 def copy(self): member in class:WeakKeyDictionary 272 __copy__ = copy 275 from copy import deepcopy
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/ |
cygwinccompiler.py | 52 import os,sys,copy namespace 208 extra_preargs = copy.copy(extra_preargs or []) 209 libraries = copy.copy(libraries or []) 210 objects = copy.copy(objects or [])
|
emxccompiler.py | 24 import os,sys,copy namespace 107 extra_preargs = copy.copy(extra_preargs or []) 108 libraries = copy.copy(libraries or []) 109 objects = copy.copy(objects or [])
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/ |
tkFont.py | 116 def copy(self): member in class:Font 117 "Return a distinct copy of the current font" 211 fb = Font(font=w["font"]).copy()
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/ |
sharedctypes.py | 42 __all__ = ['RawValue', 'RawArray', 'Value', 'Array', 'copy', 'synchronized'] 124 def copy(obj): function
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
pystone.py | 53 def copy(self): member in class:Record 138 PtrParIn.PtrComp = NextRecord = PtrGlb.copy() 149 PtrParIn = NextRecord.copy()
|
test_sysconfig.py | 8 from copy import copy, deepcopy namespace 22 """Make a copy of sys.path""" 42 self._config_vars = copy(sysconfig._CONFIG_VARS) 62 sysconfig._CONFIG_VARS = copy(self._config_vars) 285 env = os.environ.copy() 307 env = os.environ.copy()
|
test_userdict.py | 73 # Test copy() 74 u2a = u2.copy() 77 u2c = u2b.copy() # making a copy of a UserDict is special cased 84 m2a = m2.copy() 87 # SF bug #476616 -- copy() of UserDict subclass shared data 238 def copy(self): member in class:SeqDict
|
/dalvik/dx/src/com/android/dx/cf/code/ |
LocalsArraySet.java | 6 * You may obtain a copy of the License at 79 * Constructs an instance which is a copy of another. 81 * @param toCopy {@code non-null;} instance to copy. 86 primary = toCopy.primary.copy(); 96 secondaries.add(la.copy()); 117 public LocalsArray copy() { method in class:LocalsArraySet
|
/external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/ |
SmallSortedMap.java | 405 Entry(Map.Entry<K, V> copy) { 406 this(copy.getKey(), copy.getValue());
|
/external/javassist/src/main/javassist/ |
CtConstructor.java | 64 * Creates a copy of a <code>CtConstructor</code> object. 101 copy(src, true, map); method 294 * Makes a copy of this constructor and converts it into a method. 320 * Makes a copy of this constructor and converts it into a method. 344 * replaced while making a copy. 351 method.copy(this, false, map);
|
/external/javassist/src/main/javassist/bytecode/ |
CodeAttribute.java | 69 * Constructs a copy of <code>Code_attribute</code>. 70 * Specified class names are replaced during the copy. 84 exceptions = src.getExceptionTable().copy(cp, classnames); 90 attributes.add(ai.copy(cp, classnames)); 118 * Makes a copy. Class names are replaced according to the 121 * @param newCp the constant pool table used by the new copy. 131 public AttributeInfo copy(ConstPool newCp, Map classnames) method in class:CodeAttribute 143 * An exception that may be thrown by <code>copy()</code> 309 * Adds a stack map table. If another copy of stack map table 323 * Adds a stack map table for J2ME (CLDC). If another copy of stack map tabl [all...] |
MethodInfo.java | 90 * Constructs a copy of <code>method_info</code> structure. Class names 142 invisibleAnnotations = invisibleAnnotations.copy(cp, null); 149 visibleAnnotations = visibleAnnotations.copy(cp, null); 156 parameterInvisibleAnnotations = parameterInvisibleAnnotations.copy(cp, null); 163 parameterVisibleAnnotations = parameterVisibleAnnotations.copy(cp, null); 179 signature = signature.copy(cp, null); 513 attribute.add(eattr.copy(destCp, classnames)); 517 attribute.add(cattr.copy(destCp, classnames));
|