| /packages/apps/DeskClock/src/com/android/deskclock/data/ |
| CityDAO.java | 118 final String[] cityParts = cityString.split("[|]"); 153 final String[] parts = formattedName.split("[=:]");
|
| /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/ |
| SpannableStringUtils.java | 57 // of a word. But the spans have been split into two by the getText{Before,After}Cursor 139 * {@code charSequence.toString().split(regex, preserveTrailingEmptySegments ? -1 : 0)} 142 * @param charSequence the character sequence to be split. 150 public static CharSequence[] split(final CharSequence charSequence, final String regex, method in class:SpannableStringUtils 155 return charSequence.toString().split(regex, preserveTrailingEmptySegments ? -1 : 0); 158 // Hereafter, emulate String.split for CharSequence.
|
| /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/ |
| PunctuationTests.java | 178 // Split by double quote, so that we can type the double quotes individually. 179 for (final String partToType : STRING_TO_TYPE.split("\"")) { 180 // Split at word boundaries. This regexp means "anywhere that is preceded 186 final String[] wordsToType = partToType.split("(?<=\\w)(?!\\w)|(?<!\\w)(?=\\w)");
|
| /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ProfileData/ |
| SampleProfReader.h | 289 if (Profiles.count(F.getName().split('.').first)) 290 return &Profiles[(F.getName().split('.').first)];
|
| /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/ProfileData/ |
| SampleProfReader.h | 289 if (Profiles.count(F.getName().split('.').first)) 290 return &Profiles[(F.getName().split('.').first)];
|
| /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/ProfileData/ |
| SampleProfReader.h | 289 if (Profiles.count(F.getName().split('.').first)) 290 return &Profiles[(F.getName().split('.').first)];
|
| /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/ProfileData/ |
| SampleProfReader.h | 289 if (Profiles.count(F.getName().split('.').first)) 290 return &Profiles[(F.getName().split('.').first)];
|
| /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/ProfileData/ |
| SampleProfReader.h | 289 if (Profiles.count(F.getName().split('.').first)) 290 return &Profiles[(F.getName().split('.').first)];
|
| /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/ProfileData/ |
| SampleProfReader.h | 289 if (Profiles.count(F.getName().split('.').first)) 290 return &Profiles[(F.getName().split('.').first)];
|
| /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/ProfileData/ |
| SampleProfReader.h | 289 if (Profiles.count(F.getName().split('.').first)) 290 return &Profiles[(F.getName().split('.').first)];
|
| /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ProfileData/ |
| SampleProfReader.h | 289 if (Profiles.count(F.getName().split('.').first)) 290 return &Profiles[(F.getName().split('.').first)];
|
| /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/ProfileData/ |
| SampleProfReader.h | 289 if (Profiles.count(F.getName().split('.').first)) 290 return &Profiles[(F.getName().split('.').first)];
|
| /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/ProfileData/ |
| SampleProfReader.h | 289 if (Profiles.count(F.getName().split('.').first)) 290 return &Profiles[(F.getName().split('.').first)];
|
| /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/ProfileData/ |
| SampleProfReader.h | 289 if (Profiles.count(F.getName().split('.').first)) 290 return &Profiles[(F.getName().split('.').first)];
|
| /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/ProfileData/ |
| SampleProfReader.h | 289 if (Profiles.count(F.getName().split('.').first)) 290 return &Profiles[(F.getName().split('.').first)];
|
| /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/ProfileData/ |
| SampleProfReader.h | 289 if (Profiles.count(F.getName().split('.').first)) 290 return &Profiles[(F.getName().split('.').first)];
|
| /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/ProfileData/ |
| SampleProfReader.h | 289 if (Profiles.count(F.getName().split('.').first)) 290 return &Profiles[(F.getName().split('.').first)];
|
| /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/ |
| tkFileDialog.py | 64 path, file = os.path.split(result) 85 path, file = os.path.split(result[0]) 90 # Need to split result explicitly
|
| /prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
| test__locale.py | 13 maj, min, mic = [int(part) for part in uname()[2].split(".")] 31 a = loc.split(".")
|
| test_linecache.py | 13 TESTS = TESTS.split() 15 MODULES = "linecache abc".split()
|
| /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/ |
| tkFileDialog.py | 64 path, file = os.path.split(result) 85 path, file = os.path.split(result[0]) 90 # Need to split result explicitly
|
| /prebuilts/gdb/linux-x86/lib/python2.7/test/ |
| test__locale.py | 13 maj, min, mic = [int(part) for part in uname()[2].split(".")] 31 a = loc.split(".")
|
| test_linecache.py | 13 TESTS = TESTS.split() 15 MODULES = "linecache abc".split()
|
| /prebuilts/go/darwin-x86/src/go/types/ |
| eval_test.go | 175 str, typ := split(s[2:len(s)-2], ", ") 176 str, val := split(str, "=>") 184 // split splits string s at the first occurrence of s. 185 func split(s, sep string) (string, string) { func
|
| /prebuilts/go/linux-x86/src/go/types/ |
| eval_test.go | 175 str, typ := split(s[2:len(s)-2], ", ") 176 str, val := split(str, "=>") 184 // split splits string s at the first occurrence of s. 185 func split(s, sep string) (string, string) { func
|