Searched defs:previous (Results 1 - 8 of 8) sorted by relevance

/packages/apps/Email/emailcommon/src/org/apache/james/mime4j/
H A DEOLConvertingInputStream.java43 private int previous = 0; field in class:EOLConvertingInputStream
98 } else if ((flags & CONVERT_LF) != 0 && b == '\n' && previous != '\r') {
103 previous = b;
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
H A DUserBigramSuggestHelper.java55 public int searchUserBigramSuggestion(CharSequence previous, char typed, argument
60 if (!TextUtils.isEmpty(previous) && !TextUtils.isEmpty(Character.toString(typed))) {
62 mSuggest.getSuggestions(firstChar, previous, mKeyboard.getProximityInfo());
65 mUserBigram.getBigrams(firstChar, previous, mSuggest);
79 String previous = null;
82 if (previous != null) {
83 addToUserBigram(new String[] {previous, current});
85 previous = current;
H A DSuggestHelper.java131 private void getBigramSuggestions(CharSequence previous, CharSequence typed) { argument
132 if (!TextUtils.isEmpty(previous) && (typed.length() > 1)) {
134 mSuggest.getSuggestions(firstChar, previous, mKeyboard.getProximityInfo());
138 public CharSequence getBigramFirstSuggestion(CharSequence previous, CharSequence typed) { argument
140 getBigramSuggestions(previous, typed);
141 SuggestedWords suggestions = mSuggest.getSuggestions(word, previous,
146 public CharSequence getBigramAutoCorrection(CharSequence previous, CharSequence typed) { argument
148 getBigramSuggestions(previous, typed);
149 SuggestedWords suggestions = mSuggest.getSuggestions(word, previous,
155 public int searchBigramSuggestion(CharSequence previous, CharSequenc argument
[all...]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DWordComposer.java107 private static boolean isFirstCharCapitalized(int index, int codePoint, boolean previous) { argument
109 return previous && !Character.isUpperCase(codePoint);
/packages/apps/Gallery2/src/com/android/gallery3d/app/
H A DSinglePhotoDataAdapter.java173 public void previous() { method in class:SinglePhotoDataAdapter
H A DPhotoDataAdapter.java69 // screennail (offset = +1), then the previous screennail (offset = -1) etc.
130 // mChanges keeps the version number (of MediaItem) about the previous,
338 public void previous() { method in class:PhotoDataAdapter
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DPhotoView.java72 // the previous/next image entries
201 // -1 previous, 0 current, 1 next
303 * previous current next
312 * IMAGE_GAP + Max(previous.gapToSide(), current.gapToSide)
325 // layout the previous image
350 // Draw the previous and the next photo
418 // exceeds the threshold, switch to next / previous image.
618 mModel.previous();
643 public void previous(); method in interface:PhotoView.Model
775 // Returns the position saved by the previous pag
[all...]
/packages/apps/Settings/src/com/android/settings/
H A DAccessibilityTutorialActivity.java175 private void previous() { method in class:AccessibilityTutorialActivity
627 mController.previous();

Completed in 331 milliseconds