Searched defs:group (Results 26 - 50 of 56) sorted by relevance

123

/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
H A DActionMenuItem.java62 public ActionMenuItem(Context context, int group, int id, int categoryOrder, int ordering, argument
66 mGroup = group;
H A DMenuBuilder.java399 private MenuItem addInternal(int group, int id, int categoryOrder, CharSequence title) { argument
402 final MenuItemImpl item = new MenuItemImpl(this, group, id, categoryOrder,
427 public MenuItem add(int group, int id, int categoryOrder, CharSequence title) { argument
428 return addInternal(group, id, categoryOrder, title);
432 public MenuItem add(int group, int id, int categoryOrder, int title) { argument
433 return addInternal(group, id, categoryOrder, mResources.getString(title));
447 public SubMenu addSubMenu(int group, int id, int categoryOrder, CharSequence title) { argument
448 final MenuItemImpl item = (MenuItemImpl) addInternal(group, id, categoryOrder, title);
456 public SubMenu addSubMenu(int group, int id, int categoryOrder, int title) { argument
457 return addSubMenu(group, i
461 addIntentOptions(int group, int id, int categoryOrder, ComponentName caller, Intent[] specifics, Intent intent, int flags, MenuItem[] outSpecificItems) argument
496 removeGroup(int group) argument
576 setGroupCheckable(int group, boolean checkable, boolean exclusive) argument
589 setGroupVisible(int group, boolean visible) argument
611 setGroupEnabled(int group, boolean enabled) argument
668 findGroupIndex(int group) argument
672 findGroupIndex(int group, int start) argument
[all...]
H A DMenuItemImpl.java115 * @param group Item ordering grouping control. The item will be added after all other
123 MenuItemImpl(MenuBuilder menu, int group, int id, int categoryOrder, int ordering, argument
140 mGroup = group;
479 // exclusive checkable group
/frameworks/support/v7/mediarouter/jellybean/android/support/v7/media/
H A DMediaRouterJellybean.java183 final android.media.MediaRouter.RouteGroup group =
185 final int count = group.getRouteCount();
188 out.add(group.getRouteAt(i));
404 android.media.MediaRouter.RouteGroup group, int index) {
405 mCallback.onRouteGrouped(route, group, index);
411 android.media.MediaRouter.RouteGroup group) {
412 mCallback.onRouteUngrouped(route, group);
402 onRouteGrouped(android.media.MediaRouter router, android.media.MediaRouter.RouteInfo route, android.media.MediaRouter.RouteGroup group, int index) argument
409 onRouteUngrouped(android.media.MediaRouter router, android.media.MediaRouter.RouteInfo route, android.media.MediaRouter.RouteGroup group) argument
/frameworks/av/media/libstagefright/httplive/
H A DM3UParser.cpp307 sp<MediaGroup> group = mMediaGroups.valueAt(i); local
308 size_t tracks = group->countTracks();
310 status_t err = group->selectTrack(ii, select);
360 sp<MediaGroup> group = mMediaGroups.valueFor(groupID); local
361 if (!group->getActiveURI(uri)) {
704 ALOGE("Undefined media group '%s' referenced in stream info.",
898 ALOGE("Invalid media group type '%s'", val.c_str());
903 } else if (!strcasecmp("group-id", key.c_str())) {
1036 sp<MediaGroup> group; local
1039 group
[all...]
/frameworks/base/core/java/android/app/
H A DApplicationThreadNative.java429 int group = data.readInt();
430 setSchedulingGroup(group);
1100 public void setSchedulingGroup(int group) throws RemoteException { argument
1103 data.writeInt(group);
H A DApplicationPackageManager.java177 public List<PermissionInfo> queryPermissionsByGroup(String group, int flags) argument
180 List<PermissionInfo> pi = mPM.queryPermissionsByGroup(group, flags);
188 throw new NameNotFoundException(group);
H A DIApplicationThread.java120 void setSchedulingGroup(int group) throws RemoteException; argument
/frameworks/base/core/java/android/os/
H A DProcess.java79 * Defines the UID/GID for the log group.
103 * Defines the UID/GID for the group that controls VPN services.
121 * Defines the GID for the group that allows write access to the internal media storage.
298 * Default thread group -
300 * When used with setProcessGroup(), the group of each thread in the process
303 * are moved to foreground thread group. All other threads are left unchanged.
309 * Background thread group - All threads in
310 * this group are scheduled with a reduced share of the CPU.
318 * Foreground thread group - All threads in
319 * this group ar
798 setThreadGroup(int tid, int group) argument
819 setProcessGroup(int pid, int group) argument
[all...]
/frameworks/base/core/java/android/view/
H A DViewDebug.java519 ViewGroup group = (ViewGroup) view;
520 final int count = group.getChildCount();
522 forceLayout(group.getChildAt(i));
587 ViewGroup group = (ViewGroup) view;
588 final int count = group.getChildCount();
590 profileViewAndChildren(group.getChildAt(i), out, false);
694 ViewGroup group = (ViewGroup) view;
695 int count = group.getChildCount();
698 captureViewLayer(group.getChildAt(i), clientStream, localVisible);
792 ViewGroup group
807 findView(ViewGroup group, String className, int hashCode) argument
853 dumpViewHierarchy(Context context, ViewGroup group, BufferedWriter out, int level, boolean skipChildren, boolean includeProperties) argument
[all...]
H A DVolumePanel.java207 ViewGroup group; field in class:VolumePanel.StreamControl
416 sc.group = (ViewGroup) inflater.inflate(R.layout.volume_adjust_item, null);
417 sc.group.setTag(sc);
418 sc.icon = (ImageView) sc.group.findViewById(R.id.stream_icon);
424 sc.seekbarView = (SeekBar) sc.group.findViewById(R.id.seekbar);
442 mSliderGroup.addView(active.group);
444 active.group.setVisibility(View.VISIBLE);
461 mSliderGroup.addView(sc.group);
/frameworks/base/core/java/com/android/internal/view/menu/
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...]
H A DMenuItemImpl.java107 * @param group Item ordering grouping control. The item will be added after
115 MenuItemImpl(MenuBuilder menu, int group, int id, int categoryOrder, int ordering, argument
134 mGroup = group;
444 // exclusive checkable group
/frameworks/base/services/java/com/android/server/display/
H A DWifiDisplayController.java83 // 2. Discovery will self-abort after any group is initiated, which may not necessarily
131 // The device to which we are currently connected, which means we have an active P2P group.
134 // The group info obtained after connecting.
824 Slog.d(TAG, "Received group info: " + describeWifiP2pGroup(info));
829 + "the current P2P group does not contain the device "
831 + ", group info was: " + describeWifiP2pGroup(info));
846 // and no client has connected, save group info
881 // After disconnection for a group, for some reason we have a tendency
1044 private static String describeWifiP2pGroup(WifiP2pGroup group) { argument
1045 return group !
[all...]
/frameworks/base/test-runner/src/android/test/mock/
H A DMockPackageManager.java101 public List<PermissionInfo> queryPermissionsByGroup(String group, int flags) argument
/frameworks/opt/net/voip/src/java/com/android/server/sip/
H A DSipService.java81 // SipProfile URI --> group
129 for (SipSessionGroupExt group : mSipGroups.values()) {
130 if (isCallerRadio || isCallerCreator(group)) {
131 profiles.add(group.getLocalProfile());
165 SipSessionGroupExt group = createGroup(localProfile,
168 group.openToReceiveCalls();
177 private boolean isCallerCreator(SipSessionGroupExt group) { argument
178 SipProfile profile = group.getLocalProfile();
182 private boolean isCallerCreatorOrRadio(SipSessionGroupExt group) { argument
183 return (isCallerRadio() || isCallerCreator(group));
791 start(SipSessionGroup group) argument
[all...]
/frameworks/opt/net/voip/src/jni/rtp/
H A DAudioGroup.cpp85 // + Resampling is not done yet, so streams in one group must use the same rate.
508 NetworkThread(AudioGroup *group) : Thread(false), mGroup(group) {} argument
528 DeviceThread(AudioGroup *group) : Thread(false), mGroup(group) {} argument
569 ALOGD("group[%d] is dead", mDeviceSocket);
619 ALOGD("stream[%d] joins group[%d]", pair[1], pair[0]);
642 ALOGD("group[%d] switches from mode %d to %d", mDeviceSocket, mMode, mode);
690 ALOGD("stream[%d] joins group[%d]", stream->mSocket, mDeviceSocket);
705 ALOGD("stream[%d] leaves group[
945 AudioGroup *group = NULL; local
1028 AudioGroup *group = (AudioGroup *)env->GetIntField(thiz, gNative); local
1039 AudioGroup *group = (AudioGroup *)env->GetIntField(thiz, gNative); local
1047 AudioGroup *group = (AudioGroup *)env->GetIntField(thiz, gNative); local
[all...]
/frameworks/base/core/java/android/content/pm/
H A DPackageParser.java1056 } else if (tagName.equals("permission-group")) {
1653 "<permission-group>", sa,
1676 if (!parseAllMetaData(res, parser, attrs, "<permission-group>", perm,
1708 perm.info.group = sa.getNonResourceString(
1710 if (perm.info.group != null) {
1711 perm.info.group = perm.info.group.intern();
3740 public PermissionGroup group; field in class:PackageParser.Permission
H A DPackageManager.java120 * {@link PackageInfo#gids group ids} that are associated with an
1414 * Return an array of all of the secondary group-ids that have been
1463 * Query for all of the permissions associated with a particular group.
1465 * <p>Throws {@link NameNotFoundException} if the given group does not
1468 * @param group The fully qualified name (i.e. com.google.permission.LOGIN)
1469 * of the permission group you are interested in. Use null to
1470 * find all of the permissions not associated with a group.
1475 * about all of the permissions in the given group.
1477 public abstract List<PermissionInfo> queryPermissionsByGroup(String group, argument
1481 * Retrieve all of the information we know about a particular group o
[all...]
/frameworks/base/tools/aapt/
H A DAaptAssets.cpp1643 printf("Error adding file %s: group %s already exists in leaf=%s path=%s\n",
1744 sp<AaptGroup> group; local
1746 group = mFiles.valueFor(leafName);
1748 group = new AaptGroup(leafName, mPath.appendPathCopy(leafName));
1749 mFiles.add(leafName, group);
1752 return group->addFile(file);
2007 sp<AaptGroup> group; local
2019 group = dir->getFiles().valueAt(i);
2021 group = new AaptGroup(rootStr, filePath);
2022 status_t res = dir->addFile(rootStr, group);
2107 AaptGroupEntry group; local
2254 AaptGroupEntry group; local
[all...]
H A DResource.cpp100 sp<AaptGroup> group; local
103 // Try to get next file in this current group.
105 group = mGroup;
106 file = group->getFiles().valueAt(mGroupPos++);
108 // Try to get the next group/file in this directory
110 mGroup = group = mSet->valueAt(mSetPos++);
111 if (group->getFiles().size() < 1) {
114 file = group->getFiles().valueAt(0);
124 String8 leaf(group->getLeaf());
128 group
183 sp<AaptGroup> group = assets->getFiles().valueFor(String8("resources.arsc")); local
385 const sp<AaptGroup>& group = groups.valueAt(i); local
2566 const sp<AaptGroup>& group = groups.valueAt(i); local
[all...]
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiNative.java806 /* Invite a peer to a group */
807 public boolean p2pInvite(WifiP2pGroup group, String deviceAddress) { argument
810 if (group == null) {
813 return doBooleanCommand("P2P_INVITE group=" + group.getInterface()
814 + " peer=" + deviceAddress + " go_dev_addr=" + group.getOwner().deviceAddress);
/frameworks/base/wifi/java/android/net/wifi/p2p/
H A DWifiP2pManager.java70 * ,forms a p2p group or there is an explicit {@link #stopPeerDiscovery}.
81 * Wi-Fi devices that do not support p2p, an app can create a group using {@link #createGroup}
84 * <p> After a successful group formation through {@link #createGroup} or through {@link #connect},
86 * {@link WifiP2pInfo} contains the address of the group owner
88 * if the current device is a p2p group owner. A p2p client can thus communicate with
89 * the p2p group owner through a socket connection.
178 * the details of the group.
534 /** Interface for callback invocation when group info is available */
537 * The requested p2p group info is available
538 * @param group W
540 onGroupInfoAvailable(WifiP2pGroup group) argument
[all...]
H A DWifiP2pService.java133 /* Idle time after a peer is gone when the group is torn down */
138 /* Delayed message to timeout group creation */
189 /* When a group has been explicitly created by an app, we persist the group
194 /* Invitation to join an existing p2p group */
249 * For example, device limit or group limit is set. */
264 /* Unknown p2p group. For example, Device A tries to invoke the previous persistent group,
268 /* Both p2p devices indicated an intent of 15 in group owner negotiation. */
653 /* unexpected group create
2101 addRowToDialog(ViewGroup group, int stringId, String value) argument
[all...]
/frameworks/base/media/java/android/media/
H A DMediaRouter.java1001 // Enforce that any added route in a groupable category must be in a group.
1002 final RouteGroup group = new RouteGroup(info.getCategory());
1003 group.mSupportedTypes = info.mSupportedTypes;
1004 sStatic.mRoutes.add(group);
1005 dispatchRouteAdded(group);
1006 group.addRoute(info);
1008 info = group;
1242 static void dispatchRouteGrouped(RouteInfo info, RouteGroup group, int index) { argument
1244 if (cbi.filterRouteEvent(group)) {
1245 cbi.cb.onRouteGrouped(cbi.router, info, group, inde
1250 dispatchRouteUngrouped(RouteInfo info, RouteGroup group) argument
2681 onRouteGrouped(MediaRouter router, RouteInfo info, RouteGroup group, int index) argument
2691 onRouteUngrouped(MediaRouter router, RouteInfo info, RouteGroup group) argument
2745 onRouteGrouped(MediaRouter router, RouteInfo info, RouteGroup group, int index) argument
2750 onRouteUngrouped(MediaRouter router, RouteInfo info, RouteGroup group) argument
[all...]

Completed in 2785 milliseconds

123