Searched defs:keys (Results 1 - 18 of 18) sorted by relevance

/packages/apps/Gallery2/src/com/android/gallery3d/util/
H A DIdentityCache.java73 public synchronized ArrayList<K> keys() { method in class:IdentityCache
/packages/apps/LegacyCamera/src/com/android/camera/ui/
H A DIndicatorControlContainer.java27 boolean isZoomSupported, String[] keys, String[] otherSettingKeys);
26 initialize(Context context, PreferenceGroup group, boolean isZoomSupported, String[] keys, String[] otherSettingKeys) argument
H A DOtherSettingsPopup.java96 public void initialize(PreferenceGroup group, String[] keys) { argument
98 for (int i = 0; i < keys.length; ++i) {
99 ListPreference pref = group.findPreference(keys[i]);
H A DIndicatorControl.java89 protected void addControls(String[] keys, String[] otherSettingKeys) { argument
90 if (keys != null) {
91 for (int i = 0; i < keys.length; i++) {
93 (IconListPreference) mPreferenceGroup.findPreference(keys[i]);
133 int resId, String[] keys) {
135 context, resId, mPreferenceGroup, keys);
132 addOtherSettingIndicator(Context context, int resId, String[] keys) argument
H A DIndicatorControlWheelContainer.java60 boolean isZoomSupported, String[] keys, String[] otherSettingKeys) {
62 keys, otherSettingKeys);
59 initialize(Context context, PreferenceGroup group, boolean isZoomSupported, String[] keys, String[] otherSettingKeys) argument
H A DSecondLevelIndicatorControlBar.java60 String[] keys, String[] otherSettingKeys) {
64 addControls(keys, otherSettingKeys);
148 int resId, String[] keys) {
150 super.addOtherSettingIndicator(context, resId, keys);
59 initialize(Context context, PreferenceGroup group, String[] keys, String[] otherSettingKeys) argument
147 addOtherSettingIndicator(Context context, int resId, String[] keys) argument
H A DIndicatorControlWheel.java158 boolean isZoomSupported, String[] keys, String[] otherSettingKeys) {
180 addControls(keys, otherSettingKeys);
157 initialize(Context context, PreferenceGroup group, boolean isZoomSupported, String[] keys, String[] otherSettingKeys) argument
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
H A DContactLookupKeyTest.java224 String[] keys) {
233 assertEquals(keys[i], segment.key);
223 assertLookupKey(String lookupKey, int[] accountHashCodes, int[] types, String[] keys) argument
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/research/
H A DLogUnit.java44 public void addLogStatement(final String[] keys, final Object[] values, argument
46 mKeysList.add(keys);
H A DResearchLog.java210 void outputEvent(final String[] keys, final Object[] values) { argument
212 if (keys.length == 0) {
216 if (keys.length != values.length + 1) {
217 Log.d(TAG, "Key and Value list sizes do not match. " + keys[0]);
229 mJsonWriter.name(EVENT_TYPE_KEY).value(keys[0]);
232 mJsonWriter.name(keys[i + 1]);
H A DResearchLogger.java653 * @param keys an array containing a descriptive name for the event, followed by the keys
655 * less than the keys array
657 private synchronized void enqueuePotentiallyPrivateEvent(final String[] keys, argument
659 assert values.length + 1 == keys.length;
661 mCurrentLogUnit.addLogStatement(keys, values, true /* isPotentiallyPrivate */);
677 * @param keys an array containing a descriptive name for the event, followed by the keys
679 * less than the keys array
681 private synchronized void enqueueEvent(final String[] keys, fina argument
[all...]
/packages/apps/Camera/src/com/android/camera/ui/
H A DMoreSettingPopup.java121 public void initialize(PreferenceGroup group, String[] keys) { argument
123 for (int i = 0; i < keys.length; ++i) {
124 ListPreference pref = group.findPreference(keys[i]);
/packages/apps/Launcher2/src/com/android/launcher2/
H A DPagedViewIconCache.java97 /** Removes all the keys to applications that aren't in the passed in collection */
98 public void retainAllApps(ArrayList<ApplicationInfo> keys) { argument
100 for (ApplicationInfo info : keys) {
105 /** Removes all the keys to shortcuts that aren't in the passed in collection */
106 public void retainAllShortcuts(List<ResolveInfo> keys) { argument
108 for (ResolveInfo info : keys) {
113 /** Removes all the keys to widgets that aren't in the passed in collection */
114 public void retainAllAppWidgets(List<AppWidgetProviderInfo> keys) { argument
116 for (AppWidgetProviderInfo info : keys) {
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
H A DProximityInfo.java32 /** Number of key widths from current touch point to search for nearest keys. */
53 final int mostCommonKeyHeight, final Key[] keys,
69 mKeys = keys;
72 // No proximity required. Keyboard might be more keys keyboard.
113 final Key[] keys = mKeys;
123 final int keyCount = keys.length;
134 final Key key = keys[i];
149 final Key key = keys[i];
193 final Key[] keys = mKeys;
197 final Key[] neighborKeys = new Key[keys
51 ProximityInfo(final String localeStr, final int gridWidth, final int gridHeight, final int minWidth, final int height, final int mostCommonKeyWidth, final int mostCommonKeyHeight, final Key[] keys, final TouchPositionCorrection touchPositionCorrection) argument
[all...]
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DDataRowHandler.java359 public boolean areAllEmpty(ContentValues values, String[] keys) { argument
360 for (String key : keys) {
369 * Returns true if a value (possibly null) is specified for at least one of the supplied keys.
371 public boolean areAnySpecified(ContentValues values, String[] keys) { argument
372 for (String key : keys) {
/packages/apps/Settings/src/com/android/settings/deviceinfo/
H A DStorageVolumePreferenceCategory.java310 private static long totalValues(HashMap<String, Long> map, String... keys) { argument
312 for (String key : keys) {
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
H A DCalendarProvider2Test.java222 * by checking for specific keys and converting the associated values.
2122 Set<String> keys, Cursor cursor) {
2124 for (String key : keys) {
2121 verifyContentValueAgainstCursor(ContentValues cv, Set<String> keys, Cursor cursor) argument
/packages/providers/CalendarProvider/src/com/android/providers/calendar/
H A DCalendarProvider2.java1577 private void checkAllowedInException(Set<String> keys) { argument
1578 for (String str : keys) {

Completed in 234 milliseconds