Searched defs:clone (Results 526 - 550 of 842) sorted by relevance

<<21222324252627282930>>

/external/icu/icu4c/source/i18n/
H A Dpersncal.cpp75 Calendar* PersianCalendar::clone() const { function in class:PersianCalendar
H A Dplurfmt.cpp154 numberFormat = (NumberFormat*)other.numberFormat->clone();
159 pluralRulesWrapper.pluralRules = other.pluralRulesWrapper.pluralRules->clone();
177 pluralRulesWrapper.pluralRules = rules->clone();
334 NumberFormat* nf = (NumberFormat*)format->clone();
344 PluralFormat::clone() const function in class:PluralFormat
H A Drepattrn.cpp233 RegexPattern *RegexPattern::clone() const { function in class:RegexPattern
H A Dstrmatch.cpp59 UnicodeFunctor* StringMatcher::clone() const { function in class:StringMatcher
H A Dunesctrn.cpp165 Transliterator* UnescapeTransliterator::clone() const { function in class:UnescapeTransliterator
H A Dwinnmfmt.cpp205 Format *Win32NumberFormat::clone(void) const function in class:Win32NumberFormat
/external/icu/icu4c/source/test/intltest/
H A Dreptest.cpp72 virtual Replaceable *clone() const { function in class:TestReplaceable
245 if((p=noop.clone())!=NULL) {
246 errln("Replaceable::clone() does not return NULL");
258 if((p=noop2.clone())!=NULL) {
259 errln("noop2.Replaceable::clone() does not return NULL");
266 if((p=noop3.clone())!=NULL) {
267 errln("noop3.Replaceable::clone() does not return NULL");
289 // test clone()
290 TestReplaceable *tr2 = (TestReplaceable *)tr->clone();
/external/javasqlite/src/main/java/SQLite/
H A DShell.java50 protected Object clone() { method in class:Shell
655 Shell s2 = (Shell) s.clone();
/external/jmdns/src/javax/jmdns/
H A DServiceInfo.java715 * @see java.lang.Object#clone()
718 public ServiceInfo clone() { method in class:ServiceInfo
720 return (ServiceInfo) super.clone();
722 // clone is supported
/external/jmdns/src/javax/jmdns/impl/
H A DDNSCache.java336 protected Object clone() throws CloneNotSupportedException { method in class:DNSCache
H A DDNSIncoming.java256 * @see java.lang.Object#clone()
259 public DNSIncoming clone() { method in class:DNSIncoming
/external/jsilver/src/com/google/clearsilver/jsilver/
H A DJSilverOptions.java69 // * add to clone() method if necessary.
370 public JSilverOptions clone() { method in class:JSilverOptions
372 return (JSilverOptions) super.clone();
/external/llvm/lib/IR/
H A DInstruction.cpp523 Instruction *Instruction::clone() const { function in class:Instruction
/external/ltrace/sysdeps/linux-gnu/arm/
H A Dfetch.c132 struct fetch_context *clone = malloc(sizeof(*context)); local
133 if (clone == NULL)
135 *clone = *context;
136 return clone;
/external/ltrace/sysdeps/linux-gnu/ppc/
H A Dfetch.c138 struct fetch_context *clone = malloc(sizeof(*context)); local
139 if (clone == NULL)
141 *clone = *context;
142 return clone;
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_bb.cpp91 BasicBlock::clone(ClonePolicy<Function>& pol) const function in class:nv50_ir::BasicBlock
98 bb->insertTail(i->clone(pol));
/external/mesa3d/src/mesa/program/
H A Dprog_parameter.c574 struct gl_program_parameter_list *clone; local
577 clone = _mesa_new_parameter_list();
578 if (!clone)
586 GLint j = _mesa_add_parameter(clone, p->Type, p->Name, size, p->DataType,
589 pCopy = clone->Parameters + j;
599 clone->Parameters[j].Size = p->Size;
604 clone->StateFlags = list->StateFlags;
606 return clone;
/external/mockwebserver/src/main/java/com/google/mockwebserver/
H A DMockResponse.java60 @Override public MockResponse clone() { method in class:MockResponse
62 MockResponse result = (MockResponse) super.clone();
/external/nist-sip/java/gov/nist/core/
H A DGenericObject.java143 * and the clone() method is invoked. Else if the object implements
145 * clone() method. Otherwise, the original object is returned.
157 clone_obj = ((Object []) obj).clone();
160 clone_obj = ((char []) obj).clone();
162 clone_obj = ((boolean []) obj).clone();
164 clone_obj = ((byte []) obj).clone();
166 clone_obj = ((short []) obj).clone();
168 clone_obj = ((int []) obj).clone();
170 clone_obj = ((long []) obj).clone();
172 clone_obj = ((float []) obj).clone();
199 public Object clone() { method in class:GenericObject
[all...]
H A DGenericObjectList.java125 * Makes a deep clone of this list.
127 public Object clone() { method in class:GenericObjectList
128 GenericObjectList retval = (GenericObjectList) super.clone();
131 .clone();
H A DNameValueList.java215 public Object clone() { method in class:NameValueList
220 retval.set((NameValue) ((NameValue) it.next()).clone());
/external/nist-sip/java/gov/nist/javax/sip/
H A DSipProviderImpl.java210 * @see java.lang.Object#clone()
212 protected Object clone() throws java.lang.CloneNotSupportedException { method in class:SipProviderImpl
/external/nist-sip/java/gov/nist/javax/sip/address/
H A DAddressImpl.java339 public Object clone() { method in class:AddressImpl
340 AddressImpl retval = (AddressImpl) super.clone();
342 retval.address = (GenericURI) this.address.clone();
H A DTelephoneNumber.java238 public Object clone() { method in class:TelephoneNumber
239 TelephoneNumber retval = (TelephoneNumber) super.clone();
241 retval.parameters = (NameValueList) this.parameters.clone();
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DChallenge.java251 public Object clone() { method in class:Challenge
252 Challenge retval = (Challenge) super.clone();
254 retval.authParams = (NameValueList) this.authParams.clone();

Completed in 434 milliseconds

<<21222324252627282930>>