Searched refs:resultArray (Results 1 – 9 of 9) sorted by relevance
/external/icu4c/i18n/ |
D | csdetect.cpp | 173 : textIn(new InputText(status)), resultArray(NULL), in CharsetDetector() 186 resultArray = (CharsetMatch **)uprv_malloc(sizeof(CharsetMatch *)*fCSRecognizers_size); in CharsetDetector() 188 if (resultArray == NULL) { in CharsetDetector() 194 resultArray[i] = new CharsetMatch(); in CharsetDetector() 196 if (resultArray[i] == NULL) { in CharsetDetector() 208 delete resultArray[i]; in ~CharsetDetector() 211 uprv_free(resultArray); in ~CharsetDetector() 254 return resultArray[0]; in detect() 283 resultArray[resultCount++]->set(textIn, csr, confidence); in detectAll() 288 resultArray[i]->set(textIn, 0, 0); in detectAll() [all …]
|
D | csrsbcs.cpp | 1252 uint8_t *resultArray = unshapeLamAlef(inputBytes, inputBytesLength, length); in unshape() local 1254 if (resultArray != NULL) { in unshape() 1256 resultArray[i] = unshapeMap_IBM420[resultArray[i]]; in unshape() 1260 return resultArray; in unshape()
|
D | csdetect.h | 25 CharsetMatch **resultArray; variable
|
D | msgfmt.cpp | 1321 Formattable *resultArray = new Formattable[argTypeCount ? argTypeCount : 1]; in parse() local 1329 if (resultArray == NULL) { in parse() 1382 resultArray[argNum].setString(buffer); in parse() 1393 fmt->parseObject(source, resultArray[argNum], tempPos); in parse() 1408 return resultArray; in parse() 1414 delete [] resultArray; in parse()
|
/external/v8/src/ |
D | string.js | 365 var resultArray = reusableReplaceArray; 366 if (resultArray) { 373 resultArray = new InternalArray(16); 378 resultArray); 382 reusableReplaceArray = resultArray; 425 resultArray.length = 0; 426 reusableReplaceArray = resultArray;
|
/external/webkit/Source/WebKit2/UIProcess/ |
D | WebDatabaseManagerProxy.cpp | 165 RefPtr<ImmutableArray> resultArray = ImmutableArray::adopt(result); in didGetDatabasesByOrigin() local 166 callback->performCallbackWithReturnValue(resultArray.get()); in didGetDatabasesByOrigin()
|
/external/webkit/Source/JavaScriptCore/runtime/ |
D | ArrayPrototype.cpp | 663 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/ |
D | WebPluginSiteDataManager.cpp | 190 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/ |
D | PriorityQueueTest.java | 52 Object[] resultArray = iterResult.toArray(); in test_iterator() local 54 Arrays.sort(resultArray); in test_iterator() 55 assertTrue(Arrays.equals(array, resultArray)); in test_iterator()
|