OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FREQUENCY
(Results
1 - 8
of
8
) sorted by null
/frameworks/base/core/java/android/provider/
UserDictionary.java
30
*
frequency
information and locale information.
72
* The
frequency
column. A value between 1 and 255. Higher values imply higher
frequency
.
75
public static final String
FREQUENCY
= "
frequency
";
97
* Sort by descending order of
frequency
.
99
public static final String DEFAULT_SORT_ORDER =
FREQUENCY
+ " DESC";
101
/** Adds a word to the dictionary, with the given
frequency
and the specified
110
int
frequency
, int localeType) {
117
if (
frequency
< 0) frequency = 0
[
all
...]
/packages/providers/UserDictionaryProvider/src/com/android/providers/userdictionary/
UserDictionaryProvider.java
40
* Provides access to a database of user defined words. Each item has a word and a
frequency
.
79
+ Words.
FREQUENCY
+ " INTEGER,"
173
if (values.containsKey(Words.
FREQUENCY
) == false) {
174
values.put(Words.
FREQUENCY
, "1");
251
sDictProjectionMap.put(Words.
FREQUENCY
, Words.
FREQUENCY
);
DictionaryBackupAgent.java
68
Words.
FREQUENCY
,
161
int
frequency
= cursor.getInt(COLUMN_FREQUENCY);
local
164
String out = name + "|" +
frequency
+ "|" + locale + "|" + appId;
211
String
frequency
;
local
214
frequency
= st.nextToken();
220
int frequencyInt = Integer.parseInt(
frequency
);
223
if (!TextUtils.isEmpty(
frequency
)) {
226
cv.put(Words.
FREQUENCY
, frequencyInt);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
UserDictionary.java
31
Words.
FREQUENCY
77
* @param
frequency
the
frequency
of occurrence of the word. A
frequency
of 255 is considered
79
* @TODO use a higher or float range for
frequency
82
public synchronized void addWord(String word, int
frequency
) {
88
super.addWord(word,
frequency
);
93
values.put(Words.
FREQUENCY
,
frequency
);
120
int
frequency
= cursor.getInt(INDEX_FREQUENCY)
local
[
all
...]
/cts/tests/tests/provider/src/android/provider/cts/
UserDictionary_WordsTest.java
43
UserDictionary.Words.
FREQUENCY
,
80
int
frequency
= 1;
local
81
UserDictionary.Words.addWord(getContext(), word,
frequency
,
local
90
assertEquals(
frequency
, cursor.getInt(FREQUENCY_INDEX));
/prebuilt/common/jfreechart/
jfreechart-1.0.9.jar
/prebuilt/sdk/4/
android.jar
/prebuilt/sdk/6/
android.jar
Completed in 977 milliseconds