Home
last modified time | relevance | path

Searched refs:nsDesc (Results 1 – 3 of 3) sorted by relevance

/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DNumberFormat.java1477 String nsDesc; in createInstance() local
1483 nsDesc = ns.getDescription(); in createInstance()
1484 int firstSlash = nsDesc.indexOf("/"); in createInstance()
1485 int lastSlash = nsDesc.lastIndexOf("/"); in createInstance()
1488 String nsLocID = nsDesc.substring(0,firstSlash); in createInstance()
1489 nsRuleSetGroup = nsDesc.substring(firstSlash+1,lastSlash); in createInstance()
1490 nsRuleSetName = nsDesc.substring(lastSlash+1); in createInstance()
1498 nsRuleSetName = nsDesc; in createInstance()
/external/icu/android_icu4j/src/main/java/android/icu/text/
DNumberFormat.java1325 String nsDesc; in createInstance() local
1331 nsDesc = ns.getDescription(); in createInstance()
1332 int firstSlash = nsDesc.indexOf("/"); in createInstance()
1333 int lastSlash = nsDesc.lastIndexOf("/"); in createInstance()
1336 String nsLocID = nsDesc.substring(0,firstSlash); in createInstance()
1337 nsRuleSetGroup = nsDesc.substring(firstSlash+1,lastSlash); in createInstance()
1338 nsRuleSetName = nsDesc.substring(lastSlash+1); in createInstance()
1346 nsRuleSetName = nsDesc; in createInstance()
/external/icu/icu4c/source/i18n/
Dnumfmt.cpp1421 UnicodeString nsDesc; in makeInstance() local
1427 nsDesc.setTo(ns->getDescription()); in makeInstance()
1428 int32_t firstSlash = nsDesc.indexOf(gSlash); in makeInstance()
1429 int32_t lastSlash = nsDesc.lastIndexOf(gSlash); in makeInstance()
1433 nsLocID.appendInvariantChars(nsDesc.tempSubString(0, firstSlash), status); in makeInstance()
1434 nsRuleSetGroup.setTo(nsDesc,firstSlash+1,lastSlash-firstSlash-1); in makeInstance()
1435 nsRuleSetName.setTo(nsDesc,lastSlash+1); in makeInstance()
1445 nsRuleSetName.setTo(nsDesc); in makeInstance()