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

12

/frameworks/support/v4/ics/android/support/v4/view/
H A DViewGroupCompatIcs.java27 public static boolean onRequestSendAccessibilityEvent(ViewGroup group, View child, argument
29 return group.onRequestSendAccessibilityEvent(child, event);
/frameworks/support/v4/java/android/support/v4/view/
H A DViewGroupCompat.java31 public boolean onRequestSendAccessibilityEvent(ViewGroup group, View child, argument
37 ViewGroup group, View child, AccessibilityEvent event) {
45 ViewGroup group, View child, AccessibilityEvent event) {
46 return ViewGroupCompatIcs.onRequestSendAccessibilityEvent(group, child, event);
76 * @param group The group whose method to invoke.
81 public static boolean onRequestSendAccessibilityEvent(ViewGroup group, View child, argument
83 return IMPL.onRequestSendAccessibilityEvent(group, child, event);
36 onRequestSendAccessibilityEvent( ViewGroup group, View child, AccessibilityEvent event) argument
44 onRequestSendAccessibilityEvent( ViewGroup group, View child, AccessibilityEvent event) argument
/frameworks/base/voip/java/android/net/rtp/
H A DAudioStream.java79 * Joins an {@link AudioGroup}. Each stream can join only one group at a
80 * time. The group can be changed by passing a different one or removed
83 * @param group The AudioGroup to join or {@code null} to leave.
87 public void join(AudioGroup group) { argument
89 if (mGroup == group) {
96 if (group != null) {
97 group.add(this);
98 mGroup = group;
/frameworks/wilhelm/src/itf/
H A DI3DGrouping.c22 static SLresult I3DGrouping_Set3DGroup(SL3DGroupingItf self, SLObjectItf group) argument
27 C3DGroup *newGroup = (C3DGroup *) group;
30 // check that new group has the correct object ID and is realized, and acquire a strong
32 // specifies group as this audio player
34 // the new group is left unlocked, but it will be locked again below
47 // remove this object from the old group's set of objects
50 // note that we already have a strong reference to the old group
56 // add this object to the new group's set of objects
59 // we already have a strong reference to the new group, but we need to re-lock it
84 C3DGroup *group local
109 C3DGroup *group = thiz->mGroup; local
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_slice_group_map.c103 Function to decode interleaved slice group map type, i.e. slice
104 group map type 0.
109 runLength run_length[] values for each slice group
113 map slice group map is stored here
129 u32 i,j, group; local
140 for (group = 0; group < numSliceGroups && i < picSize;
141 i += runLength[group++])
143 ASSERT(runLength[group] <= picSize);
144 for (j = 0; j < runLength[group]
237 u32 group; local
[all...]
/frameworks/base/core/java/android/content/pm/
H A DPermissionInfo.java93 * The group this permission is a part of, as per
96 public String group; field in class:PermissionInfo
166 group = orig.group;
209 dest.writeString(group);
228 group = source.readString();
/frameworks/base/wifi/java/android/net/wifi/p2p/
H A DWifiP2pGroupList.java27 * A class representing a Wi-Fi P2p group list
69 * Return the list of p2p group.
71 * @return the list of p2p group.
78 * Add the specified group to this group list.
80 * @param group
82 void add(WifiP2pGroup group) { argument
83 mGroups.put(group.getNetworkId(), group);
87 * Remove the group wit
[all...]
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardProperty.java80 public void addGroup(String group) { argument
84 mGroupList.add(group);
/frameworks/base/core/java/android/preference/
H A DPreferenceGroupAdapter.java32 * An adapter that returns the {@link Preference} contained in this group.
54 * The group that we are providing data from.
116 // If this group gets or loses any children, let us know
146 private void flattenPreferenceGroup(List<Preference> preferences, PreferenceGroup group) { argument
148 group.sortPreferences();
150 final int groupSize = group.getPreferenceCount();
152 final Preference preference = group.getPreference(i);
232 // There should always be a preference group, and these groups are always
/frameworks/base/core/java/android/view/
H A DMenu.java77 * Value to use for group and item identifier integers when you don't care
83 * First value for group and item identifier integers.
118 * any existing menu items in the same group.
157 * @param groupId The group identifier that this item should be part of.
160 * group.
174 * @param groupId The group identifier that this item should be part of.
177 * group.
216 * @param groupId The group identifier that this item should be part of.
219 * group.
233 * @param groupId The group identifie
339 setGroupCheckable(int group, boolean checkable, boolean exclusive) argument
349 setGroupVisible(int group, boolean visible) argument
359 setGroupEnabled(int group, boolean enabled) argument
[all...]
H A DViewDebug.java510 ViewGroup group = (ViewGroup) view;
511 final int count = group.getChildCount();
513 forceLayout(group.getChildAt(i));
578 ViewGroup group = (ViewGroup) view;
579 final int count = group.getChildCount();
581 profileViewAndChildren(group.getChildAt(i), out, false);
684 ViewGroup group = (ViewGroup) view;
685 int count = group.getChildCount();
688 captureViewLayer(group.getChildAt(i), clientStream, localVisible);
761 ViewGroup group
775 findView(ViewGroup group, String className, int hashCode) argument
807 dumpViewHierarchyWithProperties(Context context, ViewGroup group, BufferedWriter out, int level) argument
[all...]
H A DVolumePanel.java205 ViewGroup group; field in class:VolumePanel.StreamControl
402 sc.group = (ViewGroup) inflater.inflate(R.layout.volume_adjust_item, null);
403 sc.group.setTag(sc);
404 sc.icon = (ImageView) sc.group.findViewById(R.id.stream_icon);
410 sc.seekbarView = (SeekBar) sc.group.findViewById(R.id.seekbar);
428 mSliderGroup.addView(active.group);
430 active.group.setVisibility(View.VISIBLE);
447 mSliderGroup.addView(sc.group);
/frameworks/base/core/java/android/widget/
H A DRadioGroup.java32 * buttons. Checking one radio button that belongs to a radio group unchecks
33 * any previously checked radio button within the same group.</p>
36 * to uncheck a particular radio button, the radio group can be cleared to
149 * @param id the unique id of the radio button to select in this group
186 * <p>Returns the identifier of the selected radio button in this group.
189 * @return the unique id of the selected radio button in this group
202 * in this group is selected and {@link #getCheckedRadioButtonId()} returns
214 * changes in this group.</p>
331 * radio button changed in this group.</p>
338 * @param group th
341 onCheckedChanged(RadioGroup group, int checkedId) argument
[all...]
/frameworks/base/core/java/com/android/internal/view/menu/
H A DActionMenu.java218 public void setGroupCheckable(int group, boolean checkable, argument
225 if (item.getGroupId() == group) {
232 public void setGroupEnabled(int group, boolean enabled) { argument
238 if (item.getGroupId() == group) {
244 public void setGroupVisible(int group, boolean visible) { argument
250 if (item.getGroupId() == group) {
H A DActionMenuItem.java59 public ActionMenuItem(Context context, int group, int id, int categoryOrder, int ordering, argument
63 mGroup = group;
H A DMenuBuilder.java386 private MenuItem addInternal(int group, int id, int categoryOrder, CharSequence title) { argument
389 final MenuItemImpl item = new MenuItemImpl(this, group, id, categoryOrder,
411 public MenuItem add(int group, int id, int categoryOrder, CharSequence title) { argument
412 return addInternal(group, id, categoryOrder, title);
415 public MenuItem add(int group, int id, int categoryOrder, int title) { argument
416 return addInternal(group, id, categoryOrder, mResources.getString(title));
427 public SubMenu addSubMenu(int group, int id, int categoryOrder, CharSequence title) { argument
428 final MenuItemImpl item = (MenuItemImpl) addInternal(group, id, categoryOrder, title);
435 public SubMenu addSubMenu(int group, int id, int categoryOrder, int title) { argument
436 return addSubMenu(group, i
439 addIntentOptions(int group, int id, int categoryOrder, ComponentName caller, Intent[] specifics, Intent intent, int flags, MenuItem[] outSpecificItems) argument
472 removeGroup(int group) argument
544 setGroupCheckable(int group, boolean checkable, boolean exclusive) argument
556 setGroupVisible(int group, boolean visible) argument
573 setGroupEnabled(int group, boolean enabled) argument
628 findGroupIndex(int group) argument
632 findGroupIndex(int group, int start) argument
[all...]
/frameworks/base/tools/aapt/
H A DPackage.cpp40 const sp<AaptGroup>& group, const sp<AaptFile>& file);
294 const sp<AaptGroup>& group, const sp<AaptFile>& file)
298 String8 storageName(group->getPath());
293 processFile(Bundle* bundle, ZipFile* zip, const sp<AaptGroup>& group, const sp<AaptFile>& file) argument
/frameworks/base/core/java/android/app/
H A DMediaRouteButton.java468 public void onRouteGrouped(MediaRouter router, RouteInfo info, RouteGroup group, argument
474 public void onRouteUngrouped(MediaRouter router, RouteInfo info, RouteGroup group) { argument
H A DApplicationThreadNative.java418 int group = data.readInt();
419 setSchedulingGroup(group);
1050 public void setSchedulingGroup(int group) throws RemoteException { argument
1053 data.writeInt(group);
/frameworks/av/media/mtp/
H A DMtpDevice.cpp668 bool MtpDevice::readObject(MtpObjectHandle handle, const char* destPath, int group, int perm) { argument
676 fchown(fd, getuid(), group);
/frameworks/base/services/java/com/android/server/
H A DTextServicesManagerService.java419 Slog.e(TAG, "The state of the spell checker bind group is illegal.");
485 final SpellCheckerBindGroup group = new SpellCheckerBindGroup(
487 mSpellCheckerBindGroups.put(sciId, group);
516 for (SpellCheckerBindGroup group : mSpellCheckerBindGroups.values()) {
517 if (group == null) continue;
519 removeList.add(group);
762 // do not add the lister if the group already contains this.
821 Slog.d(TAG, "Remove bind group.");
867 final SpellCheckerBindGroup group = mSpellCheckerBindGroups.get(mSciId);
868 if (group !
891 InternalDeathRecipient(SpellCheckerBindGroup group, ITextServicesSessionListener tsListener, String scLocale, ISpellCheckerSessionListener scListener, int uid, Bundle bundle) argument
[all...]
/frameworks/base/services/java/com/android/server/display/
H A DWifiDisplayController.java130 // The device to which we are currently connected, which means we have an active P2P group.
133 // The group info obtained after connecting.
704 Slog.d(TAG, "Received group info: " + describeWifiP2pGroup(info));
709 + "the current P2P group does not contain the device "
711 + ", group info was: " + describeWifiP2pGroup(info));
737 // After disconnection for a group, for some reason we have a tendency
893 private static String describeWifiP2pGroup(WifiP2pGroup group) { argument
894 return group != null ? group.toString().replace('\n', ',') : "null";
/frameworks/base/voip/java/android/net/sip/
H A DSipAudioCall.java941 * joins. The group object may not exist before the call is established.
942 * Also, the {@code AudioStream} may change its group during a call (e.g.,
945 * {@link #close} method is called. If a group object is set by
972 public void setAudioGroup(AudioGroup group) { argument
975 mAudioStream.join(group);
977 mAudioGroup = group;
1082 // set audio group mode based on current audio configuration
/frameworks/base/core/java/android/os/
H A DProcess.java77 * Defines the UID/GID for the log group.
101 * Defines the GID for the group that allows write access to the SD card.
107 * Defines the UID/GID for the group that controls VPN services.
125 * Defines the GID for the group that allows write access to the internal media storage.
169 * Defines a secondary group id for access to the bluetooth hardware.
300 * Default thread group -
302 * When used with setProcessGroup(), the group of each thread in the process
305 * are moved to foreground thread group. All other threads are left unchanged.
311 * Background thread group - All threads in
312 * this group ar
786 setThreadGroup(int tid, int group) argument
807 setProcessGroup(int pid, int group) argument
[all...]
/frameworks/base/core/java/com/android/internal/app/
H A DMediaRouteChooserDialogFragment.java256 * mCategoryEditingGroups (a flattened RouteInfo pulled out of its group, allowing
257 * the user to change the group),
334 final RouteGroup group = route.getGroup();
335 if (group == route) {
336 // This is a group, unpack it.
337 final int groupCount = group.getRouteCount();
339 final RouteInfo innerRoute = group.getRouteAt(j);
482 RouteGroup group = info.getGroup();
483 holder.check.setEnabled(group.getRouteCount() > 1);
484 holder.check.setChecked(group
615 onRouteGrouped(MediaRouter router, RouteInfo info, RouteGroup group, int index) argument
621 onRouteUngrouped(MediaRouter router, RouteInfo info, RouteGroup group) argument
[all...]

Completed in 419 milliseconds

12