Searched refs:key (Results 251 - 275 of 316) sorted by relevance

<<111213

/packages/apps/Settings/src/com/android/settings/wifi/
H A DWifiSettings.java815 /** retrieve a non-null list of values with key K */
816 List<V> getAll(K key) { argument
817 List<V> values = store.get(key);
821 void put(K key, V val) { argument
822 List<V> curVals = store.get(key);
825 store.put(key, curVals);
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
H A DBluetoothPbapService.java90 * Intent indicating obex session key input complete by user which is sent
96 * Intent indicating user canceled obex authentication session key input
109 * Intent Extra name indicating session key which is sent from
516 private void notifyAuthKeyInput(final String key) { argument
518 if (key != null) {
519 mAuth.setSessionKey(key);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
H A DBinaryDictEncoderUtils.java939 for (final String key : dict.mOptions.mAttributes.keySet()) {
940 final String value = dict.mOptions.mAttributes.get(key);
941 CharEncoding.writeString(headerBuffer, key);
H A DFusionDictionary.java362 public void addOptionAttribute(final String key, final String value) { argument
363 mOptions.mAttributes.put(key, value);
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
H A DDefaultSoftKeyboard.java46 * key codes for a software keyboard
52 /* for Japanese 12-key keyboard */
53 /** Japanese 12-key keyboard [1] */
55 /** Japanese 12-key keyboard [2] */
57 /** Japanese 12-key keyboard [3] */
59 /** Japanese 12-key keyboard [4] */
61 /** Japanese 12-key keyboard [5] */
63 /** Japanese 12-key keyboard [6] */
65 /** Japanese 12-key keyboard [7] */
67 /** Japanese 12-key keyboar
820 onLongPress(Keyboard.Key key) argument
[all...]
H A DTextCandidates1LineViewManager.java566 * @param key Key event
568 public void processMoveKeyEvent(int key) { argument
573 switch (key) {
/packages/apps/Settings/src/com/android/settings/users/
H A DAppRestrictionsFragment.java203 RestrictionEntry getRestriction(String key) { argument
206 if (entry.getKey().equals(key)) {
804 String key = preference.getKey();
805 if (key != null && key.contains(DELIMITER)) {
806 StringTokenizer st = new StringTokenizer(key, DELIMITER);
985 // Store the restrictions key string as a key for the preference
/packages/apps/Launcher3/src/com/android/launcher3/
H A DLauncherClings.java391 private void dismissAnyWorkspaceCling(Cling cling, String key, View v) { argument
400 dismissCling(cling, cb, key, DISMISS_CLING_DURATION, true);
H A DLauncherProvider.java1429 String key = ar.getString(R.styleable.Extra_key);
1431 if (key != null && value != null) {
1432 extras.putString(key, value);
1434 throw new RuntimeException("Widget extras must have a key and value");
1636 final String key = intent.toUri(0);
1637 if (seenIntents.contains(key)) {
1641 seenIntents.add(key);
/packages/apps/Mms/src/com/android/mms/ui/
H A DRecipientsEditor.java376 private static String getAnnotation(Annotation[] a, String key) { argument
378 if (a[i].getKey().equals(key)) {
/packages/apps/Settings/src/com/android/settings/
H A DSoundSettings.java344 final String key = preference.getKey();
345 if (KEY_EMERGENCY_TONE.equals(key)) {
/packages/apps/Settings/src/com/android/settings/applications/
H A DProcStatsEntry.java89 String key = in.readString();
92 mServices.append(key, value);
/packages/apps/UnifiedEmail/src/com/android/mail/providers/
H A DMailAppProvider.java75 * specified by this extra key should be a ParcelableArray.
278 private void addAccountImpl(Uri key, AccountCacheEntry accountEntry) { argument
281 // LinkedHashMap will not change the iteration order when re-inserting a key
282 mAccountCache.put(key, accountEntry);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
H A DAndroidSpellCheckerService.java150 public void onSharedPreferenceChanged(final SharedPreferences prefs, final String key) { argument
151 if (!PREF_USE_CONTACTS_KEY.equals(key)) return;
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
H A DCallLogProviderTest.java261 private void assertParamThrowsIllegalArgumentException(String key, String value) { argument
263 .appendQueryParameter(key, value)
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
H A DCalendarProvider2Test.java153 * a (key, value) pair. This is used for updating events.
156 String key; field in class:CalendarProvider2Test.KeyValue
159 public KeyValue(String key, String value) { argument
160 this.key = key;
218 * with an array of (key, value) pairs. Both the key and value are
242 if (CalendarContract.Events.STATUS.equals(pair.key)) {
244 map.put(pair.key, Integer.parseInt(value));
246 map.put(pair.key, valu
2874 checkValueForKey(String value, String key) argument
2919 updateValueForKey(String value, String key) argument
[all...]
/packages/apps/Settings/src/com/android/settings/tts/
H A DTtsEnginePreference.java258 * as the currently selected key and the currently checked compound button.
259 * (which corresponds to this key).
265 void setCurrentKey(String key); argument
H A DTextToSpeechSettings.java58 /** Preference key for the "play TTS example" preference. */
61 /** Preference key for the TTS rate selection dialog. */
64 /** Preference key for the TTS status field. */
68 * Preference key for the engine selection preference.
610 public void setCurrentKey(String key) { argument
611 mCurrentEngine = key;
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/EN/
H A DOpenWnnEngineEN.java198 * Set search key for the dictionary.
201 * input string to the search key. And hold the input string's
206 * @return {@code true} if the search key is set; {@code false} if not.
289 public int searchWords(String key) { argument
/packages/providers/MediaProvider/src/com/android/providers/media/
H A DMediaProvider.java838 // Contains a sort/group "key" and the preferred display name for artists
845 // Contains a sort/group "key" and the preferred display name for albums
1138 // We now ignore double quotes when building the key, so we have to remove all of them
1822 // remove primary key constraint because column time is not necessarily unique
2282 String key = MediaStore.Audio.keyFor(searchWords[i]);
2283 key = key.replace("\\", "\\\\");
2284 key = key.replace("%", "\\%");
2285 key
[all...]
/packages/apps/Calendar/src/com/android/calendar/alerts/
H A DGlobalDismissManager.java396 * @param key row name for the table
399 private static String buildMultipleIdQuery(Set<Long> ids, String key) { argument
408 selection.append(key);
/packages/apps/Calendar/src/com/android/calendar/selectcalendars/
H A DSelectSyncedCalendarsMultiAccountAdapter.java426 for (String key : mChildrenCursors.keySet()) {
427 Cursor cursor = mChildrenCursors.get(key);
/packages/apps/DeskClock/src/com/android/deskclock/
H A DUtils.java72 * Help URL query parameter key for the app version.
203 String key = Stopwatches.PREF_LAP_TIME + Integer.toString(i);
204 editor.remove(key);
/packages/apps/DeskClock/src/com/android/deskclock/stopwatch/
H A DStopwatchService.java324 String key = Stopwatches.PREF_LAP_TIME + Integer.toString(lap_i + 1);
325 long lap = prefs.getLong(key, 0);
/packages/apps/Exchange/src/com/android/exchange/
H A DEasAccountService.java365 // active; otherwise, clear out the key/flag. This should cause a provisioning
367 String key = mAccount.mSecuritySyncKey;
368 if (!TextUtils.isEmpty(key)) {

Completed in 3033 milliseconds

<<111213