Searched defs:before (Results 1 - 25 of 34) sorted by relevance

12

/packages/experimental/LoaderApp/src/com/android/loaderapp/model/
H A DEntityDiff.java42 * from "before" to "after". Tries its best to keep operations to
46 public static EntityDiff buildDiff(Entity before, Entity after, Uri targetUri, argument
53 if (before == null) {
70 // After doesn't exist, so delete "before" values
71 for (NamedContentValues child : before.getSubValues()) {
78 builder.withSelection(getSelectIdClause(before.getEntityValues()), null);
84 if (!before.getEntityValues().equals(values)) {
93 final HashMap<String, NamedContentValues> beforeChildren = buildChildrenMap(before);
96 // Walk through "before" children looking for deletes and updates
102 // After child doesn't exist, so delete "before" chil
[all...]
/packages/experimental/RpcPerformance/
H A Drpcperftest.cpp80 struct timespec before, after; local
81 clock_gettime(CLOCK_MONOTONIC, &before);
91 double seconds = (after.tv_sec - before.tv_sec);
92 seconds += (after.tv_nsec - before.tv_nsec) / 1000000000.0;
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DWhitelistDictionary.java57 final String before = wordlist[i + 1];
59 if (before != null && after != null) {
61 before.toLowerCase(), new Pair<Integer, String>(score, after));
72 public String getWhitelistedWord(String before) { argument
73 if (before == null) return null;
74 final String lowerCaseBefore = before.toLowerCase();
H A DLatinImeLogger.java46 String before, String after, int position, List<CharSequence> suggestions) {
49 public static void logOnAutoCorrection(String before, String after, int separatorCode) { argument
45 logOnManualSuggestion( String before, String after, int position, List<CharSequence> suggestions) argument
/packages/apps/Contacts/src/com/android/contacts/interactions/
H A DGroupNameDialogFragment.java95 public void onTextChanged(CharSequence s, int start, int before, int count) { argument
/packages/apps/Launcher2/src/com/android/launcher2/
H A DStrokedTextView.java74 protected void onTextChanged(CharSequence text, int start, int before, int after) { argument
75 super.onTextChanged(text, start, before, after);
/packages/apps/Calculator/src/com/android/calculator2/
H A DColorButton.java81 protected void onTextChanged(CharSequence text, int start, int before, int after) { argument
/packages/apps/Contacts/src/com/android/contacts/widget/
H A DSearchEditText.java104 public void onTextChanged(CharSequence s, int start, int before, int count) { argument
/packages/apps/Email/src/com/android/email/activity/setup/
H A DEditQuickResponseDialog.java119 public void onTextChanged(CharSequence s, int start, int before, int count) {} argument
/packages/apps/Settings/src/com/android/settings/
H A DConfirmLockPassword.java200 public void onTextChanged(CharSequence s, int start, int before, int count) { argument
H A DCredentialStorage.java64 * if unlock, ensure key guard before install.
100 * attempts remaining before the KeyStore will reset itself.
345 * On successful unlock, ensure migration to key guard before continuing.
396 @Override public void onTextChanged(CharSequence s,int start, int before, int count) { argument
/packages/apps/Settings/src/com/android/settings/bluetooth/
H A DBluetoothNameDialogFragment.java124 mDeviceNameView.setText(deviceName); // set initial value before adding listener
182 public void onTextChanged(CharSequence s, int start, int before, int count) { argument
H A DBluetoothPairingDialog.java373 public void onTextChanged(CharSequence s, int start, int before, int count) { argument
H A DDeviceProfilesSettings.java86 public void onTextChanged(CharSequence s, int start, int before, int count) { argument
/packages/apps/Settings/src/com/android/settings/wifi/
H A DWifiApDialog.java174 public void onTextChanged(CharSequence s, int start, int before, int count) { argument
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
H A DBluetoothPbapActivity.java276 public void beforeTextChanged(CharSequence s, int start, int before, int after) { argument
279 public void onTextChanged(CharSequence s, int start, int before, int count) { argument
/packages/apps/Browser/src/com/android/browser/
H A DAutoFillSettingsFragment.java96 public void onTextChanged(CharSequence s, int start, int before, int count) { argument
108 public void onTextChanged(CharSequence s, int start, int before, int count) { argument
H A DNavigationBarBase.java284 public void onTextChanged(CharSequence s, int start, int before, int count) { argument
H A DUrlInputView.java353 public void onTextChanged(CharSequence s, int start, int before, int count) { argument
/packages/apps/Phone/src/com/android/phone/
H A DEmergencyDialer.java122 public void onTextChanged(CharSequence input, int start, int before, int changeCount) { argument
/packages/apps/Settings/src/com/android/settings/vpn2/
H A DVpnDialog.java195 public void onTextChanged(CharSequence s, int start, int before, int count) { argument
/packages/apps/Stk/src/com/android/stk/
H A DStkInputActivity.java237 public void onTextChanged(CharSequence s, int start, int before, int count) { argument
/packages/experimental/procstatlog/
H A Dprocstatlog.c389 struct timeval before, after; local
390 gettimeofday(&before, NULL);
391 printf("T + %ld.%06ld\n", before.tv_sec, before.tv_usec);
400 long elapsed_usec = (long) after.tv_usec - before.tv_usec;
401 elapsed_usec += 1000000l * (after.tv_sec - before.tv_sec);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/deprecated/voice/
H A DVoiceInputLogger.java211 int index, String before, String after) {
219 i.putExtra(VoiceInputLoggerCompatUtils.EXTRA_BEFORE_N_BEST_CHOOSE, before);
210 textModifiedByChooseSuggestion(int suggestionLength, int replacedPhraseLength, int index, String before, String after) argument
/packages/apps/Contacts/src/com/android/contacts/model/
H A DEntityDelta.java90 * starting point; the "before" snapshot.
92 public static EntityDelta fromBefore(Entity before) { argument
94 entity.mValues = ValuesDelta.fromBefore(before.getEntityValues());
96 for (NamedContentValues namedValues : before.getSubValues()) {
104 * "before" state represented by this {@link EntityDelta}, discarding any
137 // No local entry before, so insert
267 // Requesting an "insert" entry, which has no "before"
365 * "before" state hasn't changed. This is maintained separately so that all
366 * asserts can take place before any updates occur.
386 * current "before" {
546 fromBefore(ContentValues before) argument
[all...]

Completed in 1535 milliseconds

12