Home
last modified time | relevance | path

Searched refs:groupName (Results 1 – 8 of 8) sorted by relevance

/frameworks/base/core/java/android/widget/
DAppSecurityPermissions.java389 String groupName = origGroupName; in extractPerms() local
390 if (groupName == null) { in extractPerms()
391 groupName = tmpPermInfo.packageName; in extractPerms()
392 tmpPermInfo.group = groupName; in extractPerms()
394 MyPermissionGroupInfo group = mPermGroups.get(groupName); in extractPerms()
DGridLayout.java827 String groupName = horizontal ? "column" : "row"; in checkLayoutParams() local
831 handleInvalidParams(groupName + " indices must be positive"); in checkLayoutParams()
837 handleInvalidParams(groupName + in checkLayoutParams()
838 " indices (start + span) mustn't exceed the " + groupName + " count"); in checkLayoutParams()
841 handleInvalidParams(groupName + " span mustn't exceed the " + groupName + " count"); in checkLayoutParams()
/frameworks/opt/vcard/java/com/android/vcard/
DVCardParserImpl_V21.java386 final String groupName = line.substring(nameIndex, i); in constructPropertyData()
387 if (groupName.length() == 0) { in constructPropertyData()
390 propertyData.addGroup(groupName); in constructPropertyData()
/frameworks/av/media/libstagefright/httplive/
DM3UParser.cpp948 AString groupName; in parseMedia() local
1037 groupName.setTo(val, 1, val.size() - 2); in parseMedia()
1162 groupName.c_str(), in parseMedia()
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/
DGridLayout.java803 String groupName = horizontal ? "column" : "row"; in checkLayoutParams() local
807 handleInvalidParams(groupName + " indices must be positive"); in checkLayoutParams()
813 handleInvalidParams(groupName + in checkLayoutParams()
814 " indices (start + span) mustn't exceed the " + groupName + " count"); in checkLayoutParams()
817 handleInvalidParams(groupName + " span mustn't exceed the " + groupName + " count"); in checkLayoutParams()
/frameworks/base/graphics/java/android/graphics/drawable/
DVectorDrawable.java1116 final String groupName = a.getString(R.styleable.VectorDrawableGroup_name); in updateStateFromTypedArray() local
1117 if (groupName != null) { in updateStateFromTypedArray()
1118 mGroupName = groupName; in updateStateFromTypedArray()
/frameworks/base/cmds/pm/src/com/android/commands/pm/
DPm.java639 String groupName = groupList.get(i); in doListPermissions() local
643 if (groupName != null) { in doListPermissions()
645 groupName, 0); in doListPermissions()
683 if (groups && groupName == null && pi.group != null) { in doListPermissions()
/frameworks/base/core/java/android/provider/
DContacts.java507 public static Uri addToGroup(ContentResolver resolver, long personId, String groupName) { in addToGroup() argument
510 Groups.NAME + "=?", new String[] { groupName }, null); in addToGroup()