HomeSort by relevance Sort by last modified time
    Searched full:clone (Results 226 - 250 of 4264) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
TStar.java 23 public Object clone() method in class:TStar
TString.java 23 public Object clone() method in class:TString
TUvar.java 23 public Object clone() method in class:TUvar
TVar.java 23 public Object clone() method in class:TVar
TWith.java 23 public Object clone() method in class:TWith
TWord.java 23 public Object clone() method in class:TWord
  /external/mesa3d/src/gallium/drivers/softpipe/
SConscript 3 env = env.Clone()
  /external/mesa3d/src/gallium/state_trackers/xorg/
SConscript 6 env = env.Clone()
  /external/mesa3d/src/gallium/targets/dri-swrast/
SConscript 3 env = drienv.Clone()
  /external/mesa3d/src/gallium/targets/dri-vmwgfx/
SConscript 3 env = drienv.Clone()
  /external/mesa3d/src/gallium/tests/unit/
SConscript 3 env = env.Clone()
  /external/mesa3d/src/mesa/drivers/osmesa/
SConscript 3 env = env.Clone()
  /external/mesa3d/src/mesa/drivers/windows/gdi/
SConscript 3 env = env.Clone()
  /external/skia/tools/
roll_autogen.sh 7 # repository. Unfortunately, the only way to discard old revisions is to clone
39 echo "Removing temporary local clone."
42 echo "Re-creating local clone from ${DUMPFILE}."
58 echo "Removing temporary local clone."
  /external/srec/shared/include/
Int8ArrayList.h 102 * Returns a clone of the Int8ArrayList.
104 * @param clone [out] Clone of the Int8ArrayList (created externally, populated
107 ESR_ReturnCode(*clone)(struct Int8ArrayList_t* self, struct Int8ArrayList_t* clone); member in struct:Int8ArrayList_t
211 * Returns a clone of the Int8ArrayList.
213 * @param clone [out] Clone of the Int8ArrayList (created externally, populated
216 ESR_SHARED_API ESR_ReturnCode Int8ArrayListClone(Int8ArrayList* self, Int8ArrayList* clone);
  /frameworks/webview/chromium/java/com/android/webview/chromium/
WebBackForwardListChromium.java 84 // Clone constructor.
92 * See {@link android.webkit.WebBackForwardList#clone}.
95 protected synchronized WebBackForwardListChromium clone() { method in class:WebBackForwardListChromium
99 list.add(mHistroryItemList.get(i).clone());
  /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/jmonkeyengine/engine/src/core/com/jme3/light/
LightList.java 204 tlist = list.clone();
291 public LightList clone(){ method
293 LightList clone = (LightList) super.clone(); local
295 clone.owner = null;
296 clone.list = list.clone();
297 clone.distToOwner = distToOwner.clone();
298 clone.tlist = null; // list used for sorting onl
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/
Mesh.java 192 * Create a shallow clone of this Mesh. The {@link VertexBuffer vertex
193 * buffers} are shared between this and the clone mesh, the rest
196 * @return A shallow clone of the mesh
199 public Mesh clone() { method in class:Mesh
201 Mesh clone = (Mesh) super.clone(); local
202 clone.meshBound = meshBound.clone();
203 clone.collisionTree = collisionTree != null ? collisionTree : null;
204 clone.buffers = buffers.clone()
228 Mesh clone = (Mesh) super.clone(); local
269 Mesh clone = clone(); local
    [all...]
  /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...]

Completed in 4353 milliseconds

1 2 3 4 5 6 7 8 91011>>