Home
last modified time | relevance | path

Searched refs:resultArray (Results 1 – 11 of 11) sorted by relevance

/external/icu4c/i18n/
Dcsdetect.cpp161 : textIn(new InputText(status)), resultArray(NULL), in CharsetDetector()
174 resultArray = (CharsetMatch **)uprv_malloc(sizeof(CharsetMatch *)*fCSRecognizers_size); in CharsetDetector()
176 if (resultArray == NULL) { in CharsetDetector()
182 resultArray[i] = new CharsetMatch(); in CharsetDetector()
184 if (resultArray[i] == NULL) { in CharsetDetector()
196 delete resultArray[i]; in ~CharsetDetector()
199 uprv_free(resultArray); in ~CharsetDetector()
242 return resultArray[0]; in detect()
265 if (csr->match(textIn, resultArray[resultCount])) { in detectAll()
271 …uprv_sortArray(resultArray, resultCount, sizeof resultArray[0], charsetMatchComparator, NULL, TRUE… in detectAll()
[all …]
Dcsrsbcs.cpp1149 uint8_t *resultArray = unshapeLamAlef(inputBytes, inputBytesLength, length); in unshape() local
1151 if (resultArray != NULL) { in unshape()
1153 resultArray[i] = unshapeMap_IBM420[resultArray[i]]; in unshape()
1157 return resultArray; in unshape()
Dcsdetect.h25 CharsetMatch **resultArray; variable
Dmsgfmt.cpp1261 LocalArray<Formattable> resultArray(new Formattable[argTypeCount ? argTypeCount : 1]); in parse() local
1284 return resultArray.orphan(); in parse()
1301 Formattable& argResult = resultArray[argNumber]; in parse()
/external/guava/guava/src/com/google/common/collect/
DOrdering.java418 E[] resultArray; in leastOf() local
421 resultArray = values; in leastOf()
428 resultArray = tmp; in leastOf()
429 System.arraycopy(values, 0, resultArray, 0, k); in leastOf()
432 return Collections.unmodifiableList(Arrays.asList(resultArray)); in leastOf()
/external/v8/src/
Dstring.js409 var resultArray = reusableReplaceArray;
410 if (resultArray) {
417 resultArray = new InternalArray(16);
422 resultArray);
426 reusableReplaceArray = resultArray;
470 resultArray.length = 0;
471 reusableReplaceArray = resultArray;
/external/webkit/Source/WebKit2/UIProcess/
DWebDatabaseManagerProxy.cpp165 RefPtr<ImmutableArray> resultArray = ImmutableArray::adopt(result); in didGetDatabasesByOrigin() local
166 callback->performCallbackWithReturnValue(resultArray.get()); in didGetDatabasesByOrigin()
/external/webkit/Source/JavaScriptCore/runtime/
DArrayPrototype.cpp663 JSArray* resultArray = constructEmptyArray(exec); in arrayProtoFuncFilter() local
682 resultArray->put(exec, filterIndex++, v); in arrayProtoFuncFilter()
685 return JSValue::encode(resultArray); in arrayProtoFuncFilter()
703 resultArray->put(exec, filterIndex++, v); in arrayProtoFuncFilter()
705 return JSValue::encode(resultArray); in arrayProtoFuncFilter()
723 JSArray* resultArray = constructEmptyArray(exec, length); in arrayProtoFuncMap() local
738 resultArray->JSArray::put(exec, k, cachedCall.call()); in arrayProtoFuncMap()
759 resultArray->put(exec, k, result); in arrayProtoFuncMap()
762 return JSValue::encode(resultArray); in arrayProtoFuncMap()
/external/webkit/Source/WebKit2/UIProcess/Plugins/
DWebPluginSiteDataManager.cpp190 RefPtr<ImmutableArray> resultArray = ImmutableArray::adopt(sitesWK); in didGetSitesWithData() local
191 callback->performCallbackWithReturnValue(resultArray.get()); in didGetSitesWithData()
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
DPriorityQueueTest.java52 Object[] resultArray = iterResult.toArray(); in test_iterator() local
54 Arrays.sort(resultArray); in test_iterator()
55 assertTrue(Arrays.equals(array, resultArray)); in test_iterator()
/external/guava/guava-tests/test/com/google/common/cache/
DCacheLoadingTest.java1835 List<Object> resultArray = doConcurrentGet(cache, "bar", count, startSignal); in testConcurrentLoadingDefault() local
1839 assertSame("result(" + i + ") didn't match expected", result, resultArray.get(i)); in testConcurrentLoadingDefault()