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

1 2 3 4 5 67 8 91011>>

  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Array/
15.4.4.5-3.js 82 clone( array, testarr1 );
86 clone( array, testarr2 );
90 clone( array, testarr3 );
96 clone( array, testarr4 );
100 clone( array, realarr );
104 clone( array, stringarr );
152 function clone( source, target ) { function
  /libcore/luni/src/test/java/tests/security/cert/
CollectionCertStoreParametersTest.java 127 * Test #1 for <code>clone()</code> method<br>
135 (CollectionCertStoreParameters)cp1.clone();
141 * Test #2 for <code>clone()</code> method<br>
149 (CollectionCertStoreParameters)cp1.clone();
155 * Test #3 for <code>clone()</code> method<br>
161 (CollectionCertStoreParameters)cp1.clone();
163 (CollectionCertStoreParameters)cp2.clone();
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
WalkingIterator.java 107 * @return A clone of this iterator that holds the same node position.
111 public Object clone() throws CloneNotSupportedException method in class:WalkingIterator
114 WalkingIterator clone = (WalkingIterator) super.clone(); local
116 // clone.m_varStackPos = this.m_varStackPos;
117 // clone.m_varStackContext = this.m_varStackContext;
120 clone.m_firstWalker = m_firstWalker.cloneDeep(clone, null);
123 return clone;
  /external/jmonkeyengine/engine/src/core/com/jme3/bounding/
BoundingVolume.java 181 * <code>clone</code> creates a new BoundingVolume object containing the
189 public abstract BoundingVolume clone(BoundingVolume store); method in class:BoundingVolume
310 public BoundingVolume clone() { method in class:BoundingVolume
312 BoundingVolume clone = (BoundingVolume) super.clone(); local
313 clone.center = center.clone();
314 return clone;
325 center = (Vector3f) e.getCapsule(this).readSavable("center", Vector3f.ZERO.clone());
  /frameworks/base/core/java/android/util/
LongSparseArray.java 56 public LongSparseArray<E> clone() { method in class:LongSparseArray
57 LongSparseArray<E> clone = null; local
59 clone = (LongSparseArray<E>) super.clone();
60 clone.mKeys = mKeys.clone();
61 clone.mValues = mValues.clone();
65 return clone;
SparseArray.java 56 public SparseArray<E> clone() { method in class:SparseArray
57 SparseArray<E> clone = null; local
59 clone = (SparseArray<E>) super.clone();
60 clone.mKeys = mKeys.clone();
61 clone.mValues = mValues.clone();
65 return clone;
  /frameworks/support/v4/java/android/support/v4/util/
LongSparseArray.java 54 public LongSparseArray<E> clone() { method in class:LongSparseArray
55 LongSparseArray<E> clone = null; local
57 clone = (LongSparseArray<E>) super.clone();
58 clone.mKeys = mKeys.clone();
59 clone.mValues = mValues.clone();
63 return clone;
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gldebugger/
GLServerShader.java 39 public GLShader clone(final GLServerShader copyContext) { method in class:GLShader
41 GLShader shader = (GLShader) super.clone();
42 shader.programs = (ArrayList<Integer>) programs.clone();
65 public GLProgram clone(final GLServerShader copyContext) { method in class:GLProgram
67 GLProgram copy = (GLProgram) super.clone();
90 public GLServerShader clone(final Context copyContext) { method in class:GLServerShader
92 GLServerShader copy = (GLServerShader) super.clone();
97 copy.shaders.append(shaders.keyAt(i), shaders.valueAt(i).clone(copy));
101 copy.programs.append(programs.keyAt(i), programs.valueAt(i).clone(copy));
  /cts/tests/tests/animation/src/android/animation/cts/
KeyframeTest.java 78 Keyframe clone = keyFrame.clone(); local
79 assertEquals(keyFrame.getFraction(), clone.getFraction());
  /dalvik/vm/native/
java_lang_Object.cpp 27 * Implements most of Object.clone().
33 Object* clone = dvmCloneObject(thisPtr, ALLOC_DONT_TRACK); local
35 RETURN_PTR(clone);
  /external/apache-http/src/org/apache/http/client/utils/
CloneUtils.java 36 * A collection of utilities to workaround limitations of Java clone framework.
40 public static Object clone(final Object obj) throws CloneNotSupportedException { method in class:CloneUtils
48 m = clazz.getMethod("clone", (Class[]) null);
  /external/chromium/testing/gtest/samples/
sample2.cc 43 char* const clone = new char[ len + 1 ]; local
44 memcpy(clone, a_c_string, len + 1);
46 return clone;
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
example-function.cpp 12 virtual invoker_base* clone() = 0;
20 functor_invoker* clone() { return new functor_invoker(f); } function in class:functor_invoker
33 invoker = other.invoker->clone();
  /external/e2fsprogs/tests/f_bbfile/
expect.1 20 Clone multiply-claimed blocks? yes
25 Clone multiply-claimed blocks? yes
30 Clone multiply-claimed blocks? yes
  /external/grub/netboot/
tulip.txt 4 This is a tulip and clone driver for Etherboot. See the revision
32 On some PCI tulip clone chipsets (MX987x5, LC82C115, LC82C168) this driver
42 tulip clone card, or wishes to add functionality.
  /external/gtest/samples/
sample2.cc 43 char* const clone = new char[ len + 1 ]; local
44 memcpy(clone, a_c_string, len + 1);
46 return clone;
  /external/jmonkeyengine/engine/src/core/com/jme3/animation/
Track.java 59 * This method creates a clone of the current object.
60 * @return a clone of the current object
62 public Track clone(); method in interface:Track
  /external/jmonkeyengine/engine/src/core/com/jme3/audio/
Listener.java 53 location = source.location.clone();
54 velocity = source.velocity.clone();
55 rotation = source.rotation.clone();
  /external/jmonkeyengine/engine/src/core/com/jme3/texture/
TextureArray.java 57 TextureArray clone = new TextureArray(); local
58 createSimpleClone(clone);
59 return clone;
  /external/nist-sip/java/gov/nist/javax/sip/header/
CallInfo.java 117 public Object clone() { method in class:CallInfo
118 CallInfo retval = (CallInfo) super.clone();
120 retval.info = (GenericURI) this.info.clone();
  /external/protobuf/gtest/samples/
sample2.cc 43 char * const clone = new char[ len + 1 ]; local
44 memcpy(clone, c_string, len + 1);
46 return clone;
  /external/webkit/Source/WebCore/dom/
DocumentFragment.cpp 72 RefPtr<DocumentFragment> clone = create(document()); local
74 cloneChildNodes(clone.get());
75 return clone.release();
  /frameworks/av/include/media/stagefright/
MediaBuffer.h 81 // Returns a clone of this MediaBuffer increasing its reference count.
82 // The clone references the same data but has its own range and
84 MediaBuffer *clone();
  /libcore/luni/src/main/java/java/text/
RuleBasedBreakIterator.java 109 @Override public Object clone() { method in class:RuleBasedBreakIterator
110 RuleBasedBreakIterator cloned = (RuleBasedBreakIterator) super.clone();
111 cloned.wrapped = (NativeBreakIterator) wrapped.clone();
  /libcore/luni/src/test/java/libcore/java/text/
OldFormatTest.java 50 * java.text.Format#clone() Test of method java.text.Format#clone().
56 Format fmc = (Format) fm.clone();

Completed in 1035 milliseconds

1 2 3 4 5 67 8 91011>>