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

<<11121314151617181920>>

  /external/apache-http/src/org/apache/http/entity/
ByteArrayEntity.java 90 public Object clone() throws CloneNotSupportedException { method in class:ByteArrayEntity
91 return super.clone();
FileEntity.java 100 public Object clone() throws CloneNotSupportedException { method in class:FileEntity
103 return super.clone();
StringEntity.java 102 public Object clone() throws CloneNotSupportedException { method in class:StringEntity
103 return super.clone();
  /external/apache-http/src/org/apache/http/message/
BasicRequestLine.java 95 public Object clone() throws CloneNotSupportedException { method in class:BasicRequestLine
96 return super.clone();
  /external/apache-xml/src/main/java/org/apache/xml/utils/
NodeVector.java 82 * @return A clone of this
86 public Object clone() throws CloneNotSupportedException method in class:NodeVector
89 NodeVector clone = (NodeVector) super.clone(); local
91 if ((null != this.m_map) && (this.m_map == clone.m_map))
93 clone.m_map = new int[this.m_map.length];
95 System.arraycopy(this.m_map, 0, clone.m_map, 0, this.m_map.length);
98 return clone;
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
UnionPathIterator.java 275 * @return A clone of this iterator that holds the same node position.
279 public Object clone() throws CloneNotSupportedException method in class:UnionPathIterator
282 UnionPathIterator clone = (UnionPathIterator) super.clone(); local
287 clone.m_iterators = new DTMIterator[n];
291 clone.m_iterators[i] = (DTMIterator)m_iterators[i].clone();
295 return clone;
  /external/bouncycastle/src/main/java/org/bouncycastle/util/
Arrays.java 219 public static byte[] clone(byte[] data) method in class:Arrays
232 public static int[] clone(int[] data) method in class:Arrays
  /external/e2fsprogs/tests/f_extents2/
expect.1 42 Clone multiply-claimed blocks? yes
47 Clone multiply-claimed blocks? yes
  /external/emma/core/java12/com/vladium/jcd/cls/
IInterfaceCollection.java 48 // Cloneable: adjust the access level of Object.clone():
49 Object clone (); method in interface:IInterfaceCollection
  /external/emma/core/java12/com/vladium/jcd/cls/attribute/
BridgeAttribute_info.java 55 public Object clone () method in class:BridgeAttribute_info
57 return super.clone ();
IDeclaredExceptionTable.java 53 // Cloneable: adjust the access level of Object.clone():
54 Object clone (); method in interface:IDeclaredExceptionTable
IExceptionHandlerTable.java 51 // Cloneable: adjust the access level of Object.clone():
52 Object clone (); method in interface:IExceptionHandlerTable
  /external/guava/guava/src/com/google/common/collect/
ImmutableEnumSet.java 38 * know that calling {@code clone()} during deserialization will return an
112 return new ImmutableEnumSet<E>(delegate.clone());
  /external/icu4c/common/unicode/
unifunct.h 49 virtual UnicodeFunctor* clone() const = 0;
87 * clone() methods call this method.
utext.h 313 * Clone a UText. This is much like opening a UText where the source text is itself
316 * A deep clone will copy both the UText data structures and the underlying text.
319 * required to support deep clones. The user of clone() must check the status return
325 * The UText returned from a deep clone will be writable, assuming that the text
329 * A shallow clone replicates only the UText data structures; it does not make
334 * A shallow clone operation will not fail, barring truly exceptional conditions such
343 * A shallow clone made with the readOnly parameter == FALSE will preserve the
348 * A UText and its clone may be safely concurrently accessed by separate threads.
354 * @param dest A UText struct to be filled in with the result of the clone operation,
355 * or NULL if the clone function should heap-allocate a new UText struct
1379 UTextClone *clone; member in struct:UTextFuncs
    [all...]
  /external/icu4c/i18n/unicode/
curramt.h 76 * Return a polymorphic clone of this object. The result will
80 virtual UObject* clone() const;
measure.h 73 * Return a polymorphic clone of this object. The result will
77 virtual UObject* clone() const = 0;
  /external/icu4c/i18n/
windtfmt.h 49 virtual Format *clone(void) const;
105 * compilers support genuine RTTI. Polymorphic operator==() and clone()
  /external/jmonkeyengine/engine/src/android/jme3test/android/
SimpleTexturedTest.java 115 // Transform t = geom.getLocalTransform().clone();
116 // Transform t2 = geomClone.getLocalTransform().clone();
  /external/jmonkeyengine/engine/src/core/com/jme3/light/
Light.java 174 public Light clone(){ method in class:Light
176 return (Light) super.clone();
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/control/
Control.java 51 * Creates a clone of the Control, the given Spatial is the cloned
54 * @return A clone of this control for the spatial
  /external/jmonkeyengine/engine/src/test/jme3test/conversion/
TestMipMapGen.java 72 Texture texCustomMip = tex.clone();
73 Image imageCustomMip = texCustomMip.getImage().clone();
  /external/jmonkeyengine/engine/src/test/jme3test/effect/
TestParticleExportingCloning.java 66 ParticleEmitter emit2 = emit.clone();
86 // Camera cam2 = cam.clone();
  /external/libsepol/src/
iface_record.c 189 /* Deep copy clone */
215 ERR(handle, "could not clone interface record");
  /external/mesa3d/src/glsl/
ir_import_prototypes.cpp 37 * Normally the \c clone method of either \c ir_function or
39 * clone of the \c ir_function_signature. We want everything \b except the

Completed in 1038 milliseconds

<<11121314151617181920>>