Home
last modified time | relevance | path

Searched refs:cacheDescriptorList (Results 1 – 5 of 5) sorted by relevance

/third_party/skia/third_party/externals/icu/source/common/
Dserv.cpp467 UVectorDeleter cacheDescriptorList; in getKey() local
527 if (cacheDescriptorList._obj == NULL) { in getKey()
528 cacheDescriptorList._obj = new UVector(uprv_deleteUObject, NULL, 5, status); in getKey()
539 cacheDescriptorList._obj->addElement(idToCache, status); in getKey()
553 if (cacheDescriptorList._obj != NULL) { in getKey()
554 for (int32_t i = cacheDescriptorList._obj->size(); --i >= 0;) { in getKey()
555 … UnicodeString* desc = (UnicodeString*)cacheDescriptorList._obj->elementAt(i); in getKey()
563 cacheDescriptorList._obj->removeElementAt(i); in getKey()
/third_party/node/deps/icu-small/source/common/
Dserv.cpp456 LocalPointer<UVector> cacheDescriptorList; in getKey() local
515 if (cacheDescriptorList.isNull()) { in getKey()
516cacheDescriptorList.adoptInsteadAndCheckErrorCode(new UVector(uprv_deleteUObject, nullptr, 5, stat… in getKey()
530 cacheDescriptorList->adoptElement(idToCache.orphan(), status); in getKey()
544 if (cacheDescriptorList.isValid()) { in getKey()
545 for (int32_t i = cacheDescriptorList->size(); --i >= 0;) { in getKey()
546 UnicodeString* desc = (UnicodeString*)cacheDescriptorList->elementAt(i); in getKey()
554 cacheDescriptorList->removeElementAt(i); in getKey()
/third_party/icu/icu4c/source/common/
Dserv.cpp456 LocalPointer<UVector> cacheDescriptorList; in getKey() local
515 if (cacheDescriptorList.isNull()) { in getKey()
516cacheDescriptorList.adoptInsteadAndCheckErrorCode(new UVector(uprv_deleteUObject, NULL, 5, status)… in getKey()
530 cacheDescriptorList->adoptElement(idToCache.orphan(), status); in getKey()
544 if (cacheDescriptorList.isValid()) { in getKey()
545 for (int32_t i = cacheDescriptorList->size(); --i >= 0;) { in getKey()
546 UnicodeString* desc = (UnicodeString*)cacheDescriptorList->elementAt(i); in getKey()
554 cacheDescriptorList->removeElementAt(i); in getKey()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
DICUService.java422 ArrayList<String> cacheDescriptorList = null; in getKey() local
480 if (cacheDescriptorList == null) { in getKey()
481 cacheDescriptorList = new ArrayList<String>(5); in getKey()
483 cacheDescriptorList.add(currentDescriptor); in getKey()
491 if (cacheDescriptorList != null) { in getKey()
492 for (String desc : cacheDescriptorList) { in getKey()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DICUService.java417 ArrayList<String> cacheDescriptorList = null; in getKey() local
475 if (cacheDescriptorList == null) { in getKey()
476 cacheDescriptorList = new ArrayList<String>(5); in getKey()
478 cacheDescriptorList.add(currentDescriptor); in getKey()
486 if (cacheDescriptorList != null) { in getKey()
487 for (String desc : cacheDescriptorList) { in getKey()