HomeSort by relevance Sort by last modified time
    Searched refs:queryLength (Results 1 - 16 of 16) sorted by null

  /packages/apps/Contacts/src/com/android/contacts/logging/
SearchState.java 29 public int queryLength;
74 .add("queryLength", queryLength)
91 dest.writeInt(queryLength);
101 queryLength = source.readInt();
  /packages/apps/Launcher3/src/com/android/launcher3/allapps/
DefaultAppSearchAlgorithm.java 71 int queryLength = query.length();
76 if (titleLength < queryLength || queryLength <= 0) {
84 int end = titleLength - queryLength;
91 title.substring(i, i + queryLength).equalsIgnoreCase(query)) {
  /packages/apps/Dialer/java/com/android/dialer/p13n/inference/protocol/
P13nRanker.java 44 * @param queryLength length of the search query that resulted in the cursor data, if below 0,
46 * queryLength is greater than zero.
52 Cursor rankCursor(@NonNull Cursor phoneQueryResults, int queryLength);
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
QueryParameterUtils.java 41 int queryLength = query.length();
54 if (queryLength == index) {
  /packages/apps/Dialer/java/com/android/dialer/smartdial/
SmartDialNameMatcher.java 262 final int queryLength = query.length();
264 if (nameLength < queryLength) {
268 if (queryLength == 0) {
290 while (nameStart < nameLength && queryStart < queryLength) {
332 if (queryStart == queryLength - 1) {
337 new SmartDialMatchPosition(tokenStart, queryLength + tokenStart + seperatorCount));
  /packages/apps/Dialer/java/com/android/dialer/p13n/inference/
P13nRanking.java 76 public Cursor rankCursor(@NonNull Cursor phoneQueryResults, int queryLength) {
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/interface/
dictionary_structure_with_buffer_policy.h 104 virtual void getProperty(const char *const query, const int queryLength, char *const outResult,
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/dictionary/
dictionary.h 104 void getProperty(const char *const query, const int queryLength, char *const outResult,
dictionary.cpp 180 void Dictionary::getProperty(const char *const query, const int queryLength, char *const outResult,
183 return mDictionaryStructureWithBufferPolicy->getProperty(query, queryLength, outResult,
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/backward/v402/
ver4_patricia_trie_policy.h 130 void getProperty(const char *const query, const int queryLength, char *const outResult,
ver4_patricia_trie_policy.cpp 524 void Ver4PatriciaTriePolicy::getProperty(const char *const query, const int queryLength,
526 const int compareLength = queryLength + 1 /* terminator */;
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/v2/
patricia_trie_policy.h 136 void getProperty(const char *const query, const int queryLength, char *const outResult,
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/v4/
ver4_patricia_trie_policy.h 109 void getProperty(const char *const query, const int queryLength, char *const outResult,
ver4_patricia_trie_policy.cpp 479 void Ver4PatriciaTriePolicy::getProperty(const char *const query, const int queryLength,
481 const int compareLength = queryLength + 1 /* terminator */;
  /packages/apps/Contacts/src/com/android/contacts/list/
MultiSelectContactsListFragment.java 227 searchState.queryLength = adapter.getQueryString() == null
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactsProvider2.java     [all...]

Completed in 1182 milliseconds