HomeSort by relevance Sort by last modified time
    Searched full:clone (Results 301 - 325 of 2638) sorted by null

<<11121314151617181920>>

  /external/nist-sip/java/gov/nist/javax/sip/header/ims/
PProfileKey.java 82 public Object clone() { method in class:PProfileKey
83 PProfileKey retval = (PProfileKey) super.clone();
PUserDatabase.java 95 public Object clone() { method in class:PUserDatabase
96 PUserDatabase retval = (PUserDatabase) super.clone();
Privacy.java 140 public Object clone() { method in class:Privacy
141 Privacy retval = (Privacy) super.clone();
  /external/valgrind/main/
glibc-2.3.supp 236 LinuxThread clone use (parent_tidptr)
238 clone(parent_tidptr)
239 fun:clone
243 LinuxThread clone use (child_tidptr)
245 clone(child_tidptr)
246 fun:clone
250 LinuxThread clone use (tlsinfo)
252 clone(tlsinfo)
253 fun:clone
257 LinuxThread clone use (parent_tidptr
    [all...]
  /frameworks/base/graphics/java/android/graphics/drawable/shapes/
PathShape.java 69 public PathShape clone() throws CloneNotSupportedException { method in class:PathShape
70 PathShape shape = (PathShape) super.clone();
Shape.java 97 public Shape clone() throws CloneNotSupportedException { method in class:Shape
98 return (Shape) super.clone();
  /libcore/luni/src/main/java/java/util/
MapEntry.java 42 public Object clone() { method in class:MapEntry
44 return super.clone();
  /libcore/luni/src/test/java/libcore/java/util/jar/
OldAttributesTest.java 69 Attributes b = (Attributes) a.clone();
72 b = (Attributes) a.clone();
  /libcore/luni/src/test/java/tests/security/cert/
CertStoreSpiTest.java 78 public Object clone() { method in class:CertStoreSpiTest.tmpCRLSelector
86 public Object clone() { method in class:CertStoreSpiTest.tmpCertSelector
  /ndk/build/tools/
download-toolchain-sources.sh 77 be used as git clone shared references.
112 # prefix used for all clone operations
114 dump "Using git clone prefix: $GITPREFIX"
123 dump "Using git clone reference: $GITREFERENCE"
136 run git clone $GITFLAGS $GITPREFIX/$1 $1
139 run git clone $GITFLAGS $GITPREFIX/$1.git $1
141 fail_panic "Could not clone $GITPREFIX/$1.git ?"
205 run git clone https://android.googlesource.com/toolchain/binutils.git binutils
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gldebugger/
Context.java 56 this.startContext = context.clone();
69 Context ctx = startContext.clone();
102 Context ctx = startContext.clone();
285 public Context clone() { method in class:Context
287 Context copy = (Context) super.clone();
288 // FIXME: context sharing list clone
292 copy.serverVertex = serverVertex.clone();
293 copy.serverShader = serverShader.clone(copy);
294 copy.serverState = serverState.clone();
296 copy.serverTexture = serverTexture.clone(copy)
    [all...]
  /external/nist-sip/java/gov/nist/core/
GenericObject.java 143 * and the clone() method is invoked. Else if the object implements
145 * clone() method. Otherwise, the original object is returned.
157 clone_obj = ((Object []) obj).clone();
160 clone_obj = ((char []) obj).clone();
162 clone_obj = ((boolean []) obj).clone();
164 clone_obj = ((byte []) obj).clone();
166 clone_obj = ((short []) obj).clone();
168 clone_obj = ((int []) obj).clone();
170 clone_obj = ((long []) obj).clone();
172 clone_obj = ((float []) obj).clone();
199 public Object clone() { method in class:GenericObject
    [all...]
  /external/srec/shared/src/
SessionTypeImpl.c 346 int* clone; local
349 clone = MALLOC(sizeof(int), MTAG);
350 if (clone == NULL)
356 *clone = value;
357 return self->setProperty(self, name, clone, TYPES_INT);
364 asr_uint16_t* clone; local
367 clone = MALLOC(sizeof(asr_uint16_t), MTAG);
368 if (clone == NULL)
374 *clone = value;
375 return self->setProperty(self, name, clone, TYPES_UINT16_T)
382 int* clone; local
400 float* clone; local
418 ESR_BOOL* clone; local
436 LCHAR* clone; local
    [all...]
  /external/mesa3d/src/glsl/
ir.h 100 virtual ir_instruction *clone(void *mem_ctx,
143 virtual ir_rvalue *clone(void *mem_ctx, struct hash_table *) const = 0;
246 virtual ir_variable *clone(void *mem_ctx, struct hash_table *ht) const;
381 virtual ir_function_signature *clone(void *mem_ctx,
470 virtual ir_function *clone(void *mem_ctx, struct hash_table *ht) const;
542 virtual ir_if *clone(void *mem_ctx, struct hash_table *ht) const;
571 virtual ir_loop *clone(void *mem_ctx, struct hash_table *ht) const;
640 virtual ir_assignment *clone(void *mem_ctx, struct hash_table *ht) const;
871 virtual ir_expression *clone(void *mem_ctx, struct hash_table *ht) const;
937 virtual ir_call *clone(void *mem_ctx, struct hash_table *ht) const
    [all...]
  /bionic/libc/arch-x86/bionic/
clone.S 57 * See bionic/bionic_clone.c and arch-arm/bionic/clone.S
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
MyMessageDigest2.java 69 public Object clone() throws CloneNotSupportedException { method in class:MyMessageDigest2
  /external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/
CertPathTrustManagerParametersTest.java 44 public Object clone() { method in class:MyCertPathParameters
  /external/apache-xml/src/main/java/org/apache/xml/utils/
IntStack.java 202 * Returns clone of current IntStack
204 * @return clone of current IntStack
206 public Object clone() method in class:IntStack
209 return (IntStack) super.clone();
ObjectStack.java 205 * Returns clone of current ObjectStack
207 * @return clone of current ObjectStack
209 public Object clone() method in class:ObjectStack
212 return (ObjectStack) super.clone();
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
ContextNodeList.java 104 * @return A clone of this iteration that has been reset.
111 * Get a clone of this iterator. Be aware that this operation may be
115 * @return A clone of this object.
119 public Object clone() throws CloneNotSupportedException; method in interface:ContextNodeList
  /external/chromium/base/
version.h 34 Version* Clone() const;
  /external/chromium/chrome/common/extensions/docs/examples/api/notifications/
error.html 13 /* Clone the look and feel of "chrome://" pages. */
  /external/chromium/testing/gtest/scripts/
pump.py 125 def Clone(self):
156 def Clone(self):
159 return Token(self.start.Clone(), self.end.Clone(), self.value,
189 start = cursor.Clone()
298 start = pos.Clone()
589 def Clone(self):
590 clone = Env()
591 clone.variables = self.variables[:]
592 clone.ranges = self.ranges[:
    [all...]
  /external/e2fsprogs/tests/f_dup_resize/
expect.1 16 Clone multiply-claimed blocks? yes
  /external/e2fsprogs/tests/f_dupsuper/
expect.1 15 Clone multiply-claimed blocks? yes

Completed in 1002 milliseconds

<<11121314151617181920>>