Home
last modified time | relevance | path

Searched refs:previous (Results 1 – 9 of 9) sorted by relevance

/packages/apps/Gallery3D/src/com/cooliris/media/
DDirectLinkedList.java30 public Entry<E> previous = null; field in DirectLinkedList.Entry
51 entry.previous = tail; in add()
62 final Entry<E> previous = entry.previous; in remove() local
65 next.previous = previous; in remove()
68 mTail = previous; in remove()
70 if (previous != null) { in remove()
71 previous.next = next; in remove()
72 entry.previous = null; in remove()
/packages/apps/Calendar/src/com/android/calendar/
DCalendarApplication.java38 public Screen previous; field in CalendarApplication.Screen
43 previous = this; in Screen()
49 node.previous = this; in insert()
50 next.previous = node; in insert()
56 next.previous = previous; in unlink()
57 previous.next = next; in unlink()
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
DSuggestHelper.java154 private void getBigramSuggestions(CharSequence previous, CharSequence typed) { in getBigramSuggestions() argument
155 if (!TextUtils.isEmpty(previous) && (typed.length() > 1)) { in getBigramSuggestions()
157 mSuggest.getSuggestions(null, firstChar, false, previous); in getBigramSuggestions()
161 boolean isDefaultNextSuggestion(CharSequence previous, CharSequence typed, in isDefaultNextSuggestion() argument
164 getBigramSuggestions(previous, typed); in isDefaultNextSuggestion()
165 List<CharSequence> suggestions = mSuggest.getSuggestions(null, word, false, previous); in isDefaultNextSuggestion()
169 boolean isDefaultNextCorrection(CharSequence previous, CharSequence typed, in isDefaultNextCorrection() argument
172 getBigramSuggestions(previous, typed); in isDefaultNextCorrection()
173 List<CharSequence> suggestions = mSuggest.getSuggestions(null, word, false, previous); in isDefaultNextCorrection()
177 boolean isASuggestion(CharSequence previous, CharSequence typed, in isASuggestion() argument
[all …]
/packages/apps/Email/src/org/apache/james/mime4j/
DEOLConvertingInputStream.java43 private int previous = 0; field in EOLConvertingInputStream
98 } else if ((flags & CONVERT_LF) != 0 && b == '\n' && previous != '\r') { in read()
103 previous = b; in read()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
DSuggest.java363 CharSequence previous = suggestions.get(j); in removeDupes() local
364 if (TextUtils.equals(cur, previous)) { in removeDupes()
/packages/apps/Browser/src/com/android/browser/
DFindDialog.java89 button = findViewById(R.id.previous); in FindDialog()
/packages/apps/Browser/src/com/android/browser/widget/
DBookmarkWidgetService.java239 views.setOnClickPendingIntent(R.id.previous, in updateWidget()
/packages/apps/Launcher2/src/com/android/launcher2/
DWorkspace.java1477 void setIndicators(Drawable previous, Drawable next) { in setIndicators() argument
1478 mPreviousIndicator = previous; in setIndicators()
1480 previous.setLevel(mCurrentScreen); in setIndicators()
DLauncher.java758 Drawable previous = mPreviousView.getDrawable(); in setupViews() local
760 mWorkspace.setIndicators(previous, next); in setupViews()