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

1 2 3 4 5 6 7 891011>>

  /external/libsepol/include/sepol/
iface_record.h 49 /* Create/Clone/Destroy */
  /external/nist-sip/java/gov/nist/javax/sip/header/
AddressParametersHeader.java 82 * @see gov.nist.javax.sip.header.AddressParameters#clone()
84 public Object clone() { method in class:AddressParametersHeader
85 AddressParametersHeader retval = (AddressParametersHeader) super.clone();
87 retval.address = (AddressImpl) this.address.clone();
  /external/v8/test/test262/
README 11 hg clone -r 309 http://hg.ecmascript.org/tests/test262 data
  /external/webkit/LayoutTests/dom/html/level1/core/
selfhtml.js 379 var clone = null;
384 clone = doc.createElement(srcNode.nodeName.toLowerCase());
388 clone.setAttribute(srcAttr.nodeName, srcAttr.nodeValue);
394 clone.appendChild(cloneChild);
401 clone = doc.createTextNode(srcNode.nodeValue);
405 clone = doc.createCDATASection(srcNode.nodeValue);
409 clone = doc.createProcessingInstruction(srcNode.nodeValue);
413 clone = doc.createComment(srcNode.nodeValue);
416 return clone;
432 var clone = null
    [all...]
  /external/webkit/LayoutTests/dom/html/level2/core/
selfhtml.js 379 var clone = null;
384 clone = doc.createElement(srcNode.nodeName.toLowerCase());
388 clone.setAttribute(srcAttr.nodeName, srcAttr.nodeValue);
394 clone.appendChild(cloneChild);
401 clone = doc.createTextNode(srcNode.nodeValue);
405 clone = doc.createCDATASection(srcNode.nodeValue);
409 clone = doc.createProcessingInstruction(srcNode.nodeValue);
413 clone = doc.createComment(srcNode.nodeValue);
416 return clone;
432 var clone = null
    [all...]
  /external/webkit/LayoutTests/dom/html/level2/events/
selfhtml.js 379 var clone = null;
384 clone = doc.createElement(srcNode.nodeName.toLowerCase());
388 clone.setAttribute(srcAttr.nodeName, srcAttr.nodeValue);
394 clone.appendChild(cloneChild);
401 clone = doc.createTextNode(srcNode.nodeValue);
405 clone = doc.createCDATASection(srcNode.nodeValue);
409 clone = doc.createProcessingInstruction(srcNode.nodeValue);
413 clone = doc.createComment(srcNode.nodeValue);
416 return clone;
432 var clone = null
    [all...]
  /external/webkit/LayoutTests/dom/html/level2/html/
HTMLBaseElement01.html 394 var clone = null;
399 clone = doc.createElement(srcNode.nodeName.toLowerCase());
403 clone.setAttribute(srcAttr.nodeName, srcAttr.nodeValue);
409 clone.appendChild(cloneChild);
416 clone = doc.createTextNode(srcNode.nodeValue);
420 clone = doc.createCDATASection(srcNode.nodeValue);
424 clone = doc.createProcessingInstruction(srcNode.nodeValue);
428 clone = doc.createComment(srcNode.nodeValue);
431 return clone;
446 var clone = null
    [all...]
HTMLBaseElement02.html 395 var clone = null;
400 clone = doc.createElement(srcNode.nodeName.toLowerCase());
404 clone.setAttribute(srcAttr.nodeName, srcAttr.nodeValue);
410 clone.appendChild(cloneChild);
417 clone = doc.createTextNode(srcNode.nodeValue);
421 clone = doc.createCDATASection(srcNode.nodeValue);
425 clone = doc.createProcessingInstruction(srcNode.nodeValue);
429 clone = doc.createComment(srcNode.nodeValue);
432 return clone;
447 var clone = null
    [all...]
selfhtml.js 379 var clone = null;
384 clone = doc.createElement(srcNode.nodeName.toLowerCase());
388 clone.setAttribute(srcAttr.nodeName, srcAttr.nodeValue);
394 clone.appendChild(cloneChild);
401 clone = doc.createTextNode(srcNode.nodeValue);
405 clone = doc.createCDATASection(srcNode.nodeValue);
409 clone = doc.createProcessingInstruction(srcNode.nodeValue);
413 clone = doc.createComment(srcNode.nodeValue);
416 return clone;
432 var clone = null
    [all...]
  /frameworks/base/graphics/java/android/graphics/drawable/shapes/
RoundRectShape.java 107 public RoundRectShape clone() throws CloneNotSupportedException { method in class:RoundRectShape
108 RoundRectShape shape = (RoundRectShape) super.clone();
109 shape.mOuterRadii = mOuterRadii != null ? mOuterRadii.clone() : null;
110 shape.mInnerRadii = mInnerRadii != null ? mInnerRadii.clone() : null;
  /libcore/luni/src/main/java/javax/net/ssl/
SSLParameters.java 74 return cipherSuites.clone();
83 : cipherSuites.clone());
94 return protocols.clone();
103 : protocols.clone());
  /libcore/luni/src/main/java/org/apache/harmony/luni/lang/reflect/
