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

/packages/apps/Camera/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/apps/Gallery2/src/com/android/gallery3d/util/
H A DIdentityCache.java69 public synchronized ArrayList<K> keys() { method in class:IdentityCache
/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.java31 /** Number of key widths from current touch point to search for nearest keys. */
47 int keyHeight, List<Key> keys, TouchPositionCorrection touchPositionCorrection) {
61 computeNearestNeighbors(keyWidth, keys, touchPositionCorrection);
90 int keyboardHeight, List<Key> keys,
98 keys.get(gridNeighborKeyIndexes[i][j]).mCode;
101 final int keyCount = keys.size();
108 final Key key = keys.get(i);
124 calculateSweetSpot(keys, touchPositionCorrection,
134 private void calculateSweetSpot(List<Key> keys, TouchPositionCorrection touchPositionCorrection, argument
136 final int keyCount = keys
46 ProximityInfo(int gridWidth, int gridHeight, int minWidth, int height, int keyWidth, int keyHeight, List<Key> keys, TouchPositionCorrection touchPositionCorrection) argument
89 setProximityInfo(int[][] gridNeighborKeyIndexes, int keyboardWidth, int keyboardHeight, List<Key> keys, TouchPositionCorrection touchPositionCorrection) argument
176 computeNearestNeighbors(int defaultWidth, List<Key> keys, TouchPositionCorrection touchPositionCorrection) argument
[all...]
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DDataRowHandler.java358 public boolean areAllEmpty(ContentValues values, String[] keys) { argument
359 for (String key : keys) {
368 * Returns true if a value (possibly null) is specified for at least one of the supplied keys.
370 public boolean areAnySpecified(ContentValues values, String[] keys) { argument
371 for (String key : keys) {
/packages/providers/CalendarProvider/src/com/android/providers/calendar/
H A DCalendarProvider2.java1540 private void checkAllowedInException(Set<String> keys) { argument
1541 for (String str : keys) {

Completed in 280 milliseconds