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

<<11121314151617181920>>

  /external/chromium/chrome/browser/
browsing_data_indexed_db_helper.cc 211 CannedBrowsingDataIndexedDBHelper* CannedBrowsingDataIndexedDBHelper::Clone() {
213 CannedBrowsingDataIndexedDBHelper* clone = local
217 clone->pending_indexed_db_info_ = pending_indexed_db_info_;
218 clone->indexed_db_info_ = indexed_db_info_;
219 return clone;
  /external/chromium/chrome/browser/tab_contents/
tab_specific_content_settings.cc 311 databases_->Clone(),
312 local_storages_->Clone(),
313 session_storages_->Clone(),
314 appcaches_->Clone(),
315 indexed_dbs_->Clone(),
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/animations/
BoneContext.java 112 inverseParentMatrix = parent.inverseTotalTransformation.clone();
114 inverseParentMatrix = objectToArmatureMatrix.clone();
116 inverseParentMatrix = Matrix4f.IDENTITY.clone();
119 restMatrix = armatureMatrix.clone();
174 Matrix4f pose = this.restMatrix.clone();
  /external/mesa3d/docs/
repository.html 47 git clone git://anongit.freedesktop.org/git/mesa/mesa
55 git clone git://anongit.freedesktop.org/git/mesa/demos
81 git clone git+ssh://username@git.freedesktop.org/git/mesa/mesa
90 git clone git+ssh://username@git.freedesktop.org/git/mesa/demos
161 If it has been awhile since you've done the initial clone, try
  /libcore/luni/src/test/java/tests/api/java/util/
AbstractMapTest.java 164 * java.util.AbstractMap#clone()
182 public Object clone() { method in class:AbstractMapTest.MyMap
184 return super.clone();
196 MyMap mapClone = (MyMap) map.clone();
197 assertTrue("clone not shallow", map.getMap() == mapClone.getMap());
LinkedHashSetTest.java 129 Set orgSet = (Set) hs.clone();
138 * java.util.LinkedHashSet#clone()
141 // Test for method java.lang.Object java.util.LinkedHashSet.clone()
142 LinkedHashSet hs2 = (LinkedHashSet) hs.clone();
143 assertTrue("clone returned an equivalent LinkedHashSet", hs != hs2);
144 assertTrue("clone did not return an equal LinkedHashSet", hs
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
NodeSequence.java 555 nv = (NodeVector) vec.clone();
624 * Note: Not a deep clone.
629 NodeSequence seq = (NodeSequence)super.clone();
632 // In making this clone of an iterator we are making
644 * Get a clone of this iterator, but don't reset the iteration in the
646 * Note: Not a deep clone.
648 * @return A clone of this object.
652 public Object clone() throws CloneNotSupportedException method in class:NodeSequence
654 NodeSequence clone = (NodeSequence) super.clone(); local
    [all...]
  /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
SimpleDateFormatTest.java 269 * @tests java.text.SimpleDateFormat#clone()
272 // Test for method java.lang.Object java.text.SimpleDateFormat.clone()
274 SimpleDateFormat clone = (SimpleDateFormat) f2.clone(); local
275 assertTrue("Invalid clone", f2.equals(clone));
276 clone.applyPattern("y");
277 assertTrue("Format modified", !f2.equals(clone));
278 clone = (SimpleDateFormat) f2.clone();
293 SimpleDateFormat clone = (SimpleDateFormat) format.clone(); local
    [all...]
DateFormatTest.java 31 * @tests java.text.DateFormat#clone()
35 DateFormat clone = (DateFormat) format.clone(); local
36 assertTrue("Clone not equal", format.equals(clone));
37 clone.getNumberFormat().setMinimumFractionDigits(123);
38 assertTrue("Clone shares NumberFormat", !format.equals(clone));
  /external/protobuf/gtest/scons/
SConstruct.common 99 env = base_env.Clone()
196 win_base = self.env_base.Clone(
239 debug_env = base_environment.Clone()
259 optimized_env = base_environment.Clone()
304 mac_base = self.env_base.Clone(platform='darwin')
306 mac_dbg = mac_base.Clone()
310 mac_opt = mac_base.Clone()
315 gcc_dbg = self.env_base.Clone()
319 gcc_opt = self.env_base.Clone()
  /libcore/luni/src/main/java/org/apache/harmony/lang/annotation/
AnnotationMember.java 369 return ((int[])value).clone();
371 return ((byte[])value).clone();
373 return ((short[])value).clone();
375 return ((long[])value).clone();
377 return ((char[])value).clone();
379 return ((boolean[])value).clone();
381 return ((float[])value).clone();
383 return ((double[])value).clone();
385 return ((Object[])value).clone();
  /libcore/luni/src/test/java/libcore/java/text/
OldDateFormatTest.java 72 DateFormat clone = (DateFormat) format.clone(); local
73 assertTrue("Clone and parent are not equaled", format.equals(clone));
74 assertTrue("Clone is equal to other object", !clone
77 assertTrue("Clone and parent are not equaled", format.equals(clone));
149 DateFormat df2 = (DateFormat) df1.clone();
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gldebugger/
GLServerVertex.java 37 public GLBuffer clone() { method in class:GLBuffer
39 GLBuffer copy = (GLBuffer) super.clone();
72 public GLAttribPointer clone(SparseArray<GLBuffer> copyBuffers) { method in class:GLAttribPointer
74 GLAttribPointer copy = (GLAttribPointer) super.clone();
108 public GLServerVertex clone() { method in class:GLServerVertex
110 GLServerVertex copy = (GLServerVertex) super.clone();
115 copy.buffers.append(buffers.keyAt(i), buffers.valueAt(i).clone());
126 copy.attribPointers[i] = attribPointers[i].clone(copy.buffers);
128 copy.defaultAttribs = defaultAttribs.clone();
GLServerState.java 30 public Object clone() { method in class:GLStencilState
32 return super.clone();
245 public GLServerState clone() { method in class:GLServerState
247 GLServerState newState = (GLServerState) super.clone();
248 newState.front = (GLStencilState) front.clone();
249 newState.back = (GLStencilState) back.clone();
  /external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/jst/
jstemplate.js 19 * instantiate a template, clone it from the DOM first, and then
653 var i, I, clone;
659 clone = context.clone(value[i], i, count);
661 queue.push(me.jstProcessInner_, clone, node,
662 JsEvalContext.recycle, clone, null);
670 clone = context.clone(value[i], i, count);
671 queue.push(me.jstProcessInner_, clone, template,
672 JsEvalContext.recycle, clone, null);
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/extensions/irc/servlet/jstemplate/
jstemplate.js 19 * instantiate a template, clone it from the DOM first, and then
653 var i, I, clone;
659 clone = context.clone(value[i], i, count);
661 queue.push(me.jstProcessInner_, clone, node,
662 JsEvalContext.recycle, clone, null);
670 clone = context.clone(value[i], i, count);
671 queue.push(me.jstProcessInner_, clone, template,
672 JsEvalContext.recycle, clone, null)
    [all...]
  /cts/tests/tests/accessibilityservice/src/android/accessibilityservice/cts/
AccessibilityActivityTestCase.java 376 // it so use a clone to avoid losing state
390 // it so use a clone to avoid losing state
402 // it so use a clone to avoid losing state
418 // it so use a clone to avoid losing state
469 // it so use a clone to avoid losing state
482 // it so use a clone to avoid losing state
  /external/icu4c/common/unicode/
rep.h 186 * Clone this object, an instance of a subclass of Replaceable.
188 * If a subclass does not implement clone(), or if an error occurs,
190 * The clone functions in all subclasses return a pointer to a Replaceable
193 * The caller must delete the clone.
195 * @return a clone of this object
200 virtual Replaceable *clone() const;
strenum.h 64 * Clone this object, an instance of a subclass of StringEnumeration.
66 * If a subclass does not implement clone(), or if an error occurs,
68 * The clone functions in all subclasses return a base class pointer
71 * The caller must delete the clone.
73 * @return a clone of this object
78 virtual StringEnumeration *clone() const;
  /external/icu4c/test/intltest/
tufmtts.cpp 107 TimeUnit* another = (TimeUnit*)tmunit->clone();
111 assertTrue("orig and clone are equal", (*tmunit == *another));
146 TimeUnitAmount* fourth_tma = (TimeUnitAmount*)tma.clone();
149 assertTrue("clone and assigned are equal", (third_tma == *fourth_tma));
173 TimeUnitFormat* tmf_clone = (TimeUnitFormat*)tmf_en->clone();
174 assertTrue("TimeUnitFormat: orig and clone are equal", (*tmf_en == *tmf_clone));
  /external/jmonkeyengine/engine/src/test/jme3test/terrain/
TerrainTestCollision.java 274 Vector3f oldLoc = selectedCollisionObject.getLocalTranslation().clone();
278 Vector3f oldLoc = selectedCollisionObject.getLocalTranslation().clone();
282 Vector3f oldLoc = selectedCollisionObject.getLocalTranslation().clone();
286 Vector3f oldLoc = selectedCollisionObject.getLocalTranslation().clone();
290 Vector3f oldLoc = selectedCollisionObject.getLocalTranslation().clone();
294 Vector3f oldLoc = selectedCollisionObject.getLocalTranslation().clone();
TerrainTestReadWrite.java 185 inputManager.addMapping("clone", new KeyTrigger(KeyInput.KEY_C));
186 inputManager.addListener(cloneActionListener, "clone");
279 if (name.equals("clone") && !pressed) {
281 Terrain clone = (Terrain) ((Node)terrain).clone();
283 terrain = clone;
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
IntArrayList.java 136 public Object clone() throws CloneNotSupportedException { method in class:IntArrayList
137 IntArrayList a = (IntArrayList)super.clone();
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/spec/
PKCS8EncodedKeySpecTest.java 96 byte[] encodedKeyCopy = encodedKey.clone();
120 byte[] encodedKeyCopy = encodedKey.clone();
X509EncodedKeySpecTest.java 96 byte[] encodedKeyCopy = encodedKey.clone();
120 byte[] encodedKeyCopy = encodedKey.clone();

Completed in 2752 milliseconds

<<11121314151617181920>>