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

1 2

  /external/webkit/Source/JavaScriptCore/wtf/
CryptographicallyRandomNumber.cpp 65 inline uint32_t getWord();
131 uint32_t ARC4RandomNumberGenerator::getWord()
149 return getWord();
  /development/samples/SearchableDictionary/src/com/example/android/searchabledict/
DictionaryProvider.java 107 return getWord(uri);
138 private Cursor getWord(Uri uri) {
144 return mDictionary.getWord(rowId, columns);
163 return mDictionary.getWord(rowId, columns);
DictionaryDatabase.java 89 public Cursor getWord(String rowId, String[] columns) {
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
SuggestHelper.java 106 // Note that suggestions.getWord(0) is the word user typed.
107 return suggestions.size() > 1 ? suggestions.getWord(1) : null;
114 // Note that suggestions.getWord(0) is the word user typed.
116 ? suggestions.getWord(1) : null;
123 // Note that suggestions.getWord(0) is the word user typed.
125 if (TextUtils.equals(suggestions.getWord(i), expected))
143 return suggestions.size() > 1 ? suggestions.getWord(1) : null;
152 ? suggestions.getWord(1) : null;
162 if (TextUtils.equals(suggestions.getWord(i), expected))
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
SuggestedWords.java 56 public CharSequence getWord(int pos) {
164 final String prevWord = previousSuggestions.getWord(pos).toString();
185 public CharSequence getWord(int pos) {
MoreSuggestions.java 74 final CharSequence word = suggestions.getWord(pos);
208 final String word = mSuggestions.getWord(pos).toString();
SuggestionsView.java 262 final CharSequence word = suggestions.getWord(pos);
437 final CharSequence text = suggestions.getWord(index);
713 final CharSequence word = mSuggestions.getWord(index);
    [all...]
Utils.java 180 final CharSequence typedWord = suggestions.getWord(0);
184 final CharSequence suggestionWord = suggestions.getWord(1);
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/interpreter/
VariableLocator.java 53 return ((ANameVariable) variable).getWord().getText();
84 descendVariable(node.getWord().getText());
ExpressionEvaluator.java 254 result.append(node.getWord().getText());
TemplateInterpreter.java 444 argumentNames[i++] = ((ANameVariable) argument).getWord().getText();
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
ANameVariable.java 37 public TWord getWord()
  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
VariableTranslator.java 73 components.add(new StringExpression(node.getWord().getText()));
EscapingEvaluator.java 159 fullFunctionName.append(node11.getWord().getText());
ExpressionTranslator.java 329 fullFunctionName.append(node11.getWord().getText());
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/
TypeResolver.java 133 String name = ((ANameVariable) functionName).getWord().getText();
VarOptimizer.java 235 String name = ((ANameVariable) nvar).getWord().getText();
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
SuggestionSpanUtils.java 112 final CharSequence word = suggestedWords.getWord(i);
  /packages/apps/Settings/src/com/android/settings/
UserDictionarySettings.java 198 String word = getWord(position);
224 private String getWord(int position) {
  /external/icu4c/tools/gennames/
gennames.c 289 getWord(char *line, int16_t start, int16_t limit);
706 limit=getWord(name, start, length);
760 getWord(char *line, int16_t start, int16_t limit) {
1007 limit=getWord((char *)s, start, length);
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/utility/
CalendarUtilities.java 208 static int getWord(byte[] bytes, int offset) {
274 int num = getWord(bytes, offset + MSFT_SYSTEMTIME_YEAR);
279 num = getWord(bytes, offset + MSFT_SYSTEMTIME_MONTH);
287 tzd.dayOfWeek = getWord(bytes, offset + MSFT_SYSTEMTIME_DAY_OF_WEEK) + 1;
290 num = getWord(bytes, offset + MSFT_SYSTEMTIME_DAY);
299 int hour = getWord(bytes, offset + MSFT_SYSTEMTIME_HOUR);
301 int minute = getWord(bytes, offset + MSFT_SYSTEMTIME_MINUTE);
    [all...]
  /packages/apps/Exchange/tests/src/com/android/exchange/utility/
CalendarUtilitiesTests.java 119 // First, check that getWord/Long are properly little endian
120 assertEquals(0x0100, CalendarUtilities.getWord(bytes, 0));
130 assertEquals(0xDEAD, CalendarUtilities.getWord(bytes, 0));
132 assertEquals(0xCEDE, CalendarUtilities.getWord(bytes, 6));
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/analysis/
DepthFirstAdapter.java     [all...]
ReversedDepthFirstAdapter.java     [all...]
  /external/llvm/include/llvm/ADT/
APInt.h 150 uint64_t getWord(unsigned bitPosition) const {
    [all...]

Completed in 2974 milliseconds

1 2