HomeSort by relevance Sort by last modified time
    Searched refs:Words (Results 1 - 25 of 46) sorted by null

1 2

  /packages/providers/UserDictionaryProvider/src/com/android/providers/userdictionary/
UserDictionaryProvider.java 35 import android.provider.UserDictionary.Words;
40 * Provides access to a database of user defined words. Each item has a word and a frequency.
66 private static final String USERDICT_TABLE_NAME = "words";
72 private static final int WORDS = 1;
90 + Words._ID + " INTEGER PRIMARY KEY,"
91 + Words.WORD + " TEXT,"
92 + Words.FREQUENCY + " INTEGER,"
93 + Words.LOCALE + " TEXT,"
94 + Words.APP_ID + " INTEGER,"
95 + Words.SHORTCUT + " TEXT
    [all...]
DictionaryBackupAgent.java 40 import android.provider.UserDictionary.Words;
69 Words._ID,
70 Words.WORD,
71 Words.FREQUENCY,
72 Words.LOCALE,
73 Words.APP_ID,
74 Words.SHORTCUT
100 restoreDictionary(data, Words.CONTENT_URI);
151 Cursor cursor = getContentResolver().query(Words.CONTENT_URI, PROJECTION,
152 null, null, Words.WORD)
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
UserDictionary_WordsTest.java 35 UserDictionary.Words._ID,
36 UserDictionary.Words.WORD,
37 UserDictionary.Words.FREQUENCY,
38 UserDictionary.Words.LOCALE };
66 UserDictionary.Words.addWord(getContext(), word, frequency,
67 UserDictionary.Words.LOCALE_TYPE_ALL);
69 Cursor cursor = mContentResolver.query(UserDictionary.Words.CONTENT_URI, WORDS_PROJECTION,
70 UserDictionary.Words.WORD + "='" + word + "'", null, null);
72 mAddedBackup.add(Uri.withAppendedPath(UserDictionary.Words.CONTENT_URI,
91 UserDictionary.Words.addWord(mContext, word, frequency, shortcut, locale)
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
UserDictionaryCompatUtils.java 20 import android.provider.UserDictionary.Words;
26 // UserDictionary.Words#addWord(Context, String, int, String, Locale) was introduced
28 private static final Method METHOD_addWord = CompatUtils.getMethod(Words.class, "addWord",
35 CompatUtils.invoke(Words.class, null, METHOD_addWord, context, word, freq, shortcut,
41 localeType = Words.LOCALE_TYPE_ALL;
45 localeType = Words.LOCALE_TYPE_CURRENT;
47 localeType = Words.LOCALE_TYPE_ALL;
50 Words.addWord(context, word, freq, localeType);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/userdictionary/
UserDictionarySettings.java 55 { UserDictionary.Words._ID, UserDictionary.Words.WORD};
57 { UserDictionary.Words._ID, UserDictionary.Words.WORD, UserDictionary.Words.SHORTCUT};
66 UserDictionary.Words.WORD,
70 UserDictionary.Words.WORD, UserDictionary.Words.SHORTCUT
90 UserDictionary.Words.LOCALE + "=?";
92 UserDictionary.Words.LOCALE + " is null"
    [all...]
UserDictionaryAddWordContents.java 190 private static final String[] HAS_WORD_PROJECTION = { UserDictionary.Words.WORD };
191 private static final String HAS_WORD_SELECTION_ONE_LOCALE = UserDictionary.Words.WORD
192 + "=? AND " + UserDictionary.Words.LOCALE + "=?";
193 private static final String HAS_WORD_SELECTION_ALL_LOCALES = UserDictionary.Words.WORD
194 + "=? AND " + UserDictionary.Words.LOCALE + " is null";
200 cursor = context.getContentResolver().query(UserDictionary.Words.CONTENT_URI,
204 cursor = context.getContentResolver().query(UserDictionary.Words.CONTENT_URI,
UserDictionaryList.java 57 final Cursor cursor = activity.managedQuery(UserDictionary.Words.CONTENT_URI,
58 new String[] { UserDictionary.Words.LOCALE },
65 final int columnIndex = cursor.getColumnIndex(UserDictionary.Words.LOCALE);
  /packages/apps/Settings/src/com/android/settings/
UserDictionarySettings.java 49 UserDictionary.Words._ID, UserDictionary.Words.WORD, UserDictionary.Words.SHORTCUT
58 UserDictionary.Words.LOCALE + "=?";
60 UserDictionary.Words.LOCALE + " is null";
62 private static final String DELETE_SELECTION_WITH_SHORTCUT = UserDictionary.Words.WORD
63 + "=? AND " + UserDictionary.Words.SHORTCUT + "=?";
64 private static final String DELETE_SELECTION_WITHOUT_SHORTCUT = UserDictionary.Words.WORD
65 + "=? AND " + UserDictionary.Words.SHORTCUT + " is null OR "
66 + UserDictionary.Words.SHORTCUT + "=''"
    [all...]
  /external/chromium_org/tools/gyp/tools/Xcode/Specifications/
gyp.xclangspec 25 Words = (
38 Words = (
61 Words = ( ",", );
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
UserBinaryDictionary.java 28 import android.provider.UserDictionary.Words;
40 * An expandable dictionary that stores the words in the user dictionary provider into a binary
54 // TODO: use Words.SHORTCUT when we target JellyBean or above
60 Words.WORD,
62 Words.FREQUENCY,
66 Words.WORD,
67 Words.FREQUENCY,
114 cres.registerContentObserver(Words.CONTENT_URI, true, mObserver);
180 Words.CONTENT_URI, PROJECTION_QUERY, request.toString(), requestArguments, null);
195 final ContentProviderClient client = cr.acquireContentProviderClient(Words.CONTENT_URI)
    [all...]
  /packages/apps/Settings/src/com/android/settings/inputmethod/
UserDictionaryAddWordContents.java 162 UserDictionary.Words.addWord(context, newWord.toString(),
169 private static final String[] HAS_WORD_PROJECTION = { UserDictionary.Words.WORD };
170 private static final String HAS_WORD_SELECTION_ONE_LOCALE = UserDictionary.Words.WORD
171 + "=? AND " + UserDictionary.Words.LOCALE + "=?";
172 private static final String HAS_WORD_SELECTION_ALL_LOCALES = UserDictionary.Words.WORD
173 + "=? AND " + UserDictionary.Words.LOCALE + " is null";
179 cursor = context.getContentResolver().query(UserDictionary.Words.CONTENT_URI,
183 cursor = context.getContentResolver().query(UserDictionary.Words.CONTENT_URI,
UserDictionaryList.java 77 final Cursor cursor = activity.managedQuery(UserDictionary.Words.CONTENT_URI,
78 new String[] { UserDictionary.Words.LOCALE },
85 final int columnIndex = cursor.getColumnIndex(UserDictionary.Words.LOCALE);
  /external/valgrind/main/VEX/pub/
libvex_guest_x86.h 261 } Words;
  /frameworks/base/core/java/android/provider/
UserDictionary.java 28 * A provider of user defined words for input methods to use for predictive text input.
29 * Applications and input methods may add words into the dictionary. Words can have associated
47 * Contains the user defined words.
49 public static class Words implements BaseColumns {
54 Uri.parse("content://" + AUTHORITY + "/words");
57 * The MIME type of {@link #CONTENT_URI} providing a directory of words.
  /external/chromium_org/third_party/re2/re2/
prog.h 25 for (int i = 0; i < Words; i++)
43 static const int Words = (Bits+31)/32;
44 uint32 w_[Words];
  /external/regex-re2/re2/
prog.h 25 for (int i = 0; i < Words; i++)
43 static const int Words = (Bits+31)/32;
44 uint32 w_[Words];
  /external/chromium_org/v8/test/mjsunit/
keywords-and-reserved_words.js 28 // Test proper handling of keywords, future reserved words and
29 // future reserved words in strict mode as specific by 7.6.1 and 7.6.2
67 // Check for strict mode future reserved words.
148 // 7.6.1.2 Future Reserved Words (without "const")
161 // 7.6.1.2 Future Reserved Words, in strict mode only.
  /external/chromium_org/v8/test/webkit/
keywords-and-reserved_words.js 25 "This test verifies that keywords and reserved words match those specified in ES5 section 7.6."
59 // Check for strict mode future reserved words.
118 // Technically these are "Future Reserved Words"!
127 // Future Reserved Words, in strict mode only.
  /external/v8/test/mjsunit/
keywords-and-reserved_words.js 28 // Test proper handling of keywords, future reserved words and
29 // future reserved words in strict mode as specific by 7.6.1 and 7.6.2
67 // Check for strict mode future reserved words.
148 // 7.6.1.2 Future Reserved Words (without "const")
161 // 7.6.1.2 Future Reserved Words, in strict mode only.
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
AndroidWordLevelSpellCheckerSession.java 22 import android.provider.UserDictionary.Words;
109 cres.registerContentObserver(Words.CONTENT_URI, true, mObserver);
152 // Our dictionary also contains a few words with 0xF2; it would be best to check
153 // if that's correct, but a web search does return results for these words so
173 * This will loosely match URLs, numbers, symbols. To avoid always underlining words that
189 // Filter out words that don't start with a letter or an apostrophe
200 // words or a URI - in either case we don't want to spell check that
251 * corrections for the text passed as an argument. It may split or group words, and
320 // TODO: make a spell checker option to block offensive words or not
  /external/valgrind/main/coregrind/m_syswrap/
syswrap-x86-linux.c 456 out->LdtEnt.Words.word1 = entry_1;
457 out->LdtEnt.Words.word2 = entry_2;
672 if (gdt[idx].LdtEnt.Words.word1 == 0
673 && gdt[idx].LdtEnt.Words.word2 == 0)
    [all...]
  /external/libvorbis/doc/
02-bitpacking.tex 16 bitstream into an actual representation in fixed-width words.
19 \subsubsection{octets, bytes and words}
52 Words are native groupings of multiple bytes. Several byte orderings
  /external/chromium_org/chrome/browser/ui/webui/options/
manage_profile_browsertest.js 231 checkDialog('Multiple Words');
  /external/clang/lib/AST/
Expr.cpp 631 const uint64_t* Words = Val.getRawData();
634 std::copy(Words, Words + NumWords, pVal);
636 VAL = Words[0];
    [all...]
  /external/protobuf/src/google/protobuf/
repeated_field_unittest.cc 853 std::vector<string> words; member in class:google::protobuf::__anon26345::RepeatedFieldInsertionIteratorsTest
877 words.push_back("Able");
878 words.push_back("was");
879 words.push_back("I");
880 words.push_back("ere");
881 words.push_back("I");
882 words.push_back("saw");
883 words.push_back("Elba");
884 std::copy(words.begin(), words.end()
    [all...]

Completed in 587 milliseconds

1 2