Types.java 24 return types.getResolvedTypes().clone();
ImplForWildcard.java 35 return superBound.getResolvedTypes().clone();
40 return extendsBound.getResolvedTypes().clone();
  /packages/apps/Email/src/com/android/email/service/
EasAuthenticatorServiceAlternate.java 22 * <p>Functionality wise, it's a 100% clone of {@link EasAuthenticatorService}, but in order to
  /external/bouncycastle/src/main/java/org/bouncycastle/x509/
PKIXAttrCertChecker.java 51 * Returns a clone of this object.
55 public abstract Object clone(); method in class:PKIXAttrCertChecker
X509CertStoreSelector.java 38 public Object clone() method in class:X509CertStoreSelector
40 X509CertStoreSelector selector = (X509CertStoreSelector)super.clone();
  /external/chromium/chrome/browser/resources/shared/js/cr/ui/table/
table_column.js 38 * @return {cr.ui.table.TableColumn} Clone of the given column.
40 clone: function() {
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Triangle.java 285 pointa = (Vector3f) e.getCapsule(this).readSavable("pointa", Vector3f.ZERO.clone());
286 pointb = (Vector3f) e.getCapsule(this).readSavable("pointb", Vector3f.ZERO.clone());
287 pointc = (Vector3f) e.getCapsule(this).readSavable("pointc", Vector3f.ZERO.clone());
291 public Triangle clone() { method in class:Triangle
293 Triangle t = (Triangle) super.clone();
294 t.pointa = pointa.clone();
295 t.pointb = pointb.clone();
296 t.pointc = pointc.clone();
  /frameworks/base/tools/aapt/
DirectoryWalker.h 37 virtual DirectoryWalker* clone() = 0;
91 virtual DirectoryWalker* clone() { function in class:SystemDirectoryWalker
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gldebugger/
GLServerTexture.java 41 public GLTexture clone() { method in class:GLTexture
43 GLTexture copy = (GLTexture) super.clone();
44 copy.contentChanges = (ArrayList<Message>) contentChanges.clone();
99 public GLServerTexture clone(final Context copyContext) { method in class:GLServerTexture
101 GLServerTexture copy = (GLServerTexture) super.clone();
104 copy.tmu2D = tmu2D.clone();
105 copy.tmuCube = tmuCube.clone();
110 copy.textures.append(textures.keyAt(i), textures.valueAt(i).clone());
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/
IGLProperty.java 57 /** Deep clone this property. */
58 IGLProperty clone(); method in interface:IGLProperty
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
PKIXCertPathBuilderResultTest.java 201 PKIXCertPathBuilderResult clone = (PKIXCertPathBuilderResult) init local
202 .clone();
203 assertSame(init.getCertPath(), clone.getCertPath());
204 assertSame(init.getPolicyTree(), clone.getPolicyTree());
205 assertSame(init.getPublicKey(), clone.getPublicKey());
206 assertSame(init.getTrustAnchor(), clone.getTrustAnchor());
  /external/jmonkeyengine/engine/src/core/com/jme3/animation/
Animation.java 165 * This method creates a clone of the current object.
166 * @return a clone of the current object
169 public Animation clone() { method in class:Animation
171 Animation result = (Animation) super.clone();
172 result.tracks = tracks.clone();
174 result.tracks[i] = this.tracks[i].clone();
  /external/srec/portable/src/
ArrayListImpl.c 52 impl->Interface.clone = &ArrayList_Clone;
216 ESR_ReturnCode ArrayList_Clone(ArrayList* self, ArrayList* clone)
222 CHK(rc, clone->removeAll(clone));
227 CHK(rc, clone->add(clone, element));
  /external/srec/shared/src/
Int8ArrayListImpl.c 47 impl->Interface.clone = &Int8ArrayList_Clone;
185 ESR_ReturnCode Int8ArrayList_Clone(Int8ArrayList* self, Int8ArrayList* clone)
191 CHK(rc, clone->removeAll(clone));
196 CHK(rc, clone->add(clone, element));

Completed in 350 milliseconds

1 2 3 4 5 6 7 891011>>