HomeSort by relevance Sort by last modified time
    Searched full:clone (Results 251 - 275 of 5316) sorted by null

<<11121314151617181920>>

  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
SparseLongArray.java 52 public SparseLongArray clone() { method in class:SparseLongArray
53 SparseLongArray clone = null; local
55 clone = (SparseLongArray) super.clone();
56 clone.mKeys = mKeys.clone();
57 clone.mValues = mValues.clone();
61 return clone;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_repr.py 19 expr = results["expr"].clone()
fix_xreadlines.py 25 node.replace([x.clone() for x in results["call"]])
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_repr.py 19 expr = results["expr"].clone()
fix_xreadlines.py 25 node.replace([x.clone() for x in results["call"]])
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
program.c 489 struct gl_program *clone; local
491 clone = ctx->Driver.NewProgram(ctx, prog->Target, prog->Id);
492 if (!clone)
495 assert(clone->Target == prog->Target);
496 assert(clone->RefCount == 1);
498 clone->String = (GLubyte *) _mesa_strdup((char *) prog->String);
499 clone->Format = prog->Format;
500 clone->Instructions = _mesa_alloc_instructions(prog->NumInstructions);
501 if (!clone->Instructions) {
502 _mesa_reference_program(ctx, &clone, NULL)
    [all...]
  /external/mesa3d/src/mesa/program/
program.c 489 struct gl_program *clone; local
491 clone = ctx->Driver.NewProgram(ctx, prog->Target, prog->Id);
492 if (!clone)
495 assert(clone->Target == prog->Target);
496 assert(clone->RefCount == 1);
498 clone->String = (GLubyte *) _mesa_strdup((char *) prog->String);
499 clone->Format = prog->Format;
500 clone->Instructions = _mesa_alloc_instructions(prog->NumInstructions);
501 if (!clone->Instructions) {
502 _mesa_reference_program(ctx, &clone, NULL)
    [all...]
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/cert/
MyCertStoreParameters.java 35 public Object clone() { method in class:MyCertStoreParameters
37 return super.clone();
  /external/apache-http/src/org/apache/http/params/
BasicHttpParams.java 136 BasicHttpParams clone = new BasicHttpParams(); local
137 copyParams(clone);
138 return clone;
141 public Object clone() throws CloneNotSupportedException { method in class:BasicHttpParams
142 BasicHttpParams clone = (BasicHttpParams) super.clone(); local
143 copyParams(clone);
144 return clone;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/digest/
MD5.java 49 public Object clone() method in class:MD5.Digest
52 Digest d = (Digest)super.clone();
SHA224.java 28 public Object clone() method in class:SHA224.Digest
31 Digest d = (Digest)super.clone();
  /external/chromium_org/cc/animation/
timing_function.h 22 virtual scoped_ptr<TimingFunction> Clone() const = 0;
41 virtual scoped_ptr<TimingFunction> Clone() const OVERRIDE;
  /external/chromium_org/content/browser/dom_storage/
session_storage_namespace_impl.h 48 SessionStorageNamespaceImpl* Clone();
61 explicit SessionStorageNamespaceImpl(DOMStorageSession* clone);
  /external/chromium_org/sync/internal_api/public/
sync_context_proxy.h 41 // Creates a clone of this SyncContextProxy.
42 virtual scoped_ptr<SyncContextProxy> Clone() const = 0;
  /external/chromium_org/third_party/icu/source/i18n/
currfmt.cpp 32 fmt = (NumberFormat*) other.fmt->clone();
50 Format* CurrencyFormat::clone() const { function in class:CurrencyFormat
remtrans.cpp 49 Transliterator* RemoveTransliterator::clone(void) const { function in class:RemoveTransliterator
52 result->adoptFilter((UnicodeFilter*)(getFilter()->clone()));
  /external/chromium_org/third_party/icu/source/i18n/unicode/
measunit.h 39 * Return a polymorphic clone of this object. The result will
43 virtual UObject* clone() const = 0;
  /external/chromium_org/third_party/icu/source/test/intltest/
dadrcoll.cpp 210 RuleBasedCollator* clone = NULL; local
217 clone = new RuleBasedCollator(cloneBuf, cloneSize, UCA, intStatus);
219 errln("Could not clone the RuleBasedCollator. Error: %s", u_errorName(intStatus));
229 if(clone != NULL){
230 processArguments(clone, arguments, argLen);
244 if(clone != NULL){
245 processSequence(clone, sequence);
252 delete clone;
  /external/clang/test/Rewriter/
rewrite-protocol-qualified.mm 9 - (void) clone;
13 - (void) clone {
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
GwtPlatform.java 37 public static <T> T[] clone(T[] array) { method in class:GwtPlatform
38 return (T[]) Array.clone(array);
Platform.java 28 static <T> T[] clone(T[] array) { method in class:Platform
29 return GwtPlatform.clone(array);
  /external/icu/icu4c/source/i18n/
currfmt.cpp 30 fmt = (NumberFormat*) other.fmt->clone();
37 Format* CurrencyFormat::clone() const { function in class:CurrencyFormat
measure.cpp 44 unit = (MeasureUnit*) other.unit->clone();
49 UObject *Measure::clone() const { function in class:Measure
remtrans.cpp 49 Transliterator* RemoveTransliterator::clone(void) const { function in class:RemoveTransliterator
52 result->adoptFilter((UnicodeFilter*)(getFilter()->clone()));
  /external/jmdns/src/javax/jmdns/impl/
NetworkTopologyEventImpl.java 75 * @see java.lang.Object#clone()
78 public NetworkTopologyEventImpl clone() throws CloneNotSupportedException { method in class:NetworkTopologyEventImpl

Completed in 1182 milliseconds

<<11121314151617181920>>