Home
last modified time | relevance | path

Searched refs:nextToken (Results 1 – 18 of 18) sorted by relevance

/packages/services/Car/service/src/com/android/car/storagemonitoring/
DProcfsUidIoStatsProvider.java71 int uid = Integer.valueOf(tokenizer.nextToken()); in load()
72 long foreground_rchar = Long.valueOf(tokenizer.nextToken()); in load()
73 long foreground_wchar = Long.valueOf(tokenizer.nextToken()); in load()
74 long foreground_read_bytes = Long.valueOf(tokenizer.nextToken()); in load()
75 long foreground_write_bytes = Long.valueOf(tokenizer.nextToken()); in load()
76 long background_rchar = Long.valueOf(tokenizer.nextToken()); in load()
77 long background_wchar = Long.valueOf(tokenizer.nextToken()); in load()
78 long background_read_bytes = Long.valueOf(tokenizer.nextToken()); in load()
79 long background_write_bytes = Long.valueOf(tokenizer.nextToken()); in load()
80 long foreground_fsync = Long.valueOf(tokenizer.nextToken()); in load()
[all …]
/packages/apps/Gallery2/src/com/android/gallery3d/data/
DFace.java37 mPosition.left = Integer.parseInt(tokenizer.nextToken()); in Face()
38 mPosition.top = Integer.parseInt(tokenizer.nextToken()); in Face()
39 mPosition.right = Integer.parseInt(tokenizer.nextToken()); in Face()
40 mPosition.bottom = Integer.parseInt(tokenizer.nextToken()); in Face()
/packages/providers/UserDictionaryProvider/src/com/android/providers/userdictionary/
DDictionaryBackupAgent.java225 final String word = st.nextToken(); in restoreDictionary()
226 final String frequency = st.nextToken(); in restoreDictionary()
230 if (st.hasMoreTokens()) locale = st.nextToken(); in restoreDictionary()
232 if (st.hasMoreTokens()) appid = st.nextToken(); in restoreDictionary()
233 if (st.hasMoreTokens()) shortcut = st.nextToken(); in restoreDictionary()
/packages/apps/UnifiedEmail/src/org/apache/commons/io/
DFileSystemUtils.java346 tok.nextToken(); // Ignore Filesystem in freeSpaceUnix()
348 tok.nextToken(); // Ignore 1K-blocks in freeSpaceUnix()
349 tok.nextToken(); // Ignore Used in freeSpaceUnix()
350 String freeSpace = tok.nextToken(); in freeSpaceUnix()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
DBinaryDictionary.java424 public GetNextWordPropertyResult(final WordProperty wordProperty, final int nextToken) { in GetNextWordPropertyResult() argument
426 mNextToken = nextToken; in GetNextWordPropertyResult()
437 final int nextToken = getNextWordNative(mNativeDict, token, codePoints, in getNextWordProperty() local
441 getWordProperty(word, isBeginningOfSentence[0]), nextToken); in getNextWordProperty()
/packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/v2/
Dpatricia_trie_policy.cpp505 const int nextToken = token + 1; in getNextWordAndNextToken() local
506 if (nextToken >= terminalPtNodePositionsVectorSize) { in getNextWordAndNextToken()
511 return nextToken; in getNextWordAndNextToken()
/packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/v4/
Dver4_patricia_trie_policy.cpp594 const int nextToken = token + 1; in getNextWordAndNextToken() local
595 if (nextToken >= terminalPtNodePositionsVectorSize) { in getNextWordAndNextToken()
600 return nextToken; in getNextWordAndNextToken()
/packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/backward/v402/
Dver4_patricia_trie_policy.cpp643 const int nextToken = token + 1; in getNextWordAndNextToken() local
644 if (nextToken >= terminalPtNodePositionsVectorSize) { in getNextWordAndNextToken()
649 return nextToken; in getNextWordAndNextToken()
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DNameSplitter.java237 final String token = nextToken(); in NameTokenizer()
422 String token = tokenizer.nextToken(); in splitChineseName()
465 String token = tokenizer.nextToken(); in splitJapaneseName()
488 String token = tokenizer.nextToken(); in splitKoreanName()
/packages/apps/Dialer/java/com/android/dialer/assisteddialing/
DCountryCodeProvider.java83 String foundLocale = tokenizer.nextToken(); in parseConfigProviderCountryCodes()
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
DStringUtil.java249 list[i] = tokenizer.nextToken().trim(); in split()
251 list[i] = tokenizer.nextToken(); in split()
359 String token = tokenizer.nextToken(); in splitInts()
371 String token = tokenizer.nextToken(); in splitLongs()
2303 String tok = st.nextToken(); in parseDelimitedList()
/packages/inputmethods/LatinIME/native/jni/
Dcom_android_inputmethod_latin_BinaryDictionary.cpp314 const int nextToken = dictionary->getNextWordAndNextToken(token, wordCodePoints, in latinime_BinaryDictionary_getNextWord() local
325 return nextToken; in latinime_BinaryDictionary_getNextWord()
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/users/
DAppRestrictionsFragment.java528 final String packageName = st.nextToken(); in onPreferenceChange()
529 final String restrictionKey = st.nextToken(); in onPreferenceChange()
/packages/apps/Settings/src/com/android/settings/users/
DAppRestrictionsFragment.java528 final String packageName = st.nextToken(); in onPreferenceChange()
529 final String restrictionKey = st.nextToken(); in onPreferenceChange()
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/users/
DAppRestrictionsFragment.java617 final String packageName = st.nextToken(); in onPreferenceChange()
618 final String restrictionKey = st.nextToken(); in onPreferenceChange()
/packages/apps/UnifiedEmail/src/com/android/emailcommon/utility/
DTextUtilities.java578 terms.add(new SearchTerm(st.nextToken())); in highlightTerms()
/packages/apps/LegacyCamera/src/com/android/camera/
DUtil.java458 Log.d(TAG, tokenizer.nextToken()); in dumpParameters()
/packages/apps/Launcher3/src/com/android/launcher3/
DUtilities.java741 array[count] = Integer.parseInt(tokenizer.nextToken()); in getIntArrayFromString()