Searched defs:before (Results 26 - 35 of 35) sorted by relevance

12

/packages/apps/Settings/src/com/android/settings/wifi/
H A DWifiConfigController.java875 public void onTextChanged(CharSequence s, int start, int before, int count) { argument
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/
H A DEntityDelta.java82 * starting point; the "before" snapshot.
84 public static EntityDelta fromBefore(Entity before) { argument
86 entity.mValues = ValuesDelta.fromBefore(before.getEntityValues());
88 for (NamedContentValues namedValues : before.getSubValues()) {
96 * "before" state represented by this {@link EntityDelta}, discarding any
129 // No local entry before, so insert
247 // Requesting an "insert" entry, which has no "before"
345 * "before" state hasn't changed. This is maintained separately so that all
346 * asserts can take place before any updates occur.
366 * current "before" {
510 fromBefore(ContentValues before) argument
[all...]
/packages/inputmethods/LatinIME/native/jni/
H A Dcom_android_inputmethod_latin_BinaryDictionary.cpp256 jintArray before, jintArray after, jint score) {
257 jsize beforeLength = env->GetArrayLength(before);
261 env->GetIntArrayRegion(before, 0, beforeLength, beforeCodePoints);
267 static jint latinime_BinaryDictionary_editDistance(JNIEnv *env, jclass clazz, jintArray before, argument
269 jsize beforeLength = env->GetArrayLength(before);
273 env->GetIntArrayRegion(before, 0, beforeLength, beforeCodePoints);
255 latinime_BinaryDictionary_calcNormalizedScore(JNIEnv *env, jclass clazz, jintArray before, jintArray after, jint score) argument
/packages/apps/Calendar/src/com/android/calendar/recurrencepicker/
H A DRecurrencePickerDialog.java267 public void onTextChanged(CharSequence s, int start, int before, int count) { argument
287 // Call mStringBuilder.setLength(0) before formatting any string or else the
915 // Checking before setting because this causes infinite recursion
985 // Checking before setting because this causes infinite
1218 // The date string does not have any text before the "%s" so we'll have to use the
1226 // The count string does not have any text before the "%d" so we'll have to use
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/
H A DCustomContactListFilterActivity.java286 public static GroupDelta fromBefore(ContentValues before) { argument
288 entry.mBefore = before;
783 // Warn before removing this group when it would cause ungrouped to stop syncing
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
H A DSearchActivityView.java413 public void onTextChanged(CharSequence s, int start, int before, int count) { argument
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DBinaryDictionary.java134 private static native float calcNormalizedScoreNative(int[] before, int[] after, int score); argument
135 private static native int editDistanceNative(int[] before, int[] after); argument
238 public static float calcNormalizedScore(final String before, final String after, argument
240 return calcNormalizedScoreNative(StringUtils.toCodePointArray(before),
244 public static int editDistance(final String before, final String after) { argument
245 if (before == null || after == null) {
248 return editDistanceNative(StringUtils.toCodePointArray(before),
328 * the blocking in some situations such as in idle time or just before closing.
/packages/apps/Dialer/src/com/android/dialer/dialpad/
H A DDialpadFragment.java315 public void onTextChanged(CharSequence input, int start, int before, int changeCount) { argument
573 "Screen configuration is requested before onCreateView() is called. Ignored");
1074 * Remove the digit just before the current position. This can be used if we want to replace
1153 * before being able to add the new participant. (This is not the
/packages/apps/Mms/src/com/android/mms/ui/
H A DComposeMessageActivity.java236 // then a scroll shortcut is invoked to move the list near the end before scrolling.
247 // The max amount of delay before we force load messages and draft.
248 // 500ms is determined empirically. We want keyboard to have a chance to be shown before
292 // for a second before showing the sent message. But we'd
562 private void updateCounter(CharSequence text, int start, int before, int count) { argument
568 final boolean textRemoved = (before > count);
742 public void onTextChanged(CharSequence s, int start, int before, int count) {
1778 // Must grab the recipients before the view is made visible because getRecipients()
2088 // if we don't hide it here, the compose panel will flash before the keyboard shows
2181 // Don't let any markAsRead DB updates occur before w
[all...]
/packages/apps/UnifiedEmail/src/com/android/mail/compose/
H A DComposeActivity.java180 // before the save has completed (and when we know the id of the newly created message). When
1140 // TODO: add special chips text change watchers before adding
1432 // email character, we need to find/ replace these ourselves before
2312 * called before the ComposeActivity finishes.
2487 // before findViews() is called
2582 // Show a warning before sending only if there are no attachments.
2722 // Make sure to remove only the composing spans from the Spannable before saving.
3244 // though, since we are saving our state before AccountsActivity is activated. Thus, the
3284 public void onTextChanged(CharSequence s, int start, int before, int count) { argument
3359 public void onTextChanged(CharSequence s, int start, int before, in argument
[all...]

Completed in 505 milliseconds

12