Searched defs:key (Results 1 - 25 of 611) sorted by last modified time

1234567891011>>

/frameworks/wilhelm/src/autogen/
H A DIID_to_MPH.cpp248 unsigned key = asso_values[((unsigned char *)iid)[8]] + local
250 if (key <= MAX_HASH_VALUE) {
251 int MPH = hash_to_MPH[key];
/frameworks/support/frameworks/support/samples/SupportLeanbackShowcase/gradle/wrapper/
H A Dgradle-wrapper.jar ... .FileInputStream inStream java.io.IOException e String key java.util.regex.Matcher matcher Object argument ...
/frameworks/support/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dgson-1.7.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/gson/ com/google/gson/annotations/ ...
H A Dpicasso-2.5.2.jar ... android.graphics.drawable.Drawable errorDrawable final String key final Object tag boolean willReplay boolean cancelled void " href= ...
/frameworks/support/samples/SupportLeanbackShowcase/gradle/wrapper/
H A Dgradle-wrapper.jar ... .FileInputStream inStream java.io.IOException e String key java.util.regex.Matcher matcher Object argument ...
/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dgson-1.7.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/gson/ com/google/gson/annotations/ ...
H A Dpicasso-2.5.2.jar ... android.graphics.drawable.Drawable errorDrawable final String key final Object tag boolean willReplay boolean cancelled void " href= ...
/frameworks/support/transition/src/android/support/transition/
H A DTransition.java731 for (String key : start.values.keySet()) {
732 Object startValue = start.values.get(key);
733 Object endValue = end.values.get(key);
735 Log.d(LOG_TAG, " " + key + ": start(" + startValue
1847 for (String key : startValues.values.keySet()) {
1848 if (isValueChanged(startValues, endValues, key)) {
1859 String key) {
1860 Object oldValue = oldValues.values.get(key);
1861 Object newValue = newValues.values.get(key);
1875 + "oldValue != newValue for " + key
1858 isValueChanged(TransitionValues oldValues, TransitionValues newValues, String key) argument
[all...]
/frameworks/support/v14/preference/src/android/support/v14/preference/
H A DEditTextPreferenceDialogFragment.java36 public static EditTextPreferenceDialogFragment newInstance(String key) { argument
40 b.putString(ARG_KEY, key);
H A DListPreferenceDialogFragment.java36 public static ListPreferenceDialogFragment newInstance(String key) { argument
39 b.putString(ARG_KEY, key);
H A DMultiSelectListPreferenceDialogFragment.java45 public static MultiSelectListPreferenceDialogFragment newInstance(String key) { argument
49 b.putString(ARG_KEY, key);
H A DPreferenceFragment.java246 * {@link android.support.v7.preference.PreferenceScreen} with this key.
449 * the preference hierarchy rooted at {@code key}.
452 * @param key The preference key of the {@link android.support.v7.preference.PreferenceScreen}
456 public void setPreferencesFromResource(@XmlRes int preferencesResId, @Nullable String key) { argument
463 if (key != null) {
464 root = xmlRoot.findPreference(key);
466 throw new IllegalArgumentException("Preference object with key " + key
520 * Finds a {@link Preference} based on its key
527 findPreference(CharSequence key) argument
676 scrollToPreference(final String key) argument
684 scrollToPreferenceInternal(final Preference preference, final String key) argument
729 ScrollToPreferenceObserver(RecyclerView.Adapter adapter, RecyclerView list, Preference preference, String key) argument
[all...]
/frameworks/support/v17/leanback/src/android/support/v17/leanback/system/
H A DSettings.java78 * Returns the boolean preference for the given key.
80 public boolean getBoolean(String key) { argument
81 return getOrSetBoolean(key, false, false);
85 * Sets the boolean preference for the given key. If an app uses this api to override
88 public void setBoolean(String key, boolean value) { argument
89 getOrSetBoolean(key, true, value);
92 boolean getOrSetBoolean(String key, boolean set, boolean value) { argument
93 if (key.compareTo(PREFER_STATIC_SHADOWS) == 0) {
96 throw new IllegalArgumentException("Invalid key");
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DGuidedAction.java896 * Save action into a bundle using a given key. When isAutoRestoreEna() is true:
903 * @param key Key used to save the Action.
905 public void onSaveInstanceState(Bundle bundle, String key) { argument
907 bundle.putString(key, getTitle().toString());
909 bundle.putString(key, getDescription().toString());
911 bundle.putBoolean(key, isChecked());
916 * Restore action from a bundle using a given key. When isAutoRestore() is true:
923 * @param key Key used to restore the Action.
925 public void onRestoreInstanceState(Bundle bundle, String key) { argument
927 String title = bundle.getString(key);
[all...]
H A DGuidedDatePickerAction.java180 public void onSaveInstanceState(Bundle bundle, String key) { argument
181 bundle.putLong(key, getDate());
185 public void onRestoreInstanceState(Bundle bundle, String key) { argument
186 setDate(bundle.getLong(key, getDate()));
H A DSparseArrayObjectAdapter.java8 * with an integer key which determines its order relative to other objects.
55 * Returns the index for the given key in the adapter.
57 * @param key The key to find in the array.
60 public int indexOf(int key) { argument
61 return mItems.indexOfKey(key);
76 * Sets the item for the given key.
78 * @param key The key associated with the item.
79 * @param item The item associated with the key
81 set(int key, Object item) argument
100 clear(int key) argument
123 lookup(int key) argument
[all...]
/frameworks/support/v17/leanback/tests/java/android/support/v17/leanback/widget/
H A DGridWidgetTest.java172 * Scrolls using given key.
174 protected void scroll(int key, Runnable verify) throws Throwable { argument
179 sendRepeatedKeys(10, key);
190 int key;
193 key = KeyEvent.KEYCODE_DPAD_UP;
196 key = KeyEvent.KEYCODE_DPAD_RIGHT;
198 key = KeyEvent.KEYCODE_DPAD_LEFT;
201 scroll(key, null);
204 key = KeyEvent.KEYCODE_DPAD_RIGHT;
206 key
[all...]
/frameworks/support/v17/preference-leanback/src/android/support/v17/preference/
H A DLeanbackListPreferenceDialogFragment.java61 public static LeanbackListPreferenceDialogFragment newInstanceSingle(String key) { argument
63 args.putString(ARG_KEY, key);
72 public static LeanbackListPreferenceDialogFragment newInstanceMulti(String key) { argument
74 args.putString(ARG_KEY, key);
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DAppCompatDrawableManager.java235 final long key = createCacheKey(tv);
237 Drawable dr = getCachedDrawable(context, key);
254 addDrawableToCache(context, key, dr);
332 final long key = createCacheKey(tv);
334 Drawable dr = getCachedDrawable(context, key);
371 if (addDrawableToCache(context, key, dr) && DEBUG) {
391 private Drawable getCachedDrawable(@NonNull final Context context, final long key) { argument
399 final WeakReference<ConstantState> wr = cache.get(key);
401 // We have the key, and the secret
407 cache.delete(key);
414 addDrawableToCache(@onNull final Context context, final long key, @NonNull final Drawable drawable) argument
[all...]
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/
H A DGridLayout.java1275 private void include(List<Arc> arcs, Interval key, MutableInt size, argument
1283 if (key.size() == 0) {
1291 if (span.equals(key)) {
1296 arcs.add(new Arc(key, size));
1299 private void include(List<Arc> arcs, Interval key, MutableInt size) { argument
1300 include(arcs, key, size, true);
1370 Interval key = links.keys[i];
1371 include(result, key, links.values[i], false);
2112 In place of a HashMap from span to Int, use an array of key/value pairs - stored in Arcs.
2167 public void put(K key, argument
[all...]
/frameworks/support/v7/preference/src/android/support/v7/preference/
H A DDialogPreference.java42 Preference findPreference(CharSequence key); argument
H A DEditTextPreferenceDialogFragmentCompat.java35 public static EditTextPreferenceDialogFragmentCompat newInstance(String key) { argument
39 b.putString(ARG_KEY, key);
H A DListPreferenceDialogFragmentCompat.java37 public static ListPreferenceDialogFragmentCompat newInstance(String key) { argument
41 b.putString(ARG_KEY, key);
75 private static void putCharSequenceArray(Bundle out, String key, CharSequence[] entries) { argument
82 out.putStringArrayList(key, stored);
85 private static CharSequence[] getCharSequenceArray(Bundle in, String key) { argument
86 final ArrayList<String> stored = in.getStringArrayList(key);
H A DMultiSelectListPreferenceDialogFragmentCompat.java45 public static MultiSelectListPreferenceDialogFragmentCompat newInstance(String key) { argument
49 b.putString(ARG_KEY, key);
H A DPreference.java60 * This class contains a {@code key} that will be used as the key into the
72 * @attr name android:key
476 * set individual extra key/value pairs.
913 * Sets the key for this Preference, which is used as a key to the {@link SharedPreferences} or
916 * @param key The key for the preference.
918 public void setKey(String key) { argument
919 mKey = key;
1344 findPreferenceInHierarchy(String key) argument
[all...]

Completed in 4948 milliseconds

1234567891011>>