Searched refs:firstSlash (Results 1 – 5 of 5) sorted by relevance
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | NumberFormat.java | 1484 int firstSlash = nsDesc.indexOf("/"); in createInstance() local 1487 if ( lastSlash > firstSlash ) { in createInstance() 1488 String nsLocID = nsDesc.substring(0,firstSlash); in createInstance() 1489 nsRuleSetGroup = nsDesc.substring(firstSlash+1,lastSlash); in createInstance()
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | NumberFormat.java | 1332 int firstSlash = nsDesc.indexOf("/"); in createInstance() local 1335 if ( lastSlash > firstSlash ) { in createInstance() 1336 String nsLocID = nsDesc.substring(0,firstSlash); in createInstance() 1337 nsRuleSetGroup = nsDesc.substring(firstSlash+1,lastSlash); in createInstance()
|
/external/icu/icu4c/source/i18n/ |
D | numfmt.cpp | 1428 int32_t firstSlash = nsDesc.indexOf(gSlash); in makeInstance() local 1430 if ( lastSlash > firstSlash ) { in makeInstance() 1433 nsLocID.appendInvariantChars(nsDesc.tempSubString(0, firstSlash), status); in makeInstance() 1434 nsRuleSetGroup.setTo(nsDesc,firstSlash+1,lastSlash-firstSlash-1); in makeInstance()
|
/external/conscrypt/openjdk-integ-tests/src/test/java/org/conscrypt/javax/crypto/ |
D | CipherTest.java | 1046 final int firstSlash = algorithm.indexOf('/'); in test_getInstance() local 1047 if (firstSlash == -1) { in test_getInstance() 1050 final String baseCipherName = algorithm.substring(0, firstSlash); in test_getInstance()
|
/external/conscrypt/repackaged/openjdk-integ-tests/src/test/java/com/android/org/conscrypt/javax/crypto/ |
D | CipherTest.java | 1050 final int firstSlash = algorithm.indexOf('/'); in test_getInstance() local 1051 if (firstSlash == -1) { in test_getInstance() 1054 final String baseCipherName = algorithm.substring(0, firstSlash); in test_getInstance()
|