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

1 2

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
PunctuationSuggestions.java 68 * Note that {@link SuggestedWords#getWord(int)} returns a punctuation key specification text.
72 public String getWord(final int index) {
73 final String keySpec = super.getWord(index);
82 * Note that {@link SuggestedWords#getWord(int)} returns a punctuation key specification text.
87 final String keySpec = super.getWord(index);
93 * Note that {@link #getWord(int)} returns a suggested punctuation. We should create a
98 return newHardCodedWordInfo(getWord(index));
SuggestedWords.java 126 public String getWord(final int index) {
133 * suggested word that is returned from {@link #getWord(int)}. For example the displayed text
363 public String getWord() {
  /external/opencv3/modules/imgcodecs/src/
bitstrm.hpp 103 int getWord();
114 int getWord();
grfmt_bmp.cpp 141 m_width = m_strm.getWord();
142 m_height = m_strm.getWord();
256 int code = m_strm.getWord();
345 int code = m_strm.getWord();
bitstrm.cpp 251 int RLByteStream::getWord()
292 int RMByteStream::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/java/src/com/android/inputmethod/keyboard/internal/
GestureFloatingTextDrawingPreview.java 143 || TextUtils.isEmpty(mSuggestedWords.getWord(0))) {
149 final String text = mSuggestedWords.getWord(0);
157 if (mSuggestedWords.isEmpty() || TextUtils.isEmpty(mSuggestedWords.getWord(0))) {
161 final String text = mSuggestedWords.getWord(0);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
AndroidDoubleClickStrategy.java 59 protected Point getWord(String string, int cursor) {
65 Point position = super.getWord(string, cursor);
  /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());
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
ANameVariable.java 37 public TWord getWord()
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/
AndroidDoubleClickStrategyTest.java 63 Point positions = strategy.getWord(before, cursor);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
SuggestionSpanUtils.java 90 final String word = suggestedWords.getWord(i);
  /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();
VarOptimizer.java 235 String name = ((ANameVariable) nvar).getWord().getText();
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/accessibility/
AccessibilityUtils.java 158 mAutoCorrectionWord = suggestedWords.getWord(SuggestedWords.INDEX_OF_AUTO_CORRECTION);
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
InputLogicTestsLanguageWithoutSpaces.java 132 suggestedWords.size() > 0 ? suggestedWords.getWord(0) : null);
InputLogicTests.java 512 suggestedWords.size() > 0 ? suggestedWords.getWord(0) : null);
529 mLatinIME.getSuggestedWordsForTest().getWord(0));
542 suggestedWords.size() > 0 ? suggestedWords.getWord(0) : null);
586 suggestedWords.size() > 0 ? suggestedWords.getWord(0) : null);
    [all...]
  /packages/apps/Settings/src/com/android/settings/
UserDictionarySettings.java 152 final String word = getWord(position);
196 private String getWord(final int position) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/userdictionary/
UserDictionarySettings.java 207 final String word = getWord(position);
260 private String getWord(final int position) {
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/tvleanback/data/
VideoDatabase.java 119 public Cursor getWord(String rowId, String[] columns) {
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/settings/
SpacingAndPunctuationsTests.java 435 punctuationWords[index], suggestedWords.getWord(index));

Completed in 431 milliseconds

1 2