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

/packages/apps/Camera/src/com/android/camera/ui/
H A DIndicatorControlContainer.java26 public abstract void initialize(Context context, PreferenceGroup group, argument
H A DIndicatorControlBar.java54 public void initialize(Context context, PreferenceGroup group, argument
56 setPreferenceGroup(group);
H A DIndicatorControlBarContainer.java68 public void initialize(Context context, PreferenceGroup group, argument
72 mIndicatorControlBar.initialize(context, group, isZoomSupported);
74 mSecondLevelIndicatorControlBar.initialize(context, group,
H A DOtherSettingsPopup.java96 public void initialize(PreferenceGroup group, String[] keys) { argument
99 ListPreference pref = group.findPreference(keys[i]);
H A DIndicatorControl.java79 public void setPreferenceGroup(PreferenceGroup group) { argument
80 mPreferenceGroup = group;
81 // Preset the current mode from the title of preference group.
82 String title = group.getTitle();
H A DIndicatorControlWheelContainer.java59 public void initialize(Context context, PreferenceGroup group, argument
61 mIndicatorControlWheel.initialize(context, group, isZoomSupported,
H A DSecondLevelIndicatorControlBar.java59 public void initialize(Context context, PreferenceGroup group, argument
62 setPreferenceGroup(group);
H A DIndicatorControlWheel.java157 public void initialize(Context context, PreferenceGroup group, argument
163 setPreferenceGroup(group);
/packages/apps/Contacts/src/com/android/contacts/group/
H A DGroupDetailDisplayUtils.java17 package com.android.contacts.group;
H A DGroupListItem.java16 package com.android.contacts.group;
19 * Meta-data for a contact group. We load all groups associated with the contact's
H A DGroupBrowseListAdapter.java17 package com.android.contacts.group;
60 // If there's no selected group already and the cursor is valid, then by default, select the
61 // first group
127 // Figure out if this is the first group for this account name / account type pair by
162 // Add a header if this is the first group in an account and hide the divider
183 // Bind the group data
H A DGroupBrowseListFragment.java17 package com.android.contacts.group;
22 import com.android.contacts.group.GroupBrowseListAdapter.GroupListItemViewCache;
60 * Action callbacks that can be sent by a group list.
65 * Opens the specified group for viewing.
67 * @param groupUri for the group that the user wishes to view.
194 * The listener for the group meta data loader for all groups.
H A DSuggestedMemberListAdapter.java16 package com.android.contacts.group;
19 import com.android.contacts.group.SuggestedMemberListAdapter.SuggestedMember;
48 * This adapter provides suggested contacts that can be added to a group for an
49 * {@link AutoCompleteTextView} within the group editor.
210 // Read back the results from the cursor and filter out existing group members.
217 // Filter out contacts that have already been added to this group
221 // Otherwise, add the contact as a suggested new group member
316 * This represents a single contact that is a suggestion for the user to add to a group.
H A DGroupDetailFragment.java17 package com.android.contacts.group;
58 * Displays the details of a group and shows a list of actions possible for the group.
64 * The group title has been loaded
69 * The number of group members has been determined
193 * Start the loader to retrieve the metadata for this group.
200 * Start the loader to retrieve the list of group members.
216 * The listener for the group metadata loader.
248 * The listener for the group members list loader
296 * Display the count of the number of group member
[all...]
H A DGroupEditorFragment.java17 package com.android.contacts.group;
28 import com.android.contacts.group.SuggestedMemberListAdapter.SuggestedMember;
165 LOADING, // Loader is fetching the group metadata
362 * @return true if the group membership is editable on this account type. false otherwise,
373 * Sets up the editor based on the group's account name and type.
425 // Setup the autocomplete adapter (for contacts to suggest to add to the group) based on the
458 // If the group name is ready only, don't let the user focus on the field.
488 // Setup the group metadata display
570 * Saves or creates the group based on the mode, and if successful
571 * finishes the activity. This actually only handles saving the group nam
[all...]
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/preferences/
H A DSettingsFragmentBase.java66 protected void handlePreferenceGroup(PreferenceGroup group) { argument
67 for (int i = 0; i < group.getPreferenceCount(); ++i) {
68 Preference p = group.getPreference(i);
72 mController.handlePreference(group.getPreference(i));
/packages/apps/Contacts/tests/src/com/android/contacts/calllog/
H A DCallLogGroupBuilderTest.java112 // Does not group with other types of calls, include voicemail themselves.
122 // Does not group with other types of calls.
134 // Does not group with voicemail and missed calls.
145 // Does not group with voicemail and missed calls.
237 /** Asserts that calls of the given types are grouped together into a single group. */
312 /** Asserts that the group matches the given values. */
313 private void assertGroupIs(int cursorPosition, int size, boolean expanded, GroupSpec group) { argument
314 assertEquals(cursorPosition, group.cursorPosition);
315 assertEquals(size, group.size);
316 assertEquals(expanded, group
[all...]
/packages/apps/Camera/src/com/android/camera/
H A DCameraSettings.java80 PreferenceGroup group =
82 initPreference(group);
83 return group;
116 PreferenceGroup group, String key) {
117 removePreference(group, key);
135 private void initPreference(PreferenceGroup group) { argument
136 ListPreference videoQuality = group.findPreference(KEY_VIDEO_QUALITY);
137 ListPreference timeLapseInterval = group.findPreference(KEY_VIDEO_TIME_LAPSE_FRAME_INTERVAL);
138 ListPreference pictureSize = group.findPreference(KEY_PICTURE_SIZE);
139 ListPreference whiteBalance = group
115 removePreferenceFromScreen( PreferenceGroup group, String key) argument
195 buildExposureCompensation( PreferenceGroup group, ListPreference exposure) argument
220 buildCameraId( PreferenceGroup group, IconListPreference preference) argument
242 removePreference(PreferenceGroup group, String key) argument
259 filterUnsupportedOptions(PreferenceGroup group, ListPreference pref, List<String> supported) argument
478 initVideoEffect(PreferenceGroup group, ListPreference videoEffect) argument
[all...]
/packages/apps/Settings/src/com/android/settings/wifi/
H A DWifiConfigController.java178 ViewGroup group = (ViewGroup) mView.findViewById(R.id.info);
182 addRow(group, R.string.wifi_status, Summary.get(mConfigUi.getContext(), state));
188 addRow(group, R.string.wifi_signal, signal[level]);
193 addRow(group, R.string.wifi_speed, info.getLinkSpeed() + WifiInfo.LINK_SPEED_UNITS);
196 addRow(group, R.string.wifi_security, mAccessPoint.getSecurityString(false));
209 addRow(group, R.string.wifi_ip_address, a.getHostAddress());
222 addRow(group, R.string.wifi_disabled_heading,
266 private void addRow(ViewGroup group, int name, String value) { argument
267 View row = mConfigUi.getLayoutInflater().inflate(R.layout.wifi_dialog_row, group, false);
270 group
[all...]
/packages/inputmethods/LatinIME/tools/makedict/src/com/android/inputmethod/latin/
H A DBinaryDictInputOutput.java249 * Compute the binary size of the character array in a group
254 * @param group the group
257 private static int getGroupCharactersSize(CharGroup group) { argument
258 int size = CharEncoding.getCharArraySize(group.mChars);
259 if (group.hasSeveralChars()) size += GROUP_TERMINATOR_SIZE;
266 * @param group the CharGroup to compute the size of.
267 * @return the maximum size of the group.
269 private static int getCharGroupMaximumSize(CharGroup group) { argument
270 int size = getGroupCharactersSize(group)
526 makeCharGroupFlags(final CharGroup group, final int groupAddress, final int childrenOffset) argument
[all...]
/packages/apps/Contacts/src/com/android/contacts/list/
H A DCustomContactListFilterActivity.java154 // Create entries for each known group
157 final GroupDelta group = GroupDelta.fromBefore(values);
158 accountDisplay.addGroup(group);
450 * children under a single expandable group.
476 private void addGroup(GroupDelta group) { argument
477 if (group.getShouldSync()) {
478 mSyncedGroups.add(group);
480 mUnsyncedGroups.add(group);
527 for (GroupDelta group : mSyncedGroups) {
528 final ContentProviderOperation oper = group
[all...]
/packages/apps/Launcher2/src/com/android/launcher2/
H A DFolderIcon.java111 static FolderIcon fromXml(int resId, Launcher launcher, ViewGroup group, argument
120 FolderIcon icon = (FolderIcon) LayoutInflater.from(launcher).inflate(resId, group, false);
/packages/apps/Calendar/src/com/android/calendar/
H A DEventInfoFragment.java554 public void onCheckedChanged(RadioGroup group, int checkedId) { argument
/packages/apps/Contacts/src/com/android/contacts/
H A DContactLoader.java462 private void addGroupMetaData(GroupMetaData group) { argument
466 mGroups.add(group);
/packages/apps/Exchange/src/com/android/exchange/adapter/
H A DContactsSyncAdapter.java1104 * @param stringType for groups, the name of the group (type will be ignored), or null
1191 public void addGroup(Entity entity, String group) { argument
1193 createBuilder(entity, GroupMembership.CONTENT_ITEM_TYPE, -1, group);
1194 builder.withValue(GroupMembership.GROUP_SOURCE_ID, group);
1499 // TODO Perhaps the visible part should only happen when the group is created, but
1756 // For each, "touch" all data rows with this group id; this will mark contacts
1757 // in this group as dirty (per ContactsContract). We will then know to upload
1758 // them to the server with the modified group information

Completed in 491 milliseconds