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

1 2 3 4 5 67 8 91011>>

  /frameworks/base/libs/hwui/
TreeInfo.h 69 explicit TreeInfo(TraversalMode mode, const TreeInfo& clone)
72 , runAnimations(clone.runAnimations)
73 , damageAccumulator(clone.damageAccumulator)
74 , renderState(clone.renderState)
75 , renderer(clone.renderer)
76 , errorHandler(clone.errorHandler)
77 , canvasContext(clone.canvasContext)
  /libcore/benchmarks/src/benchmarks/regression/
ExpensiveObjectsBenchmark.java 40 ((DateFormat) df.clone()).format(System.currentTimeMillis());
62 c.clone();
75 dfs.clone();
88 dfs.clone();
101 nf.clone();
134 sdf.clone();
147 gc.clone();
  /external/chromium_org/ui/events/gestures/
motion_event_aura_unittest.cc 88 scoped_ptr<MotionEvent> clone = event.Clone(); local
89 EXPECT_EQ(2U, clone->GetPointerCount());
90 EXPECT_EQ(ids[0], clone->GetPointerId(0));
91 EXPECT_EQ(ids[2], clone->GetPointerId(1));
192 scoped_ptr<MotionEvent> clone = event.Clone(); local
193 EXPECT_EQ(2U, clone->GetPointerCount());
194 EXPECT_FLOAT_EQ(x, clone->GetX(1));
195 EXPECT_FLOAT_EQ(y, clone->GetY(1))
258 scoped_ptr<MotionEvent> clone = event.Clone(); local
279 scoped_ptr<MotionEvent> clone = event.Clone(); local
    [all...]
  /external/llvm/unittests/Transforms/Utils/
