HomeSort by relevance Sort by last modified time
    Searched full:getword (Results 1 - 25 of 48) sorted by null

1 2

  /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))
  /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) {
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
ANameVariable.java 37 public TWord getWord()
  /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());
  /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...]
  /external/opencv/otherlibs/highgui/
bitstrm.h 104 int GetWord();
115 int GetWord();
grfmt_bmp.cpp 151 m_width = m_strm.GetWord();
152 m_height = m_strm.GetWord();
258 int code = m_strm.GetWord();
347 int code = m_strm.GetWord();
grfmt_tiff.cpp 278 int val = m_strm.GetWord();
335 array[i] = ((RMByteStream&)m_strm).GetWord();
338 array[i] = ((RLByteStream&)m_strm).GetWord();
379 m_byteorder = (TiffByteOrder)m_strm.GetWord();
grfmt_jpeg.cpp 585 int code = m_low_strm.GetWord();
838 int length = lstrm.GetWord();
846 m_version = lstrm.GetWord();
853 m_height = lstrm.GetWord();
854 m_width = lstrm.GetWord();
909 m_MCUs = lstrm.GetWord();
1034 int length = lstrm.GetWord();
1091 m_MCUs = lstrm.GetWord();
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
SuggestionSpanUtils.java 96 final CharSequence word = suggestedWords.getWord(i);
  /external/chromium/third_party/libjingle/source/talk/examples/call/
callclient.cc 84 std::string GetWord(const std::vector<std::string>& words,
163 const std::string& command = GetWord(words, 0, "");
210 std::string to = GetWord(words, 1, "");
213 std::string to = GetWord(words, 1, "");
220 JoinMuc(GetWord(words, 1, ""));
222 InviteToMuc(words[1], GetWord(words, 2, ""));
224 LeaveMuc(GetWord(words, 1, ""));
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
UserDictionaryToolsList.java 545 WnnWord getword = new WnnWord(); local
547 getword);
549 getword = event.word;
550 int len = getword.candidate.length();
554 if (searchword.candidate.equals(getword.candidate)) {
  /packages/apps/Settings/src/com/android/settings/
UserDictionarySettings.java 198 String word = getWord(position);
224 private String getWord(int position) {
  /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());
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/
TypeResolver.java 133 String name = ((ANameVariable) functionName).getWord().getText();
  /packages/apps/Exchange/src/com/android/exchange/utility/
CalendarUtilities.java 195 static int getWord(byte[] bytes, int offset) {
261 int num = getWord(bytes, offset + MSFT_SYSTEMTIME_YEAR);
266 num = getWord(bytes, offset + MSFT_SYSTEMTIME_MONTH);
274 tzd.dayOfWeek = getWord(bytes, offset + MSFT_SYSTEMTIME_DAY_OF_WEEK) + 1;
277 num = getWord(bytes, offset + MSFT_SYSTEMTIME_DAY);
286 int hour = getWord(bytes, offset + MSFT_SYSTEMTIME_HOUR);
288 int minute = getWord(bytes, offset + MSFT_SYSTEMTIME_MINUTE);
    [all...]
  /external/ppp/pppd/
auth.c     [all...]
  /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/tests/src/com/android/exchange/utility/
CalendarUtilitiesTests.java 112 // First, check that getWord/Long are properly little endian
113 assertEquals(0x0100, CalendarUtilities.getWord(bytes, 0));
123 assertEquals(0xDEAD, CalendarUtilities.getWord(bytes, 0));
125 assertEquals(0xCEDE, CalendarUtilities.getWord(bytes, 6));
    [all...]

Completed in 908 milliseconds

1 2