| /prebuilts/gdb/linux-x86/include/python2.7/ |
| unicodeobject.h | 401 /* Check if substring matches at given offset. the offset must be 402 valid, and the substring must not be empty */ 404 #define Py_UNICODE_MATCH(string, offset, substring) \ 405 ((*((string)->str + (offset)) == *((substring)->str)) && \ 406 ((*((string)->str + (offset) + (substring)->length-1) == *((substring)->str + (substring)->length-1))) && \ 407 !memcmp((string)->str + (offset), (substring)->str, (substring)->length*sizeof(Py_UNICODE))) [all...] |
| /prebuilts/python/darwin-x86/2.7.5/include/python2.7/ |
| unicodeobject.h | 401 /* Check if substring matches at given offset. the offset must be 402 valid, and the substring must not be empty */ 404 #define Py_UNICODE_MATCH(string, offset, substring) \ 405 ((*((string)->str + (offset)) == *((substring)->str)) && \ 406 ((*((string)->str + (offset) + (substring)->length-1) == *((substring)->str + (substring)->length-1))) && \ 407 !memcmp((string)->str + (offset), (substring)->str, (substring)->length*sizeof(Py_UNICODE))) [all...] |
| /prebuilts/python/linux-x86/2.7.5/include/python2.7/ |
| unicodeobject.h | 401 /* Check if substring matches at given offset. the offset must be 402 valid, and the substring must not be empty */ 404 #define Py_UNICODE_MATCH(string, offset, substring) \ 405 ((*((string)->str + (offset)) == *((substring)->str)) && \ 406 ((*((string)->str + (offset) + (substring)->length-1) == *((substring)->str + (substring)->length-1))) && \ 407 !memcmp((string)->str + (offset), (substring)->str, (substring)->length*sizeof(Py_UNICODE))) [all...] |
| /external/icu/android_icu4j/src/main/java/android/icu/impl/ |
| ICUResourceBundle.java | 623 String locstr = s.substring(0, s.length() - 4); 679 folder = baseName.substring(ICUData.ICU_BASE_NAME.length() + 1); [all...] |
| /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
| ICUResourceBundle.java | 619 String locstr = s.substring(0, s.length() - 4); 675 folder = baseName.substring(ICUData.ICU_BASE_NAME.length() + 1); [all...] |
| /prebuilts/devtools/tools/lib/ |
| hamcrest-core-1.3.jar | |
| /prebuilts/misc/common/robolectric/3.1.1/lib/ |
| hamcrest-core-1.3.jar | |
| /prebuilts/misc/common/robolectric/3.4.2/lib/ |
| hamcrest-core-1.3.jar | |
| /prebuilts/misc/common/robolectric/3.5.1/lib/ |
| hamcrest-core-1.3.jar | |
| /prebuilts/misc/common/robolectric/3.6.1/lib/ |
| hamcrest-core-1.3.jar | |
| /prebuilts/tools/common/m2/repository/org/hamcrest/hamcrest-core/1.3/ |
| hamcrest-core-1.3.jar | |
| /cts/tools/vm-tests-tf/src/util/build/ |
| BuildDalvikSuite.java | 179 packageName = packageName.substring(packageName.lastIndexOf('.')); 300 String pName = fqcn.substring(0, lastDotPos); 301 String classOnlyName = fqcn.substring(lastDotPos + 1); 373 comment = "Normal #" + method.substring(5); 376 comment = "Boundary #" + method.substring(5); 379 comment = "Exception #" + method.substring(5); 382 comment = "Verifier #" + method.substring(7); 434 details = details.substring(0, 1).toUpperCase() 435 + details.substring(1); 591 String opcodeName = classOnlyName.substring(5) [all...] |
| /external/google-tv-pairing-protocol/java/src/com/google/polo/json/ |
| JSONObject.java | 329 key = name.substring(3); 331 key = name.substring(2); 339 key = key.substring(0, 1).toLowerCase() + 340 key.substring(1); 496 s = s.substring(0, s.length() - 1); 499 s = s.substring(0, s.length() - 1); 766 s = s.substring(0, s.length() - 1); 769 s = s.substring(0, s.length() - 1); [all...] |
| /external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/ |
| ICUJDKCompare.java | 163 File f = new File(namelist.substring(1)); 197 File f = new File(namelist.substring(1)); 244 String srcSuffix = name.substring(0, n).trim(); 245 String trgSuffix = name.substring(n+1).trim(); 253 trgName += srcSuffix.substring(0, jx+1) + trgSuffix; 583 return name.substring(name.lastIndexOf('.') + 1); 642 name = name.substring(srcPrefix.length()); 683 name = name.substring(srcPrefix.length()); 706 String fieldname = key.substring(0, key.indexOf(' ')); 768 n = n.substring(n.lastIndexOf('.') + 1) [all...] |
| APIInfo.java | 220 version = val.substring(idx + 1); 221 val = val.substring(0, idx); 448 tbuf.append(sig.substring(i)); 451 tbuf.append(sig.substring(i, n)); 539 buf.append(prepText(xsig.substring(0, n), html)); 549 buf.append(prepText(xsig.substring(n), html));
|
| /packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
| NameSplitter.java | 441 name.familyName = fullName.substring(0, 1); 442 name.givenNames = fullName.substring(1); 444 name.familyName = fullName.substring(0, 1); 445 name.middleName = fullName.substring(1, 2); 446 name.givenNames = fullName.substring(2); 448 name.familyName = fullName.substring(0, 2); 449 name.middleName = fullName.substring(2, 3); 450 name.givenNames = fullName.substring(3); 511 name.familyName = fullName.substring(0, familyNameLength); 513 name.givenNames = fullName.substring(familyNameLength) [all...] |
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/ |
| unicodeobject.c | 6401 PyUnicodeObject *substring; local 6597 PyUnicodeObject *substring; local 6677 PyUnicodeObject *substring; local 7345 PyUnicodeObject *substring; local 7373 PyUnicodeObject *substring; local 7478 PyObject *substring = Py_None; local 7609 PyObject *substring = Py_None; local 7753 PyUnicodeObject *substring; local 7802 PyUnicodeObject *substring; local [all...] |
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/ |
| unicodeobject.c | 6306 PyUnicodeObject *substring; local 6502 PyUnicodeObject *substring; local 6569 PyUnicodeObject *substring; local 7237 PyUnicodeObject *substring; local 7265 PyUnicodeObject *substring; local 7370 PyObject *substring = Py_None; local 7501 PyObject *substring = Py_None; local 7645 PyUnicodeObject *substring; local 7694 PyUnicodeObject *substring; local [all...] |
| /external/python/cpython2/Objects/ |
| unicodeobject.c | 6414 PyUnicodeObject *substring; local 6610 PyUnicodeObject *substring; local 6690 PyUnicodeObject *substring; local 7358 PyUnicodeObject *substring; local 7386 PyUnicodeObject *substring; local 7491 PyObject *substring = Py_None; local 7622 PyObject *substring = Py_None; local 7766 PyUnicodeObject *substring; local 7815 PyUnicodeObject *substring; local [all...] |
| /cts/tools/utils/ |
| DescriptionGenerator.java | 373 String name = dotIndex == -1 ? suiteName : suiteName.substring(0, dotIndex); 385 testSuite.mName = suiteName.substring(dotIndex + 1, suiteName.length()); 438 setAttribute(caseNode, ATTRIBUTE_ABIS, abis.substring(1, abis.length() - 1)); 493 String name = suiteName.substring(0, dotIndex); 499 suiteName = suiteName.substring(dotIndex + 1, suiteName.length()); 602 description = description.substring(1, description.length() -1);
|
| /external/apache-xml/src/main/java/org/apache/xalan/transformer/ |
| TransformerIdentityImpl.java | 274 if (fileURL.substring(8).indexOf(":") >0) { 275 fileURL = fileURL.substring(8); 277 fileURL = fileURL.substring(7); 280 if (fileURL.substring(6).indexOf(":") >0) { 281 fileURL = fileURL.substring(6); 283 fileURL = fileURL.substring(5); [all...] |
| /external/icu/android_icu4j/src/main/java/android/icu/impl/number/ |
| DecimalQuantity_AbstractBCD.java | 467 _setToLong(Long.parseLong(dstr.charAt(0) + dstr.substring(2, expPos))); 468 scale += Integer.parseInt(dstr.substring(expPos + 1)) - (expPos - 1) + 1; 472 _setToLong(Long.parseLong(dstr.substring(2))); 480 _setToLong(Long.parseLong(dstr.substring(0, dstr.length() - 2))); 485 _setToLong(Long.parseLong(dstr.substring(0, decimalPos) + dstr.substring(decimalPos + 1)));
|
| /external/icu/android_icu4j/src/main/tests/android/icu/impl/number/ |
| DecimalQuantity_SimpleStorage.java | 154 primary = Long.parseLong(temp.charAt(0) + temp.substring(2, expPos)); 155 primaryScale = Integer.parseInt(temp.substring(expPos + 1)) - (expPos - 1) + 1; 160 primary = Long.parseLong(temp.substring(2)); // ignores leading zeros 170 primary = Long.parseLong(temp.substring(0, rightmostNonzeroDigitIndex + 1)); 184 primary = Long.parseLong(temp.substring(0, decimalPos) + temp.substring(decimalPos + 1));
|
| /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/ |
| DecimalQuantity_AbstractBCD.java | 465 _setToLong(Long.parseLong(dstr.charAt(0) + dstr.substring(2, expPos))); 466 scale += Integer.parseInt(dstr.substring(expPos + 1)) - (expPos - 1) + 1; 470 _setToLong(Long.parseLong(dstr.substring(2))); 478 _setToLong(Long.parseLong(dstr.substring(0, dstr.length() - 2))); 483 _setToLong(Long.parseLong(dstr.substring(0, decimalPos) + dstr.substring(decimalPos + 1)));
|
| /external/icu/icu4j/main/tests/core/src/com/ibm/icu/impl/number/ |
| DecimalQuantity_SimpleStorage.java | 151 primary = Long.parseLong(temp.charAt(0) + temp.substring(2, expPos)); 152 primaryScale = Integer.parseInt(temp.substring(expPos + 1)) - (expPos - 1) + 1; 157 primary = Long.parseLong(temp.substring(2)); // ignores leading zeros 167 primary = Long.parseLong(temp.substring(0, rightmostNonzeroDigitIndex + 1)); 181 primary = Long.parseLong(temp.substring(0, decimalPos) + temp.substring(decimalPos + 1));
|