Home
last modified time | relevance | path

Searched refs:group (Results 1 – 25 of 103) sorted by relevance

12345

/frameworks/base/awt/org/apache/harmony/awt/
DContextStorage.java122 ThreadGroup group = thread.getThreadGroup(); in getContextThreadGroup() local
123 while (group != null) { in getContextThreadGroup()
124 if (group instanceof ContextThreadGroup) { in getContextThreadGroup()
125 return (ContextThreadGroup)group; in getContextThreadGroup()
127 group = group.getParent(); in getContextThreadGroup()
/frameworks/base/core/java/android/webkit/
DHttpDateTime.java92 date = getDate(rfcMatcher.group(1)); in parse()
93 month = getMonth(rfcMatcher.group(2)); in parse()
94 year = getYear(rfcMatcher.group(3)); in parse()
95 timeOfDay = getTime(rfcMatcher.group(4)); in parse()
99 month = getMonth(ansicMatcher.group(1)); in parse()
100 date = getDate(ansicMatcher.group(2)); in parse()
101 timeOfDay = getTime(ansicMatcher.group(3)); in parse()
102 year = getYear(ansicMatcher.group(4)); in parse()
/frameworks/base/core/java/android/content/pm/
DPermissionInfo.java61 public String group; field in PermissionInfo
91 group = orig.group; in PermissionInfo()
133 dest.writeString(group); in writeToParcel()
151 group = source.readString(); in PermissionInfo()
/frameworks/base/core/java/com/android/internal/view/menu/
DMenuBuilder.java368 private MenuItem addInternal(int group, int id, int categoryOrder, CharSequence title) { in addInternal() argument
371 final MenuItemImpl item = new MenuItemImpl(this, group, id, categoryOrder, ordering, title); in addInternal()
392 public MenuItem add(int group, int id, int categoryOrder, CharSequence title) { in add() argument
393 return addInternal(group, id, categoryOrder, title); in add()
396 public MenuItem add(int group, int id, int categoryOrder, int title) { in add() argument
397 return addInternal(group, id, categoryOrder, mResources.getString(title)); in add()
408 public SubMenu addSubMenu(int group, int id, int categoryOrder, CharSequence title) { in addSubMenu() argument
409 final MenuItemImpl item = (MenuItemImpl) addInternal(group, id, categoryOrder, title); in addSubMenu()
416 public SubMenu addSubMenu(int group, int id, int categoryOrder, int title) { in addSubMenu() argument
417 return addSubMenu(group, id, categoryOrder, mResources.getString(title)); in addSubMenu()
[all …]
/frameworks/base/core/java/android/net/
DWebAddress.java78 t = m.group(MATCH_GROUP_SCHEME); in WebAddress()
80 t = m.group(MATCH_GROUP_AUTHORITY); in WebAddress()
82 t = m.group(MATCH_GROUP_HOST); in WebAddress()
84 t = m.group(MATCH_GROUP_PORT); in WebAddress()
92 t = m.group(MATCH_GROUP_PATH); in WebAddress()
/frameworks/base/opengl/libs/GLES2/
Dgl2ext_api.in43 void API_ENTRY(glGetPerfMonitorCountersAMD)(GLuint group, GLint *numCounters, GLint *maxActiveCount…
44 …CALL_GL_API(glGetPerfMonitorCountersAMD, group, numCounters, maxActiveCounters, counterSize, count…
46 void API_ENTRY(glGetPerfMonitorGroupStringAMD)(GLuint group, GLsizei bufSize, GLsizei *length, char…
47 CALL_GL_API(glGetPerfMonitorGroupStringAMD, group, bufSize, length, groupString);
49 void API_ENTRY(glGetPerfMonitorCounterStringAMD)(GLuint group, GLuint counter, GLsizei bufSize, GLs…
50 CALL_GL_API(glGetPerfMonitorCounterStringAMD, group, counter, bufSize, length, counterString);
52 void API_ENTRY(glGetPerfMonitorCounterInfoAMD)(GLuint group, GLuint counter, GLenum pname, void *da…
53 CALL_GL_API(glGetPerfMonitorCounterInfoAMD, group, counter, pname, data);
61 void API_ENTRY(glSelectPerfMonitorCountersAMD)(GLuint monitor, GLboolean enable, GLuint group, GLin…
62 CALL_GL_API(glSelectPerfMonitorCountersAMD, monitor, enable, group, numCounters, countersList);
/frameworks/base/tests/CoreTests/android/core/
DRegexTest.java115 assertEquals("bc", m.group(0)); in testGroups()
116 assertEquals("b", m.group(1)); in testGroups()
117 assertEquals("c", m.group(2)); in testGroups()
118 assertEquals("", m.group(3)); in testGroups()
127 assertEquals("a", m.group(0)); in testFind()
130 assertEquals("b", m.group(0)); in testFind()
133 assertEquals("c", m.group(0)); in testFind()
/frameworks/base/docs/html/intl/ja/community/
Dindex.jd46 <li>Google グループで登録:&nbsp;<a href="http://groups.google.co.jp/group/android-sdk-japan?hl=ja">android…
53 <li>Google グループで登録:&nbsp;<a href="http://groups.google.com/group/android-beginners?hl=ja">android-b…
60 <li>Google グループで登録:&nbsp;<a href="http://groups.google.com/group/android-developers?hl=ja">android-…
67 <li>Google グループで登録:&nbsp;<a href="http://groups.google.com/group/android-discuss?hl=ja">android-dis…
74 <li>Google グループで登録:&nbsp;<a href="http://groups.google.com/group/android-security-discuss?hl=ja">an…
81 <li>Google グループで登録:&nbsp;<a href="http://groups.google.com/group/android-security-announce?hl=ja">a…
101 …work グループには <a href="http://groups.google.com/group/android-framework?hl=ja">http://groups.google.…
/frameworks/base/core/java/android/view/
DMenu.java333 public void setGroupCheckable(int group, boolean checkable, boolean exclusive); in setGroupCheckable() argument
343 public void setGroupVisible(int group, boolean visible); in setGroupVisible() argument
353 public void setGroupEnabled(int group, boolean enabled); in setGroupEnabled() argument
DViewDebug.java666 ViewGroup group = (ViewGroup) view; in stopHierarchyTracing() local
667 dumpViewHierarchy(group, out, 0); in stopHierarchyTracing()
756 ViewGroup group = (ViewGroup) view; in profile()
757 final int count = group.getChildCount(); in profile()
759 forceLayout(group.getChildAt(i)); in profile()
916 ViewGroup group = (ViewGroup) view; in dump() local
917 dumpViewHierarchyWithProperties(group.getContext(), group, out, 0); in dump() local
930 private static View findView(ViewGroup group, String className, int hashCode) { in findView() argument
931 if (isRequestedView(group, className, hashCode)) { in findView()
932 return group; in findView()
[all …]
/frameworks/base/docs/html/guide/topics/manifest/
Dpermission-group-element.jd1 page.title=&lt;permission-group&gt;
6 <dd><pre class="stx">&lt;permission-group android:<a href="#desc">description</a>="<i>string resour…
16 permission join the group through the {@code permissionGroup} attribute of the
17 …cs/manifest/permission-element.html">&lt;permission&gt;</a></code> element. Members of a group are
30 <dd>User-readable text that describes the group. The text should be
40 <dd>A user-readable name for the group. As a convenience, the label can
47 <dd>The name of the group. This is the name that can be assigned to a
Dpermission-element.jd65 <dd>Assigns this permission to a group. The value of this attribute is
66 the name of the group, which must be declared with the
67 <code><a href="{@docRoot}guide/topics/manifest/permission-group-element.html">&lt;permission-group&…
69 does not belong to a group.</dd>
132 …ode><a href="{@docRoot}guide/topics/manifest/permission-group-element.html">&lt;permission-group&g…
/frameworks/base/core/java/android/preference/
DPreferenceGroupAdapter.java121 private void flattenPreferenceGroup(List<Preference> preferences, PreferenceGroup group) { in flattenPreferenceGroup() argument
123 group.sortPreferences(); in flattenPreferenceGroup()
125 final int groupSize = group.getPreferenceCount(); in flattenPreferenceGroup()
127 final Preference preference = group.getPreference(i); in flattenPreferenceGroup()
/frameworks/base/opengl/include/GLES2/
Dgl2ext.h408 GL_APICALL void GL_APIENTRY glGetPerfMonitorCountersAMD (GLuint group, GLint *numCounters, GLint *m…
409 GL_APICALL void GL_APIENTRY glGetPerfMonitorGroupStringAMD (GLuint group, GLsizei bufSize, GLsizei …
410 GL_APICALL void GL_APIENTRY glGetPerfMonitorCounterStringAMD (GLuint group, GLuint counter, GLsizei…
411 GL_APICALL void GL_APIENTRY glGetPerfMonitorCounterInfoAMD (GLuint group, GLuint counter, GLenum pn…
414 … glSelectPerfMonitorCountersAMD (GLuint monitor, GLboolean enable, GLuint group, GLint numCounters…
420 typedef void (GL_APIENTRYP PFNGLGETPERFMONITORCOUNTERSAMDPROC) (GLuint group, GLint *numCounters, G…
421 typedef void (GL_APIENTRYP PFNGLGETPERFMONITORGROUPSTRINGAMDPROC) (GLuint group, GLsizei bufSize, G…
422 typedef void (GL_APIENTRYP PFNGLGETPERFMONITORCOUNTERSTRINGAMDPROC) (GLuint group, GLuint counter, …
423 typedef void (GL_APIENTRYP PFNGLGETPERFMONITORCOUNTERINFOAMDPROC) (GLuint group, GLuint counter, GL…
426 …LECTPERFMONITORCOUNTERSAMDPROC) (GLuint monitor, GLboolean enable, GLuint group, GLint numCounters…
/frameworks/base/docs/html/community/
Dindex.jd55 <li>Subscribe using Google Groups:&nbsp;<a href="http://groups.google.com/group/android-beginners">…
62 <li>Subscribe using Google Groups:&nbsp;<a href="http://groups.google.com/group/android-developers"…
69 <li>Subscribe using Google Groups:&nbsp;<a href="http://groups.google.com/group/android-discuss">an…
76 <li>Subscribe using Google Groups:&nbsp;<a href="http://groups.google.com/group/android-ndk">androi…
83 <li>Subscribe using Google Groups:&nbsp;<a href="http://groups.google.com/group/android-security-di…
88 <li><b>Android security announce</b> - A low-volume group for security-related announcements by the…
90 <li>Subscribe using Google Groups:&nbsp;<a href="http://groups.google.com/group/android-security-an…
107 <p>To subscribe to a group without using the Google Groups site, use the link under "subscribe via …
110group via the Google Groups site. For example, for the android-framework group you would visit <a …
114 you want to read this group?" select one of the email options. </li>
/frameworks/base/core/java/android/text/util/
DRegex.java169 String s = matcher.group(i); in concatGroups()
193 String matchingRegion = matcher.group(); in digitsAndPlusOnly()
/frameworks/base/core/java/android/pim/vcard/
DVCardBuilderCollection.java70 public void propertyGroup(String group) { in propertyGroup() argument
72 builder.propertyGroup(group); in propertyGroup()
DVCardBuilder.java40 void propertyGroup(String group); in propertyGroup() argument
DVCardEntryCounter.java46 public void propertyGroup(String group) { in propertyGroup() argument
/frameworks/base/core/java/android/util/
DEventLogTags.java70 int tag = Integer.parseInt(m.group(1)); in EventLogTags()
71 Description d = new Description(tag, m.group(2)); in EventLogTags()
/frameworks/base/telephony/java/android/telephony/
DPhoneNumberUtils.java734 if ("".equals(m.group(2))) { in calledPartyBCDToString()
739 ret.append(m.group(1)); in calledPartyBCDToString()
740 ret.append(m.group(3)); in calledPartyBCDToString()
741 ret.append(m.group(4)); in calledPartyBCDToString()
742 ret.append(m.group(5)); in calledPartyBCDToString()
749 ret.append(m.group(1)); in calledPartyBCDToString()
750 ret.append(m.group(2)); in calledPartyBCDToString()
751 ret.append(m.group(3)); in calledPartyBCDToString()
753 ret.append(m.group(4)); in calledPartyBCDToString()
754 ret.append(m.group(5)); in calledPartyBCDToString()
[all …]
/frameworks/base/tests/FrameworkTest/src/com/android/frameworktest/util/
DExpandableListScenario.java204 final int group = ExpandableListView.getPackedPositionGroup(packedPosition); in isOutOfBounds() local
205 if (group >= mGroups.size() || group < 0) { in isOutOfBounds()
211 if (child >= mGroups.get(group).children.size() || child < 0) { in isOutOfBounds()
/frameworks/base/tools/aapt/
DAaptAssets.cpp1251 sp<AaptGroup> group; in addLeafFile() local
1253 group = mFiles.valueFor(leafName); in addLeafFile()
1255 group = new AaptGroup(leafName, mPath.appendPathCopy(leafName)); in addLeafFile()
1256 mFiles.add(leafName, group); in addLeafFile()
1259 return group->addFile(file); in addLeafFile()
1448 sp<AaptGroup> group; in addFile() local
1460 group = dir->getFiles().valueAt(i); in addFile()
1462 group = new AaptGroup(rootStr, filePath); in addFile()
1463 status_t res = dir->addFile(rootStr, group); in addFile()
1469 status_t res = group->addFile(file); in addFile()
[all …]
DResource.cpp77 sp<AaptGroup> group; in next() local
82 group = mGroup; in next()
83 file = group->getFiles().valueAt(mGroupPos++); in next()
87 mGroup = group = mSet->valueAt(mSetPos++); in next()
88 if (group->getFiles().size() < 1) { in next()
91 file = group->getFiles().valueAt(0); in next()
101 String8 leaf(group->getLeaf()); in next()
105 group->getPath().string(), mParams.mcc, mParams.mnc, in next()
158 sp<AaptGroup> group = assets->getFiles().valueFor(String8("resources.arsc")); in getResourceFile() local
160 if (group != NULL) { in getResourceFile()
[all …]
/frameworks/base/core/java/com/google/android/util/
DAbstractMessageParser.java819 return new Video(m.group(1), text); in matchURL()
878 return new YouTubeVideo(m.group(1), text); in matchURL()
969 return new Photo(m.group(1), m.group(2), m.group(3), text); in matchURL()
1056 return new FlickrPhoto(m.group(1), null, m.group(2), m.group(3), text); in matchURL()
1061 return new FlickrPhoto(m.group(1), m.group(2), null, null, text); in matchURL()

12345