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

<<11121314151617181920>>

  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
SymbolTable.cpp 183 TVariable* TVariable::clone(TStructureMap& remapper) function in class:TVariable
204 TFunction* TFunction::clone(TStructureMap& remapper) function in class:TFunction
211 TSymbolTableLevel* TSymbolTableLevel::clone(TStructureMap& remapper) function in class:TSymbolTableLevel
216 symTableLevel->insert(*iter->second->clone(remapper));
227 table.push_back(copyOf.table[i]->clone(remapper));
  /libcore/luni/src/main/java/libcore/icu/
NativeBreakIterator.java 41 public Object clone() { method in class:NativeBreakIterator
43 NativeBreakIterator clone = new NativeBreakIterator(cloneAddr, this.type); local
44 // The RI doesn't clone the CharacterIterator.
45 clone.charIter = this.charIter;
46 return clone;
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
MessageDigestSpiTest.java 112 * @tests java.security.MessageDigestSpi#clone()
117 md.clone();
123 assertNotSame(mdc, mdc.clone());
  /external/chromium-trace/src/shared/js/
parse_html_subset.js 40 var clone = {};
45 clone[key] = arguments[i][key];
49 return clone;
  /external/icu4c/common/unicode/
dtintrv.h 80 * compilers support genuine RTTI. Polymorphic operator==() and clone()
119 * clone this object.
124 virtual DateInterval* clone() const;
  /external/icu4c/i18n/
tmunit.cpp 29 * Also, Measure can clone and destruct the "unit" pointer.
34 * 3. clone and destructor need to check upon this flag to distinguish on how
83 TimeUnit::clone() const { function in class:TimeUnit
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/animations/
CalculationBone.java 31 this.startRotation = bone.getModelSpaceRotation().clone();
32 this.startTranslation = bone.getModelSpacePosition().clone();
33 this.startScale = bone.getModelSpaceScale().clone();
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/
BlenderTrack.java 141 public BlenderTrack clone() { method in class:BlenderTrack
143 return new BlenderTrack(boneTrack.clone());
145 return new BlenderTrack(spatialTrack.clone());
  /external/nist-sip/java/gov/nist/core/
HostPort.java 156 public Object clone() { method in class:HostPort
157 HostPort retval = (HostPort) super.clone();
159 retval.host = (Host) this.host.clone();
  /external/nist-sip/java/gov/nist/javax/sip/header/
AlertInfo.java 119 public Object clone() { method in class:AlertInfo
120 AlertInfo retval = (AlertInfo) super.clone();
122 retval.uri = (GenericURI) this.uri.clone();
CallID.java 141 public Object clone() { method in class:CallID
142 CallID retval = (CallID) super.clone();
144 retval.callIdentifier = (CallIdentifier) this.callIdentifier.clone();
Credentials.java 129 public Object clone() { method in class:Credentials
130 Credentials retval = (Credentials) super.clone();
132 retval.parameters = (NameValueList) this.parameters.clone();
ErrorInfo.java 133 public Object clone() { method in class:ErrorInfo
134 ErrorInfo retval = (ErrorInfo) super.clone();
136 retval.errorInfo = (GenericURI) this.errorInfo.clone();
InReplyTo.java 103 public Object clone() { method in class:InReplyTo
104 InReplyTo retval = (InReplyTo) super.clone();
106 retval.callId = (CallIdentifier) this.callId.clone();
  /external/nist-sip/java/gov/nist/javax/sip/header/extensions/
Join.java 180 // public Object clone() {
181 // CallID retval = (CallID) super.clone();
183 // retval.setCallIdentifier( (CallIdentifier) this.callIdentifier.clone() );
  /external/qemu/android/skin/
image.c 207 SKIN_IMAGE_CLONE = (1 << 0) /* this image is a clone */
668 SkinImage* clone; local
683 clone = skin_image_create( &desc, 0 );
684 if (clone != SKIN_IMAGE_NONE)
685 clone->flags |= SKIN_IMAGE_CLONE;
687 return clone;
690 /* apply blending to a source skin image and copy the result to a target clone image */
692 skin_image_blend_clone( SkinImage* clone, SkinImage* source, int blend )
694 SDL_LockSurface( clone->surface );
695 blend_image( clone->pixels, source->pixels, source->w, source->h, blend )
    [all...]
  /external/srec/portable/src/
ArrayList.c 117 ESR_ReturnCode ArrayListClone(ArrayList* self, ArrayList* clone)
124 return self->clone(self, clone);
  /external/srec/shared/src/
Int8ArrayList.c 106 ESR_ReturnCode Int8ArrayListClone(Int8ArrayList* self, Int8ArrayList* clone)
113 return self->clone(self, clone);
  /external/webkit/Source/WebKit/wx/
WebView.h 302 wxEvent *Clone(void) const { return new wxWebViewBeforeLoadEvent(*this); }
323 wxEvent *Clone(void) const { return new wxWebViewLoadEvent(*this); }
371 wxEvent *Clone(void) const { return new wxWebViewNewWindowEvent(*this); }
388 wxEvent *Clone(void) const { return new wxWebViewRightClickEvent(*this); }
426 wxEvent *Clone(void) const { return new wxWebViewConsoleMessageEvent(*this); }
449 wxEvent *Clone(void) const { return new wxWebViewAlertEvent(*this); }
466 wxEvent *Clone(void) const { return new wxWebViewConfirmEvent(*this); }
483 wxEvent *Clone(void) const { return new wxWebViewPromptEvent(*this); }
500 wxEvent *Clone(void) const { return new wxWebViewReceivedTitleEvent(*this); }
520 wxEvent *Clone(void) const { return new wxWebViewWindowObjectClearedEvent(*this);
    [all...]
  /libcore/luni/src/test/java/libcore/java/text/
BreakIteratorTest.java 71 BreakIterator clone = (BreakIterator) it.clone(); local
74 assertExpectedWordBoundaries(clone, s);
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/
GLListProperty.java 42 IGLProperty p = template.clone();
88 public GLListProperty clone() { method in class:GLListProperty
93 props.add(p.clone());
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
HashSetTest.java 117 Set orgSet = (Set) hs.clone();
126 * @tests java.util.HashSet#clone()
129 // Test for method java.lang.Object java.util.HashSet.clone()
130 HashSet hs2 = (HashSet) hs.clone();
131 assertTrue("clone returned an equivalent HashSet", hs != hs2);
132 assertTrue("clone did not return an equal HashSet", hs.equals(hs2));
LinkedHashSetTest.java 111 Set orgSet = (Set) hs.clone();
120 * @tests java.util.LinkedHashSet#clone()
123 // Test for method java.lang.Object java.util.LinkedHashSet.clone()
124 LinkedHashSet hs2 = (LinkedHashSet) hs.clone();
125 assertTrue("clone returned an equivalent LinkedHashSet", hs != hs2);
126 assertTrue("clone did not return an equal LinkedHashSet", hs
  /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
RuleBasedCollatorTest.java 65 RuleBasedCollator clone = (RuleBasedCollator) coll.clone(); local
66 assertNotSame(coll, clone);
67 assertEquals(coll.getRules(), clone.getRules());
68 assertEquals(coll.getDecomposition(), clone.getDecomposition());
69 assertEquals(coll.getStrength(), clone.getStrength());
  /external/e2fsprogs/tests/f_dup4/
expect.1 22 Clone multiply-claimed blocks? yes
29 Clone multiply-claimed blocks? yes
36 Clone multiply-claimed blocks? yes
50 Clone multiply-claimed blocks? yes
57 Clone multiply-claimed blocks? yes
64 Clone multiply-claimed blocks? yes

Completed in 1473 milliseconds

<<11121314151617181920>>