Home
last modified time | relevance | path

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

/external/chromium_org/third_party/icu/source/i18n/
Dcsdetect.cpp149 : textIn(new InputText(status)), resultArray(NULL), in CharsetDetector()
163 resultArray = (CharsetMatch **)uprv_malloc(sizeof(CharsetMatch *)*fCSRecognizers_size); in CharsetDetector()
165 if (resultArray == NULL) { in CharsetDetector()
171 resultArray[i] = new CharsetMatch(); in CharsetDetector()
173 if (resultArray[i] == NULL) { in CharsetDetector()
185 delete resultArray[i]; in ~CharsetDetector()
188 uprv_free(resultArray); in ~CharsetDetector()
235 return resultArray[0]; in detect()
258 if (csr->match(textIn, resultArray[resultCount])) { in detectAll()
264 …uprv_sortArray(resultArray, resultCount, sizeof resultArray[0], charsetMatchComparator, NULL, TRUE… in detectAll()
[all …]
Dcsdetect.h25 CharsetMatch **resultArray; variable
Dmsgfmt.cpp1382 LocalArray<Formattable> resultArray(new Formattable[argTypeCount ? argTypeCount : 1]); in parse() local
1405 return resultArray.orphan(); in parse()
1422 Formattable& argResult = resultArray[argNumber]; in parse()
/external/icu/icu4c/source/i18n/
Dcsdetect.cpp149 : textIn(new InputText(status)), resultArray(NULL), in CharsetDetector()
163 resultArray = (CharsetMatch **)uprv_malloc(sizeof(CharsetMatch *)*fCSRecognizers_size); in CharsetDetector()
165 if (resultArray == NULL) { in CharsetDetector()
171 resultArray[i] = new CharsetMatch(); in CharsetDetector()
173 if (resultArray[i] == NULL) { in CharsetDetector()
185 delete resultArray[i]; in ~CharsetDetector()
188 uprv_free(resultArray); in ~CharsetDetector()
235 return resultArray[0]; in detect()
258 if (csr->match(textIn, resultArray[resultCount])) { in detectAll()
264 …uprv_sortArray(resultArray, resultCount, sizeof resultArray[0], charsetMatchComparator, NULL, TRUE… in detectAll()
[all …]
Dcsdetect.h25 CharsetMatch **resultArray; variable
Dmsgfmt.cpp1382 LocalArray<Formattable> resultArray(new Formattable[argTypeCount ? argTypeCount : 1]); in parse() local
1405 return resultArray.orphan(); in parse()
1422 Formattable& argResult = resultArray[argNumber]; in parse()
/external/chromium_org/v8/test/webkit/
Ddfg-inline-function-dot-caller-expected.txt29 PASS resultArray.length is 4
30 PASS resultArray[3] is "g"
31 PASS resultArray[2] is "makeInlinableCall"
32 PASS resultArray[1] is "inlineable"
33 PASS resultArray[0] is "nonInlineable"
Ddfg-inline-function-dot-caller.js30 var resultArray = [] variable
41 resultArray.push(f.name);
/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/chromium_org/v8/src/
Dstring.js409 var resultArray = reusableReplaceArray;
410 if (resultArray) {
417 resultArray = new InternalArray(16);
422 resultArray);
426 reusableReplaceArray = resultArray;
479 resultArray.length = 0;
480 reusableReplaceArray = resultArray;
/external/chromium_org/third_party/WebKit/Source/wtf/text/
DStringBuilderTest.cpp111 const UChar resultArray[] = { U16_LEAD(frakturAChar), U16_TRAIL(frakturAChar), 'A' }; in TEST() local
112 … expectBuilderContent(String(resultArray, WTF_ARRAY_LENGTH(resultArray)), builderForUChar32Append); in TEST()
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
Daria_util.js626 var resultArray = [];
630 resultArray = resultArray.concat(result);
633 return resultArray;
/external/jhead/
Dmain.c479 jlongArray resultArray = NULL; in getThumbnailRange() local
492 resultArray = (*env)->NewLongArray(env, 2); in getThumbnailRange()
493 if (resultArray == NULL) { in getThumbnailRange()
497 (*env)->SetLongArrayRegion(env, resultArray, 0, 2, result); in getThumbnailRange()
504 return resultArray; in getThumbnailRange()
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
DScriptController.cpp631 v8::Local<v8::Array> resultArray = v8::Array::New(m_isolate, sources.size()); in executeScriptInIsolatedWorld() local
637 resultArray->Set(i, evaluationResult); in executeScriptInIsolatedWorld()
641 for (size_t i = 0; i < resultArray->Length(); ++i) in executeScriptInIsolatedWorld()
642 results->append(handleScope.Escape(resultArray->Get(i))); in executeScriptInIsolatedWorld()
/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()