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

1 2 3 4 5 67 8 91011>>

  /frameworks/base/core/java/android/util/
LongArray.java 114 public LongArray clone() { method in class:LongArray
115 LongArray clone = null; local
117 clone = (LongArray) super.clone();
118 clone.mValues = mValues.clone();
122 return clone;
IntArray.java 115 public IntArray clone() throws CloneNotSupportedException { method in class:IntArray
116 final IntArray clone = (IntArray) super.clone(); local
117 clone.mValues = mValues.clone();
118 return clone;
  /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 110 // TODO(mustaq): Make a separate clone test
111 scoped_ptr<MotionEvent> clone = event.Clone(); local
112 EXPECT_EQ(2U, clone->GetPointerCount());
113 EXPECT_EQ(ids[0], clone->GetPointerId(0));
114 EXPECT_EQ(ids[2], clone->GetPointerId(1));
205 scoped_ptr<MotionEvent> clone = event.Clone(); local
208 static_cast<MotionEventAura*>(clone.get());
283 scoped_ptr<MotionEvent> clone = event.Clone() local
332 scoped_ptr<MotionEvent> clone = event.Clone(); local
353 scoped_ptr<MotionEvent> clone = event.Clone(); local
    [all...]
  /external/llvm/unittests/Transforms/Utils/
Cloning.cpp 39 T *clone(T *V1) { function in class:__anon31169::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 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/impl/cookie/
BasicClientCookie2.java 99 public Object clone() throws CloneNotSupportedException { method in class:BasicClientCookie2
100 BasicClientCookie2 clone = (BasicClientCookie2) super.clone(); local
101 clone.ports = this.ports.clone();
102 return clone;
  /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
  /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
  /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/cc/animation/
keyframed_animation_curve.cc 73 scoped_ptr<ColorKeyframe> ColorKeyframe::Clone() const {
76 func = timing_function()->Clone();
100 scoped_ptr<FloatKeyframe> FloatKeyframe::Clone() const {
103 func = timing_function()->Clone();
127 scoped_ptr<TransformKeyframe> TransformKeyframe::Clone() const {
130 func = timing_function()->Clone();
154 scoped_ptr<FilterKeyframe> FilterKeyframe::Clone() const {
157 func = timing_function()->Clone();
179 scoped_ptr<AnimationCurve> KeyframedColorAnimationCurve::Clone() const {
183 to_return->AddKeyframe(keyframes_[i]->Clone());
    [all...]
  /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/third_party/icu/source/i18n/
nultrans.cpp 25 Transliterator* NullTransliterator::clone(void) const { function in class:NullTransliterator
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
SConscript 3 env = env.Clone()
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xorg/
SConscript 6 env = env.Clone()

Completed in 1916 milliseconds

1 2 3 4 5 67 8 91011>>