Cloning.cpp 39 T *clone(T *V1) { function in class:__anon30326::CloneInstruction
40 Value *V2 = V1->clone();
70 BinaryOperator *AddClone = this->clone(Add);
71 BinaryOperator *SubClone = this->clone(Sub);
72 BinaryOperator *MulClone = this->clone(Mul);
87 AddClone = this->clone(Add);
88 SubClone = this->clone(Sub);
89 MulClone = this->clone(Mul);
104 AddClone = this->clone(Add);
105 SubClone = this->clone(Sub)
    [all...]
  /frameworks/base/core/java/android/animation/
PathKeyframes.java 133 public Keyframes clone() { method in class:PathKeyframes
134 Keyframes clone = null; local
136 clone = (Keyframes) super.clone();
138 return clone;
225 public Keyframes clone() {
226 Keyframes clone = null;
228 clone = (Keyframes) super.clone();
230 return clone;
    [all...]
  /external/apache-http/src/org/apache/http/client/methods/
HttpEntityEnclosingRequestBase.java 72 public Object clone() throws CloneNotSupportedException { method in class:HttpEntityEnclosingRequestBase
73 HttpEntityEnclosingRequestBase clone = local
74 (HttpEntityEnclosingRequestBase) super.clone();
76 clone.entity = (HttpEntity) CloneUtils.clone(this.entity);
78 return clone;
  /external/apache-http/src/org/apache/http/impl/cookie/
BasicClientCookie2.java 94 public Object clone() throws CloneNotSupportedException { method in class:BasicClientCookie2
95 BasicClientCookie2 clone = (BasicClientCookie2) super.clone(); local
96 clone.ports = this.ports.clone();
97 return clone;
  /external/chromium_org/chrome/browser/resources/cryptotoken/
countdown.js 36 * Constructs a new clone of this timer, while overriding its callback.
38 * @return {!Countdown} new clone.
40 Countdown.prototype.clone = function(cb) {};
107 * Constructs a new clone of this timer, while overriding its callback.
109 * @return {!Countdown} new clone.
111 CountdownTimer.prototype.clone = function(cb) {
  /external/chromium_org/third_party/WebKit/Source/core/animation/
InterpolableValue.h 23 virtual PassOwnPtrWillBeRawPtr<InterpolableValue> clone() const = 0;
49 virtual PassOwnPtrWillBeRawPtr<InterpolableValue> clone() const OVERRIDE FINAL { return create(m_value); }
73 virtual PassOwnPtrWillBeRawPtr<InterpolableValue> clone() const OVERRIDE FINAL { return create(m_value); }
112 virtual PassOwnPtrWillBeRawPtr<InterpolableValue> clone() const OVERRIDE FINAL { return create(*this); }
129 set(i, other.m_values[i]->clone());
146 virtual PassOwnPtrWillBeRawPtr<InterpolableValue> clone() const OVERRIDE FINAL { return create(m_value); }
  /external/mockito/cglib-and-asm/src/org/mockito/asm/tree/
LookupSwitchInsnNode.java 107 public AbstractInsnNode clone(final Map labels) { method in class:LookupSwitchInsnNode
108 LookupSwitchInsnNode clone = new LookupSwitchInsnNode(clone(dflt, local
109 labels), null, clone(this.labels, labels));
110 clone.keys.addAll(keys);
111 return clone;
  /libcore/luni/src/test/java/libcore/javax/net/ssl/
SSLParametersTest.java 62 // confirm clone on input
64 String[] copy = cipherSuites.clone();
69 // confirm clone on output
77 // confirm clone on input
79 String[] copy = protocols.clone();
84 // confirm clone on output
  /cts/tests/tests/hardware/src/android/hardware/cts/helpers/sensoroperations/
RepeatingSensorOperation.java 53 ISensorOperation operation = mOperation.clone();
70 public RepeatingSensorOperation clone() { method in class:RepeatingSensorOperation
71 return new RepeatingSensorOperation(mOperation.clone(), mIterations);
  /external/chromium_org/third_party/icu/source/i18n/
funcrepl.cpp 45 translit = other.translit->clone();
46 replacer = other.replacer->clone();
60 UnicodeFunctor* FunctionReplacer::clone() const { function in class:FunctionReplacer
nultrans.cpp 25 Transliterator* NullTransliterator::clone(void) const { function in class:NullTransliterator
  /external/e2fsprogs/tests/f_dup3/
expect.1 16 Clone multiply-claimed blocks? yes
20 Clone multiply-claimed blocks? yes
24 Clone multiply-claimed blocks? yes
  /external/ltrace/testsuite/ltrace.minor/
Makefile.am 23 time-record-ttt.exp trace-clone.c trace-clone.exp \
29 time-record-tt time-record-ttt trace-clone trace-exec \
  /external/nist-sip/java/gov/nist/javax/sip/header/ims/
AddressHeaderIms.java 75 public Object clone() { method in class:AddressHeaderIms
76 AddressHeaderIms retval = (AddressHeaderIms) super.clone();
78 retval.address = (AddressImpl) this.address.clone();
  /frameworks/webview/chromium/java/com/android/webview/chromium/
WebHistoryItemChromium.java 82 // Clone constructor.
92 * See {@link android.webkit.WebHistoryItem#clone}.
95 public synchronized WebHistoryItemChromium clone() { method in class:WebHistoryItemChromium
  /packages/apps/OMA-DM/engine/dmlib/linux_java/samples/settings/
Dmt.zip 
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_apply.py 38 func = func.clone()
45 args = args.clone()
48 kwds = kwds.clone()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_apply.py 38 func = func.clone()
45 args = args.clone()
48 kwds = kwds.clone()
  /external/chromium_org/chrome/common/extensions/docs/examples/api/notifications/
style.css 7 /* Clone the look and feel of "chrome://" pages. */
  /external/chromium_org/content/common/input/
input_event.cc 16 : web_event(WebInputEventTraits::Clone(web_event)),
  /external/chromium_org/native_client_sdk/src/gonacl_appengine/src/bullet/
build.sh 42 Clone() {
47 LogExecute git clone $url $dir
69 Clone ${NACLPORTS_URL} ${NACLPORTS_DIR} ${NACLPORTS_SHA}
77 Clone ${NACLAM_URL} ${NACLAM_DIR} ${NACLAM_SHA}
  /external/chromium_org/sync/internal_api/test/
null_sync_core_proxy.cc 24 scoped_ptr<SyncCoreProxy> NullSyncCoreProxy::Clone() const {

Completed in 1406 milliseconds

1 2 3 4 5 67 8 91011>>