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

1 2 3 4 5 67 8 91011>>

  /external/apache-xml/src/main/java/org/apache/xpath/axes/
AxesWalker.java 87 public Object clone() throws CloneNotSupportedException method in class:AxesWalker
91 AxesWalker clone = (AxesWalker) super.clone(); local
93 //clone.setCurrentNode(clone.m_root);
95 // clone.m_isFresh = true;
97 return clone;
101 * Do a deep clone of this walker, including next and previous walkers.
102 * If the this AxesWalker is on the clone list, don't clone but
116 AxesWalker clone = findClone(this, cloneList); local
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/
PKCS12KeyWithParameters.java 28 this.salt = Arrays.clone(salt);
46 this.salt = Arrays.clone(salt);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/field/
GF2Polynomial.java 11 this.exponents = Arrays.clone(exponents);
21 return Arrays.clone(exponents);
  /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 ();
SyntheticAttribute_info.java 72 public Object clone () method in class:SyntheticAttribute_info
74 return super.clone ();
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
Platform.java 41 static <T> T[] clone(T[] array) { method in class:Platform
42 return array.clone();
  /external/ltp/testcases/kernel/containers/utsname/
runutstests_noltp.sh 32 echo "clone tests"
34 echo "test $i (clone)"
35 ./utstest_noltp clone $i
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/options/
SerializeOptions.java 382 * @return Returns clone of this SerializeOptions-object with the same options set.
385 public Object clone() throws CloneNotSupportedException method in class:SerializeOptions
387 SerializeOptions clone; local
390 clone = new SerializeOptions(getOptions());
391 clone.setBaseIndent(baseIndent);
392 clone.setIndent(indent);
393 clone.setNewline(newline);
394 clone.setPadding(padding);
395 return clone;
  /frameworks/base/graphics/java/android/graphics/drawable/shapes/
ArcShape.java 74 public ArcShape clone() throws CloneNotSupportedException { method in class:ArcShape
75 return (ArcShape) super.clone();
  /libcore/ojluni/src/main/java/java/security/cert/
CollectionCertStoreParameters.java 120 public Object clone() { method in class:CollectionCertStoreParameters
122 return super.clone();
PKIXCertPathChecker.java 55 * <b>must</b> override the {@link #clone clone} method if necessary in
180 * Returns a clone of this object. Calls the {@code Object.clone()}
188 public Object clone() { method in class:PKIXCertPathChecker
190 return super.clone();
  /packages/apps/Launcher3/src/com/android/launcher3/util/
LongArrayMap.java 37 public LongArrayMap<E> clone() { method in class:LongArrayMap
38 return (LongArrayMap<E>) super.clone();
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/
GLAbstractAtomicProperty.java 53 public IGLProperty clone() { method in class:GLAbstractAtomicProperty
55 return (IGLProperty) super.clone();
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
NamespaceMappings.java 328 * This method makes a clone of this object.
331 public Object clone() throws CloneNotSupportedException { method in class:NamespaceMappings
332 NamespaceMappings clone = new NamespaceMappings(); local
333 clone.m_nodeStack = (NamespaceMappings.Stack) m_nodeStack.clone();
334 clone.count = this.count;
335 clone.m_namespaces = (Hashtable) m_namespaces.clone();
337 clone.count = count;
338 return clone;
379 public Object clone() throws CloneNotSupportedException { method in class:NamespaceMappings.Stack
380 NamespaceMappings.Stack clone = new NamespaceMappings.Stack(); local
    [all...]
  /bionic/libc/bionic/
fork.cpp 40 int result = clone(nullptr,
48 // Update the cached pid, since clone() will not set it directly (as
  /cts/tests/tests/keystore/src/android/keystore/cts/
TransparentSecretKey.java 33 mKeyMaterial = keyMaterial.clone();
  /development/tools/bugreport/src/com/android/bugreport/stacks/
KernelStackFrameSnapshot.java 39 public KernelStackFrameSnapshot clone() { method in class:KernelStackFrameSnapshot
NativeStackFrameSnapshot.java 33 public NativeStackFrameSnapshot clone() { method in class:NativeStackFrameSnapshot
StackFrameSnapshot.java 47 public StackFrameSnapshot clone() { method in class:StackFrameSnapshot
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/fixes/
fix_throw.py 29 exc = results["exc"].clone()
39 val = val.clone()
41 args = [c.clone() for c in val.children[1:-1]]
49 tb = results["tb"].clone()
  /external/annotation-tools/
.travis-build-without-test.sh 26 echo "Running: (cd .. && hg clone https://bitbucket.org/${SLUGOWNER}/jsr308-langtools)"
27 (cd .. && (hg clone https://bitbucket.org/${SLUGOWNER}/jsr308-langtools || hg clone https://bitbucket.org/${SLUGOWNER}/jsr308-langtools))
28 echo "... done: (cd .. && hg clone https://bitbucket.org/${SLUGOWNER}/jsr308-langtools)"
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMAxisIteratorBase.java 180 final DTMAxisIteratorBase clone = (DTMAxisIteratorBase) super.clone(); local
182 clone._isRestartable = false;
184 // return clone.reset();
185 return clone;
  /external/autotest/client/site_tests/desktopui_CameraApp/src/
Makefile 9 # Clone the ToT version of the Camera App.
13 git clone $(GIT_CLONE_URL)
  /external/dagger2/
deploy_website.sh 13 DIR=temp-dagger-clone
15 # Delete any existing temporary website clone
18 # Clone the current repo into temp folder
19 git clone $REPO $DIR
  /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

Completed in 567 milliseconds

1 2 3 4 5 67 8 91011>>