HomeSort by relevance Sort by last modified time
    Searched defs:Words (Results 1 - 7 of 7) sorted by null

  /external/clearsilver/util/
neo_rand.c 71 static ULIST *Words = NULL;
79 if (Words == NULL)
84 err = uListInit(&Words, 40000, 0);
90 fp = fopen ("/usr/dict/words", "r");
92 fp = fopen ("/usr/share/dict/words", "r");
94 ne_warn("Unable to find dict/words file (looked in /usr/dict/words and /usr/share/dict/words)");
103 uListAppend(Words, strdup(buf));
107 x = neo_rand (uListLength(Words));
    [all...]
  /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
44 * Contains the user defined words.
46 public static class Words implements BaseColumns {
51 Uri.parse("content://" + AUTHORITY + "/words");
54 * The MIME type of {@link #CONTENT_URI} providing a directory of words.
  /cts/tests/tests/provider/src/android/provider/cts/
UserDictionary_WordsTest.java 33 @TestTargetClass(android.provider.UserDictionary.Words.class)
41 UserDictionary.Words._ID,
42 UserDictionary.Words.WORD,
43 UserDictionary.Words.FREQUENCY,
44 UserDictionary.Words.LOCALE };
81 UserDictionary.Words.addWord(getContext(), word, frequency,
82 UserDictionary.Words.LOCALE_TYPE_ALL);
84 UserDictionary.Words.CONTENT_URI,
86 UserDictionary.Words.WORD + "='" + word + "'", null, null);
93 Uri.withAppendedPath(UserDictionary.Words.CONTENT_URI, cursor.getString(ID_INDEX)))
    [all...]
  /packages/apps/Settings/src/com/android/settings/
UserDictionarySettings.java 51 UserDictionary.Words._ID, UserDictionary.Words.WORD
56 private static final String QUERY_SELECTION = UserDictionary.Words.LOCALE + "=? OR "
57 + UserDictionary.Words.LOCALE + " is null";
59 private static final String DELETE_SELECTION = UserDictionary.Words.WORD + "=?";
126 return managedQuery(UserDictionary.Words.CONTENT_URI, QUERY_PROJECTION,
128 "UPPER(" + UserDictionary.Words.WORD + ")");
134 new String[] { UserDictionary.Words.WORD },
201 mCursor.getColumnIndexOrThrow(UserDictionary.Words.WORD));
252 UserDictionary.Words.addWord(this, word.toString()
    [all...]
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 

Completed in 144 milliseconds