Searched defs:clone (Results 251 - 275 of 842) sorted by path

<<11121314151617181920>>

/external/chromium_org/third_party/icu/source/i18n/
H A Duregex.cpp290 RegularExpression *clone = new RegularExpression; local
291 if (clone == NULL) {
296 clone->fMatcher = source->fPat->matcher(*status);
298 delete clone;
302 clone->fPat = source->fPat;
303 clone->fPatRefCount = source->fPatRefCount;
304 clone->fPatString = source->fPatString;
305 clone->fPatStringLen = source->fPatStringLen;
309 return (URegularExpression*)clone;
395 utext_close(&input); // reset() made a shallow clone, s
[all...]
H A Dvtzone.cpp966 tz = (BasicTimeZone*)source.tz->clone();
975 vtzlines->addElement(line->clone(), status);
1008 tz = (BasicTimeZone*)right.tz->clone();
1020 vtzlines->addElement(line->clone(), status);
1093 vtz->tz = (BasicTimeZone *)basic_time_zone.clone();
1179 VTimeZone::clone(void) const { function in class:VTimeZone
1968 finalDstRule = (AnnualTimeZoneRule*)tzt.getTo()->clone();
2019 finalStdRule = (AnnualTimeZoneRule*)tzt.getTo()->clone();
H A Dwindtfmt.cpp132 // this->fCalendar = other.fCalendar->clone();
141 Format *Win32DateFormat::clone(void) const function in class:Win32DateFormat
219 adoptCalendar(newCalendar.clone());
H A Dwinnmfmt.cpp205 Format *Win32NumberFormat::clone(void) const function in class:Win32NumberFormat
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dtrie2test.c551 /* clone the trie so that the caller can reuse the original */
589 /* clone a frozen trie */
590 UTrie2 *clone=utrie2_clone(trie, &errorCode); local
597 trie=clone;
705 /* clone an unserialized trie */
706 UTrie2 *clone=utrie2_clone(trie, &errorCode); local
714 trie=clone;
720 /* clone-as-thawed an unserialized trie */
721 UTrie2 *clone=utrie2_cloneAsThawed(trie, &errorCode); local
722 if(U_FAILURE(errorCode) || utrie2_isFrozen(clone)) {
775 UTrie2 *clone=utrie2_cloneAsThawed(trie, &errorCode); local
821 UTrie2 *clone=utrie2_clone(trie, &errorCode); local
[all...]
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dapicoll.cpp258 Collator *aFrCol = frCol->clone();
454 /* change orig & clone & make sure they are independent */
836 // Test RuleBasedCollator ctor, dtor, operator==, operator!=, clone, copy, and getRules
855 logln("testing operator==, operator!=, clone methods ...");
867 Collator* col4 = col1->clone();
868 Collator* col5 = col3->clone();
916 // test clone and copy
926 Collator *col2 = col1->clone();
1069 logln("Trying Collator::getAvailableLocales() clone");
1071 StringEnumeration* localeEnum2 = localeEnum->clone();
1971 Collator* TestCollator::clone() const function in class:TestCollator
[all...]
H A Dcitrtest.cpp57 virtual CharacterIterator* clone(void) const { function in class:SCharacterIterator
208 CharacterIterator* test5 = test1->clone();
220 errln("clone() or equals() failed: Two clones tested unequal");
259 StringCharacterIterator* testChar3=(StringCharacterIterator*)test1->clone();
294 UCharCharacterIterator* test5 = (UCharCharacterIterator*)test1->clone();
317 errln("clone() or equals() failed: Two clones tested unequal");
1094 virtual CharacterIterator *clone() const { function in class:SubCharIter
H A Ddadrcoll.cpp210 RuleBasedCollator* clone = NULL; local
217 clone = new RuleBasedCollator(cloneBuf, cloneSize, UCA, intStatus);
219 errln("Could not clone the RuleBasedCollator. Error: %s", u_errorName(intStatus));
229 if(clone != NULL){
230 processArguments(clone, arguments, argLen);
244 if(clone != NULL){
245 processSequence(clone, sequence);
252 delete clone;
H A Ddcfmapts.cpp129 // ======= Test clone(), assignment, and equality
131 logln((UnicodeString)"Testing clone(), assignment and equality operators");
142 Format *clone = def.clone(); local
143 if( ! (*clone == def) ) {
146 delete clone;
H A Dnumfmtst.cpp208 virtual Format* clone() const {return NULL;} function in class:StubNumberFormat
1909 CurrencyUnit * cu3 = (CurrencyUnit *)cu.clone();
1932 CurrencyAmount *ca3 = (CurrencyAmount *)ca.clone();
2771 Format *fullClone = full->clone();
2781 errln("FAIL: Clone returned different result from non-clone.");
2808 cloneObj = (MeasureFormat *)measureObj->clone();
H A Dnumrgts.cpp75 virtual Format* clone() const function in class:MyNumberFormatTest
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();
H A Dsdtfmtts.cpp118 // ======= Test clone(), assignment, and equality
120 logln("Testing clone(), assignment and equality operators");
131 Format *clone = def.clone(); local
132 if( ! (*clone == def) ) {
135 delete clone;
H A Dstrcase.cpp400 UBreakIterator *clone=ubrk_safeClone((UBreakIterator *)iter, NULL, NULL, errorCode); local
401 ucasemap_setBreakIterator(csm.getAlias(), clone, errorCode);
H A Dtransapi.cpp110 Transliterator* t3=t1->clone();
111 Transliterator* t4=t2->clone();
116 errln("FAIL: getID or clone failed");
123 errln("FAIL: getID or clone failed");
200 t3=t1->clone();
201 t4=t2->clone();
204 errln("FAIL: clone or getID failed");
206 errln("FAIL: clone or getID failed");
711 virtual UnicodeFunctor* clone() const { function in class:TestFilter1
732 virtual UnicodeFunctor* clone() cons function in class:TestFilter2
753 virtual UnicodeFunctor* clone() const { function in class:TestFilter3
967 virtual UnicodeFunctor* clone() const {return NULL;} function in class:MyUnicodeFunctorTestClass
[all...]
H A Dtranstst.cpp658 virtual UnicodeFunctor* clone() const { function in class:TestFilter
1140 t2 = t1->clone(); // Call copy constructor under the covers.
1659 // extra test for RemoveTransliterator::clone(), which at one point wasn't
1661 Transliterator* t2 = t->clone();
1948 virtual Transliterator* clone(void) const { function in class:TestTrans
3736 return _TUFF[context.integer]->clone();
H A Dtstnrapi.cpp37 // test clone(), ==, and hashCode()
38 Normalizer *clone=copy.clone(); local
39 if(*clone!=copy) {
40 errln("error in Normalizer(Normalizer(CharacterIterator)).clone()!=copy");
42 // clone must have the same hashCode()
43 if(clone->hashCode()!=copy.hashCode()) {
44 errln("error in Normalizer(Normalizer(CharacterIterator)).clone()->hashCode()!=copy.hashCode()");
46 if(clone->next()!=0x4e3d) {
47 dataerrln("error in Normalizer(Normalizer(CharacterIterator)).clone()
[all...]
/external/chromium_org/third_party/jstemplate/
H A Djsevalcontext.js254 JsEvalContext.prototype.clone = function(data, index, count) {
/external/chromium_org/third_party/libaddressinput/src/cpp/test/
H A Daddress_data_test.cc188 AddressData clone = address; local
190 EXPECT_EQ(address, clone);
191 clone.language_code.clear();
192 EXPECT_FALSE(address == clone);
/external/chromium_org/third_party/libaddressinput/src/java/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF AndroidManifest.xml android/ android/Manifest$permission.class ...
/external/chromium_org/third_party/libaddressinput/src/java/testlibs/
H A Dhttpclient-4.1.1.jar ... .String) String name public java.lang.Object clone () throws java.lang.CloneNotSupportedException org.apache. ...
H A Dhttpcore-4.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/http/ org/apache/http/message/ ...
H A Djson-20090211.jar ... ?defs= " () protected final java.lang.Object clone () public boolean equals (java.lang.Object) public java ...
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/googletest/src/include/gtest/
H A Dgtest.h143 // GTEST_HAS_CLONE - Define it to 1/0 to indicate that clone(2)
1712 // Determines whether clone(2) is supported.
1715 // Also see http://linux.die.net/man/2/clone.
1721 // On Android, clone() is only available on ARM starting with Gingerbread.
8506 // thread. This is because it's safe to fork() or clone() only
8509 // 2. The parent process clone()s a sub-process and runs the death
10121 ParamIteratorInterface<T>* clone = impl_->Clone(); local
10123 return ParamIterator(clone);
/external/chromium_org/third_party/libxml/src/
H A Dtree.c9122 * @resNode: the clone of the given @node
9172 xmlNodePtr resultClone = NULL, clone = NULL, parentClone = NULL, prevClone = NULL; local
9239 clone = (xmlNodePtr) xmlMalloc(sizeof(xmlNode));
9240 if (clone == NULL) {
9244 memset(clone, 0, sizeof(xmlNode));
9249 clone->parent = parentClone;
9251 prevClone->next = clone;
9252 clone->prev = prevClone;
9254 parentClone->children = clone;
9256 resultClone = clone;
[all...]

Completed in 641 milliseconds

<<11121314151617181920>>