HomeSort by relevance Sort by last modified time
    Searched refs:clone (Results 51 - 75 of 4728) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/apache-http/src/org/apache/http/impl/cookie/
BasicClientCookie2.java 99 public Object clone() throws CloneNotSupportedException { method in class:BasicClientCookie2
100 BasicClientCookie2 clone = (BasicClientCookie2) super.clone(); local
101 clone.ports = this.ports.clone();
102 return clone;
  /external/python/cpython2/Lib/lib2to3/fixes/
fix_filter.py 58 new = ListComp(results.get("fp").clone(),
59 results.get("fp").clone(),
60 results.get("it").clone(),
61 results.get("xp").clone())
66 results["seq"].clone(),
72 new = node.clone()
  /external/python/cpython3/Lib/lib2to3/fixes/
fix_filter.py 57 new = ListComp(results.get("fp").clone(),
58 results.get("fp").clone(),
59 results.get("it").clone(),
60 results.get("xp").clone())
65 results["seq"].clone(),
71 new = node.clone()
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/fixes/
fix_filter.py 58 new = ListComp(results.get("fp").clone(),
59 results.get("fp").clone(),
60 results.get("it").clone(),
61 results.get("xp").clone())
66 results["seq"].clone(),
72 new = node.clone()
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/fixes/
fix_filter.py 58 new = ListComp(results.get("fp").clone(),
59 results.get("fp").clone(),
60 results.get("it").clone(),
61 results.get("xp").clone())
66 results["seq"].clone(),
72 new = node.clone()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_filter.py 58 new = ListComp(results.get("fp").clone(),
59 results.get("fp").clone(),
60 results.get("it").clone(),
61 results.get("xp").clone())
66 results["seq"].clone(),
72 new = node.clone()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_filter.py 58 new = ListComp(results.get("fp").clone(),
59 results.get("fp").clone(),
60 results.get("it").clone(),
61 results.get("xp").clone())
66 results["seq"].clone(),
72 new = node.clone()
  /external/mockito/src/test/java/org/mockito/internal/creation/
InterfaceOverrideTest.java 16 CloneableInterface clone(); method in interface:InterfaceOverrideTest.CloneableInterface
22 Mockito.when(i.clone()).thenReturn(i);
24 assertEquals(i, i.clone());
  /packages/apps/Bluetooth/src/com/android/bluetooth/newavrcp/helpers/
ListItem.java 35 public ListItem clone() { method in class:ListItem
37 return new ListItem(folder.clone());
39 return new ListItem(song.clone());
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
Selector.java 19 Object clone(); method in interface:Selector
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/spec/
UserKeyingMaterialSpec.java 14 this.userKeyingMaterial = Arrays.clone(userKeyingMaterial);
19 return Arrays.clone(userKeyingMaterial);
  /external/clang/test/CodeGenCXX/
microsoft-abi-nontrivial-covariant-thunk.cpp 14 virtual B *clone(A);
21 virtual C *clone(A); // expected-error {{cannot compile this non-trivial argument copy for return-adjusting thunk yet}}
  /external/guava/guava-gwt/test-super/com/google/common/collect/testing/super/com/google/common/collect/testing/
GwtPlatform.java 35 public static <T> T[] clone(T[] array) { method in class:GwtPlatform
36 return (T[]) Array.clone(array);
  /external/jmdns/src/javax/jmdns/
ServiceEvent.java 62 * @see java.lang.Object#clone()
65 public ServiceEvent clone() { method in class:ServiceEvent
67 return (ServiceEvent) super.clone();
69 // clone is supported
  /external/mockito/src/test/java/org/mockitousage/bugs/
EnabledMockingInterfaceCloneMethodTest.java 18 Mockito.when(ci.clone()).thenReturn(ci);
22 CloneableInterface clone(); method in interface:EnabledMockingInterfaceCloneMethodTest.CloneableInterface
  /frameworks/base/keystore/java/android/security/keystore/
Utils.java 30 return (value != null) ? (Date) value.clone() : null;
34 return (value != null) ? value.clone() : null;
  /libcore/ojluni/src/main/java/javax/net/ssl/
CertPathTrustManagerParameters.java 59 this.parameters = (CertPathParameters)parameters.clone();
63 * Return a clone of the CertPathParameters encapsulated by this class.
65 * @return a clone of the CertPathParameters encapsulated by this class.
68 return (CertPathParameters)parameters.clone();
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/cert/
MyCertStoreParameters.java 36 public Object clone() { method in class:MyCertStoreParameters
38 return super.clone();
  /frameworks/base/core/tests/coretests/src/android/transition/
TransitionTest.java 83 Fade clone = (Fade) fade.clone(); local
84 assertFieldEquals(fade, clone, "mStartDelay");
85 assertFieldEquals(fade, clone, "mDuration");
86 assertFieldEquals(fade, clone, "mInterpolator");
87 assertFieldEquals(fade, clone, "mPropagation");
88 assertEquals(fade.getPathMotion(), clone.getPathMotion());
89 assertEquals(fade.getEpicenterCallback(), clone.getEpicenterCallback());
90 assertFieldEquals(fade, clone, "mNameOverrides");
91 assertFieldEquals(fade, clone, "mMatchOrder")
    [all...]
  /external/mesa3d/src/compiler/glsl/
ir_clone.cpp 31 ir_rvalue::clone(void *mem_ctx, struct hash_table *) const function in class:ir_rvalue
41 ir_variable::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_variable
63 var->constant_value = this->constant_value->clone(mem_ctx, ht);
67 this->constant_initializer->clone(mem_ctx, ht);
78 ir_swizzle::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_swizzle
80 return new(mem_ctx) ir_swizzle(this->val->clone(mem_ctx, ht), this->mask);
84 ir_return::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_return
89 new_value = this->value->clone(mem_ctx, ht);
95 ir_discard::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_discard
100 new_condition = this->condition->clone(mem_ctx, ht)
106 ir_loop_jump::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_loop_jump
114 ir_if::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_if
130 ir_loop::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_loop
142 ir_call::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_call
158 ir_expression::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_expression
172 ir_dereference_variable::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_dereference_variable
187 ir_dereference_array::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_dereference_array
195 ir_dereference_record::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_dereference_record
202 ir_texture::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_texture
250 ir_assignment::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_assignment
266 ir_function::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_function
291 ir_function_signature::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_function_signature
330 ir_constant::clone(void *mem_ctx, struct hash_table *ht) const function in class:ir_constant
    [all...]
  /external/testng/src/main/java/org/testng/internal/
TestNGMethod.java 173 * @see org.testng.internal.BaseTestMethod#clone()
176 public BaseTestMethod clone() { method in class:TestNGMethod
177 TestNGMethod clone= new TestNGMethod(getMethod(), getAnnotationFinder(), false, getXmlTest(), local
181 testClass.setBeforeTestMethods(clone(tc.getBeforeTestMethods())); method
182 testClass.setAfterTestMethod(clone(tc.getAfterTestMethods())); method
183 clone.m_testClass= testClass;
184 clone.setDate(getDate());
185 clone.setGroups(getGroups());
186 clone.setGroupsDependedUpon(getGroupsDependedUpon(), Collections.<String>emptyList());
187 clone.setMethodsDependedUpon(getMethodsDependedUpon());
209 private ITestNGMethod[] clone(ITestNGMethod[] sources) { method in class:TestNGMethod
    [all...]
  /external/swiftshader/third_party/LLVM/unittests/Transforms/Utils/
Cloning.cpp 27 T *clone(T *V1) { function in class:CloneInstruction
28 Value *V2 = V1->clone();
58 BinaryOperator *AddClone = this->clone(Add);
59 BinaryOperator *SubClone = this->clone(Sub);
60 BinaryOperator *MulClone = this->clone(Mul);
75 AddClone = this->clone(Add);
76 SubClone = this->clone(Sub);
77 MulClone = this->clone(Mul);
92 AddClone = this->clone(Add);
93 SubClone = this->clone(Sub)
    [all...]
  /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/filesystem/
FileEntryTest.groovy 117 def clone = entry.cloneWithNewPath(NEW_PATH)
119 assert !clone.is(entry)
120 assert clone.path == NEW_PATH
121 assert clone.lastModified == LAST_MODIFIED
122 assert clone.owner == USER
123 assert clone.group == GROUP
124 assert clone.permissions == PERMISSIONS
125 assert clone.createInputStream().text == 'abc'
126 assert !clone.directory
132 def clone = entry.cloneWithNewPath(NEW_PATH)
    [all...]
  /libcore/ojluni/src/main/java/javax/crypto/spec/
PBEKeySpec.java 83 this.password = password.clone();
112 this.password = password.clone();
121 this.salt = salt.clone();
154 this.password = password.clone();
163 this.salt = salt.clone();
199 return password.clone();
213 return salt.clone();
  /system/core/libcutils/
native_handle.cpp 58 native_handle_t* clone = native_handle_create(handle->numFds, handle->numInts); local
59 if (clone == NULL) return NULL;
62 clone->data[i] = dup(handle->data[i]);
63 if (clone->data[i] == -1) {
64 clone->numFds = i;
65 native_handle_close(clone);
66 native_handle_delete(clone);
71 memcpy(&clone->data[handle->numFds], &handle->data[handle->numFds],
74 return clone;

Completed in 795 milliseconds

1 23 4 5 6 7 8 91011>>