Searched refs:group (Results 226 - 250 of 251) sorted by relevance

1234567891011

/frameworks/base/core/java/android/app/
H A DApplicationPackageManager.java298 public List<PermissionInfo> queryPermissionsByGroup(String group, int flags) argument
302 mPM.queryPermissionsByGroup(group, flags);
313 throw new NameNotFoundException(group);
H A DActivityThread.java1035 public void setSchedulingGroup(int group) { argument
1041 Process.setProcessGroup(Process.myPid(), group);
1043 Slog.w(TAG, "Failed setting process group to " + group, e);
/frameworks/base/core/java/com/android/internal/app/procstats/
H A DProcessStats.java549 final Integer zone = Integer.valueOf(matcher.group(1), 10);
554 mPageTypeLabels.add(matcher.group(2));
555 mPageTypeSizes.add(splitAndParseNumbers(matcher.group(3)));
/frameworks/base/tools/aapt/
H A DCommand.cpp465 if (tag == "aid-group") {
525 * Represents a <feature-group> tag in the AndroidManifest.xml
536 * Explicit features defined in the group
575 printf("feature-group: label='%s'\n", grp.label.string());
1069 // This next group of variables is used to implement a group of
1501 } else if (tag == "feature-group") {
1503 FeatureGroup group; local
1504 group.label = AaptXml::getResolvedAttribute(res, tree, LABEL_ATTR, &error);
1510 featureGroups.add(group);
[all...]
/frameworks/base/core/java/android/view/
H A DViewRootImpl.java3434 // is if the current view is a view group that prefers to give focus
3438 ViewGroup group = (ViewGroup) focused;
3439 if (group.getDescendantFocusability() == ViewGroup.FOCUS_AFTER_DESCENDANTS
3611 ViewGroup group = (ViewGroup) view;
3612 final int count = group.getChildCount();
3614 forceLayout(group.getChildAt(i));
4080 // some view group has focus, and doesn't prefer its children
6270 ViewGroup group = (ViewGroup) view;
6272 int count = group.getChildCount();
6274 getGfxInfo(group
[all...]
/frameworks/base/media/java/android/media/
H A DWebVttRenderer.java634 for (String group: parts[0].split(":")) {
635 value = value * 60 + Long.parseLong(group);
H A DExifInterface.java1213 // Mappings from tag number to tag name and each item represents one IFD tag group.
1215 // Mappings from tag name to tag number and each item represents one IFD tag group.
1407 // Retrieves all tag groups. The value from primary image tag group has a higher priority
1408 // than the value from the thumbnail tag group if there are more than one candidates.
1511 value = Integer.parseInt(m.group(1)) + "/1," + Integer.parseInt(m.group(2)) + "/1,"
1512 + Integer.parseInt(m.group(3)) + "/1";
1750 Log.d(TAG, "The size of tag group[" + i + "]: " + mAttributes[i].size());
2736 // Reads image file directory, which is a tag group in EXIF.
3232 // The following variables are for calculating each IFD tag group siz
[all...]
/frameworks/base/core/java/android/view/textclassifier/
H A DTextClassifierImpl.java305 final String language = matcher.group(1);
/frameworks/base/core/jni/
H A DAndroidRuntime.cpp1149 args.group = NULL;
H A Dandroid_util_Process.cpp97 "No permission to set the group of %d", tid);
157 struct group* grp = getgrnam(str);
261 // This task wants to stay in its current audio group so it can keep its budget
/frameworks/base/libs/androidfw/include/androidfw/
H A DResourceTypes.h1989 uint32_t findEntry(const PackageGroup* group, ssize_t typeIndex, const char16_t* name,
/frameworks/base/services/core/java/com/android/server/tv/
H A DTvInputManagerService.java1757 int adapterId = Integer.parseInt(matcher.group(1));
1758 int deviceId = Integer.parseInt(matcher.group(2));
1774 int adapterId = Integer.parseInt(adapterMatcher.group(1));
1780 int deviceId = Integer.parseInt(frontendMatcher.group(1));
/frameworks/base/telephony/java/android/telephony/
H A DTelephony.java2001 return match.group(2);
H A DTelephonyManager.java1451 productType = matcher.group(1);
/frameworks/base/test-runner/src/android/test/mock/
H A DMockPackageManager.java146 public List<PermissionInfo> queryPermissionsByGroup(String group, int flags) argument
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/dataconnection/
H A DDcTrackerTest.java165 String plmn = matcher.group(1);
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
H A DWifiMetricsTest.java118 String protoByteString = matcher.group(1);
/frameworks/support/exifinterface/src/android/support/media/
H A DExifInterface.java1186 // Mappings from tag number to tag name and each item represents one IFD tag group.
1190 // Mappings from tag name to tag number and each item represents one IFD tag group.
1338 // Retrieves all tag groups. The value from primary image tag group has a higher priority
1339 // than the value from the thumbnail tag group if there are more than one candidates.
1444 value = Integer.parseInt(m.group(1)) + "/1," + Integer.parseInt(m.group(2)) + "/1,"
1445 + Integer.parseInt(m.group(3)) + "/1";
1673 Log.d(TAG, "The size of tag group[" + i + "]: " + mAttributes[i].size());
2678 // Reads image file directory, which is a tag group in EXIF.
3195 // The following variables are for calculating each IFD tag group siz
[all...]
/frameworks/base/core/java/android/content/pm/
H A DPackageManager.java293 * {@link PackageInfo#gids group ids} that are associated with an
2944 * Return an array of all of the POSIX secondary group IDs that have been
2961 * Return an array of all of the POSIX secondary group IDs that have been
3041 * Query for all of the permissions associated with a particular group.
3043 * @param group The fully qualified name (i.e. com.google.permission.LOGIN)
3044 * of the permission group you are interested in. Use null to
3045 * find all of the permissions not associated with a group.
3048 * about all of the permissions in the given group.
3052 public abstract List<PermissionInfo> queryPermissionsByGroup(String group, argument
3064 * Retrieve all of the information we know about a particular group o
[all...]
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageManagerShellCommand.java773 pw.print("permission group:");
1504 pw.println((labels ? "+ " : "") + "group:" + pgi.name);
1528 if (groups && groupName == null && pi.group != null) {
1674 pw.println(" -g: organize by group");
H A DPackageManagerService.java4063 public @Nullable ParceledListSlice<PermissionInfo> queryPermissionsByGroup(String group, argument
4070 if (group != null && !mPermissionGroups.containsKey(group)) {
4077 if (group == null) {
4078 if (p.perm == null || p.perm.info.group == null) {
4082 if (p.perm != null && group.equals(p.perm.info.group)) {
5213 //if (!compareStrings(pi1.group, pi2.group)) return false;
11264 Slog.w(TAG, "Permission group "
[all...]
/frameworks/wilhelm/include/SLES/
H A DOpenSLES.h1673 SLObjectItf group
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
H A DNotificationStackScrollLayout.java1023 // In this case the group is expanded and showing the menu for the
1024 // group, further interaction should apply to the group, not any
1122 // you click in the empty space while expanding a group.
2676 * @return whether a view is not a top level child but a child notification and that group is
2736 // We're asking for a child in a group. Calculate the position of the parent first,
2998 // Generate a group expansion/collapsing event if there is such a group at all
3960 public void onGroupCreatedFromChildren(NotificationGroupManager.NotificationGroup group) { argument
/frameworks/compile/mclinker/lib/Target/
H A DGNULDBackend.cpp2916 getBRIslandFactory()->group(pModule);
/frameworks/opt/setupwizard/tools/docs/
H A Ddoclava.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/ccil/ org/ccil/cowan/ org/ccil/cowan/tagsoup/ ...

Completed in 819 milliseconds

1234567891011