HomeSort by relevance Sort by last modified time
    Searched defs:clone (Results 126 - 150 of 2575) sorted by null

1 2 3 4 56 7 8 91011>>

  /frameworks/base/core/java/android/webkit/
WebBackForwardList.java 58 * Clone the entire object to be used in the UI thread by clients of
62 protected abstract WebBackForwardList clone(); method in class:WebBackForwardList
WebHistoryItem.java 78 * Clone the history item for use by clients of WebView.
80 protected abstract WebHistoryItem clone(); method in class:WebHistoryItem
  /libcore/ojluni/src/main/java/sun/security/provider/certpath/
State.java 56 public Object clone(); method in interface:State
  /packages/apps/Bluetooth/src/com/android/bluetooth/newavrcp/helpers/
Folder.java 31 public Folder clone() { method in class:Folder
ListItem.java 35 public ListItem clone() { method in class:ListItem
37 return new ListItem(folder.clone());
39 return new ListItem(song.clone());
  /prebuilts/go/darwin-x86/src/debug/dwarf/
typeunit.go 148 // clone returns a new reader for the type unit.
149 func (tur *typeUnitReader) clone() typeReader { func
  /prebuilts/go/linux-x86/src/debug/dwarf/
typeunit.go 148 // clone returns a new reader for the type unit.
149 func (tur *typeUnitReader) clone() typeReader { func
  /system/bt/osi/test/
config_test.cc 79 std::unique_ptr<config_t> clone = config_new_clone(*config); local
81 config_set_string(clone.get(), CONFIG_DEFAULT_SECTION, "first_key",
88 config_get_string(*clone, CONFIG_DEFAULT_SECTION, "first_key", &one)
  /cts/tests/sensor/src/android/hardware/cts/helpers/sensoroperations/
SequentialSensorOperation.java 71 public SequentialSensorOperation clone() { method in class:SequentialSensorOperation
74 operation.add(subOperation.clone());
DelaySensorOperation.java 60 public DelaySensorOperation clone() { method in class:DelaySensorOperation
61 return new DelaySensorOperation(mOperation.clone(), mDelay, mTimeUnit);
FakeSensorOperation.java 77 public FakeSensorOperation clone() { method in class:FakeSensorOperation
SensorOperation.java 35 * <li>{@link #clone()} may be called any time and should return an operation with the same
70 * NOTE: The implementation should also clone all child operations, so that a cloned operation
73 public abstract SensorOperation clone(); method in class:SensorOperation
  /external/okhttp/okhttp-hpacktests/src/test/java/com/squareup/okhttp/internal/spdy/hpackjson/
Story.java 49 public Story clone() throws CloneNotSupportedException { method in class:Story
54 story.cases.add(caze.clone());
  /libcore/benchmarks/src/benchmarks/regression/
ExpensiveObjectsBenchmark.java 42 ((DateFormat) df.clone()).format(System.currentTimeMillis());
64 c.clone();
77 dfs.clone();
90 dfs.clone();
103 nf.clone();
136 sdf.clone();
149 gc.clone();
  /frameworks/base/core/tests/coretests/src/android/transition/
TransitionTest.java 83 Fade clone = (Fade) fade.clone(); local
84 assertFieldEquals(fade, clone, "mStartDelay");
85 assertFieldEquals(fade, clone, "mDuration");
86 assertFieldEquals(fade, clone, "mInterpolator");
87 assertFieldEquals(fade, clone, "mPropagation");
88 assertEquals(fade.getPathMotion(), clone.getPathMotion());
89 assertEquals(fade.getEpicenterCallback(), clone.getEpicenterCallback());
90 assertFieldEquals(fade, clone, "mNameOverrides");
91 assertFieldEquals(fade, clone, "mMatchOrder")
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
BasicTestIterator.java 217 ChildTestIterator clone = (ChildTestIterator) super.cloneWithReset(); local
219 clone.resetProximityPositions();
221 return clone;
  /external/guice/core/test/com/google/inject/spi/
ProviderMethodsTest.java 78 Bob clone = injector.getInstance(Bob.class); local
79 assertEquals("A Bob", clone.getName());
81 assertNotSame(bob, clone);
82 assertSame(bob.getDaughter(), clone.getDaughter());
  /bionic/libc/bionic/
clone.cpp 57 int clone(int (*fn)(void*), void* child_stack, int flags, void* arg, ...) { function
86 // Remember the parent pid and invalidate the cached value while we clone.
90 // Remmber the caller's tid so that it can be restored in the parent after clone.
99 // Actually do the clone.
  /development/tools/bugreport/src/com/android/bugreport/stacks/
JavaStackFrameSnapshot.java 53 this.locks.add(that.locks.get(i).clone());
58 public JavaStackFrameSnapshot clone() { method in class:JavaStackFrameSnapshot
ProcessSnapshot.java 45 this.threads.add(that.threads.get(i).clone());
53 public ProcessSnapshot clone() { method in class:ProcessSnapshot
StackFrameSnapshot.java 47 public StackFrameSnapshot clone() { method in class:StackFrameSnapshot
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
BitSet.as 74 var s:BitSet = this.clone();
124 public function clone():BitSet { function
  /external/apache-http/src/org/apache/http/client/methods/
HttpEntityEnclosingRequestBase.java 77 public Object clone() throws CloneNotSupportedException { method in class:HttpEntityEnclosingRequestBase
78 HttpEntityEnclosingRequestBase clone = local
79 (HttpEntityEnclosingRequestBase) super.clone();
81 clone.entity = (HttpEntity) CloneUtils.clone(this.entity);
83 return clone;
  /external/apache-http/src/org/apache/http/client/utils/
CloneUtils.java 36 * A collection of utilities to workaround limitations of Java clone framework.
45 public static Object clone(final Object obj) throws CloneNotSupportedException { method in class:CloneUtils
53 m = clazz.getMethod("clone", (Class[]) null);
  /external/apache-http/src/org/apache/http/entity/
ByteArrayEntity.java 95 public Object clone() throws CloneNotSupportedException { method in class:ByteArrayEntity
96 return super.clone();

Completed in 395 milliseconds

1 2 3 4 56 7 8 91011>>