HomeSort by relevance Sort by last modified time
    Searched full:groupid (Results 1 - 25 of 63) sorted by null

1 2 3

  /external/jsr305/sampleUses/
pom.xml 7 <groupId>org.jsr-305</groupId>
12 <groupId>org.jsr-305</groupId>
20 <groupId>org.jsr-305</groupId>
  /external/jsr305/tcl/
pom.xml 8 <groupId>org.jsr-305</groupId>
13 <groupId>org.jsr-305</groupId>
22 <groupId>org.jsr-305</groupId>
  /external/jsr305/proposedAnnotations/
pom.xml 8 <groupId>org.jsr-305</groupId>
13 <groupId>org.jsr-305</groupId>
  /external/jsr305/ri/
pom.xml 7 <groupId>org.jsr-305</groupId>
12 <groupId>org.jsr-305</groupId>
  /external/jsr305/
pom.xml 8 <groupId>org.jsr-305</groupId>
27 <groupId>org.apache.maven.plugins</groupId>
  /frameworks/base/core/tests/coretests/src/android/view/
MenuTest.java 55 final int groupId = 541;
60 final MenuItem item = mMenu.add(groupId, 0, item1Index, "test");
62 final MenuItem item2 = mMenu.add(groupId, 0, item2Index, "test2");
64 Assert.assertEquals(groupId, item.getGroupId());
65 Assert.assertEquals(groupId, item2.getGroupId());
66 Assert.assertEquals(item1Index, mMenu.findGroupIndex(groupId));
67 Assert.assertEquals(item2Index, mMenu.findGroupIndex(groupId, item1Index + 1));
191 final int groupId = 1;
192 final MenuItem item1 = mMenu.add(groupId, 1, 0, "item1");
193 final MenuItem item2 = mMenu.add(groupId, 2, 0, "item2")
    [all...]
  /external/protobuf/java/
pom.xml 7 <groupId>com.google</groupId>
11 <groupId>com.google.protobuf</groupId>
37 <groupId>junit</groupId>
43 <groupId>org.easymock</groupId>
49 <groupId>org.easymock</groupId>
    [all...]
  /frameworks/base/core/java/android/widget/
BaseExpandableListAdapter.java 75 * <li> bit 1-31: Lower 31 bits of the groupId
80 public long getCombinedChildId(long groupId, long childId) {
81 return 0x8000000000000000L | ((groupId & 0x7FFFFFFF) << 32) | (childId & 0xFFFFFFFF);
90 * <li> bit 1-31: Lower 31 bits of the groupId
95 public long getCombinedGroupId(long groupId) {
96 return (groupId & 0x7FFFFFFF) << 32;
ExpandableListAdapter.java 189 * @param groupId The ID of the group that contains this child.
194 long getCombinedChildId(long groupId, long childId);
204 * @param groupId The ID of the group
208 long getCombinedGroupId(long groupId);
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
GroupsTest.java 120 final long groupId = cursor.getLong(Projections.COL_ID);
124 if (groupId == groupGrey) {
128 } else if (groupId == groupRed) {
132 } else if (groupId == groupGreen) {
136 } else if (groupId == groupBlue) {
185 long groupId = createGroup(mAccount, "g1", "gt1");
186 Uri uri = ContentUris.withAppendedId(Groups.CONTENT_URI, groupId);
200 long groupId = createGroup(mAccount, "g1", "gt1");
201 Uri uri = ContentUris.withAppendedId(Groups.CONTENT_URI, groupId);
261 final long groupId = this.createGroup(sTestAccount, GROUP_ID, GROUP_ID, 1)
    [all...]
  /external/libvpx/examples/includes/HTML-Toc-0.91/t/
siteMap.t 31 'templateAnchorHref' => '"<a href=$file"."#".$groupId.$level.">"',
34 'groupId' => 'dir',
40 'groupId' => 'dir',
46 'groupId' => 'dir',
manualTest.t 90 'templateLevelBegin' => '"<ul class=toc_$groupId$level>\n"',
94 'groupId' => 'part',
107 'groupId' => 'appendix',
111 'groupId' => 'appendix',
115 'groupId' => 'prelude',
128 'groupId' => 'Figure',
139 'groupId' => 'Table',
320 'templateLevelBegin' => '"<ul class=toc_$groupId$level>\n"',
324 'groupId' => 'part',
337 'groupId' => 'appendix'
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
Contacts_PeopleTest.java 167 int groupId = cursor.getInt(GROUPS_ID_INDEX);
172 assertEquals(groupId, cursor.getInt(MEMBERSHIP_GROUP_ID_INDEX));
191 groupId = cursor.getInt(GROUPS_ID_INDEX);
196 assertEquals(groupId, cursor.getInt(MEMBERSHIP_GROUP_ID_INDEX));
208 groupId = cursor.getInt(GROUPS_ID_INDEX);
210 mRowsAdded.add(People.addToGroup(mContentResolver, personId, groupId));
214 assertEquals(groupId, cursor.getInt(MEMBERSHIP_GROUP_ID_INDEX));
228 groupId = cursor.getInt(MEMBERSHIP_GROUP_ID_INDEX);
231 Groups._ID + "=" + groupId, null, null);
  /external/libvpx/examples/includes/HTML-Toc-0.91/
Toc.pm 26 use constant TEMPLATE_ANCHOR_NAME => '$groupId."-".$node';
77 # Hash reference to array for each groupId, each array element
192 my ($level, $groupLevel, $line, $groupId, $text, $compareStatus);
203 ($level, $groupLevel, $groupId, $node, $sequenceNr,
210 ($groupId =~ m/$self->{options}{'groupToToc'}/)
227 $level, $groupId, $node, $sequenceNr, $text
301 # 'groupId' is specified?
302 if (! defined($group->{'groupId'})) {
303 # No, 'groupId' isn't specified;
304 # Set default groupId
    [all...]
Toc.pod 271 'groupId' => 'image',
390 'groupId' => 'image',
453 'groupId' => 'appendix',
456 'groupId' => 'appendix',
519 'groupId' => 'part',
660 'templateLevelBegin' => '"<ol class=toc_$groupId$level>\n"',
664 'groupId' => 'appendix',
668 'groupId' => 'appendix',
738 'templateAnchorHref' => '"<a href=$file"."#".$groupId.$level.">"',
741 'groupId' => 'dir'
    [all...]
  /external/webkit/WebCore/bindings/v8/
V8GCController.cpp 218 GrouperItem(uintptr_t groupId, Node* node, v8::Persistent<v8::Object> wrapper)
219 : m_groupId(groupId)
225 uintptr_t groupId() const { return m_groupId; }
237 return a.groupId() < b.groupId();
260 uintptr_t groupId;
262 groupId = reinterpret_cast<uintptr_t>(node->document());
280 groupId = reinterpret_cast<uintptr_t>(root);
282 m_grouper.append(GrouperItem(groupId, node, wrapper));
295 if (m_grouper[i].groupId() != m_grouper[j].groupId())
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
BaseExpandableListAdapterTest.java 67 long groupID = adapter.getCombinedGroupId(10);
70 assertTrue(childID != groupID);
73 groupID = adapter.getCombinedGroupId(0);
74 assertTrue(childID != groupID);
  /external/iptables/extensions/
libip6t_owner.man 11 .BI "--gid-owner " "groupid"
libipt_owner.man 11 .BI "--gid-owner " "groupid"
libip6t_owner.c 21 "[!] --gid-owner groupid Match local gid\n"
31 "[!] --gid-owner groupid Match local gid\n"
libipt_owner.c 21 "[!] --gid-owner groupid Match local gid\n"
32 "[!] --gid-owner groupid Match local gid\n"
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/binding/
FakeExpandableAdapter.java 142 public long getCombinedGroupId(long groupId) {
143 return groupId << 16 | 0x0000FFFF;
146 public long getCombinedChildId(long groupId, long childId) {
147 return groupId << 16 | childId;
  /frameworks/base/core/java/android/view/
Menu.java 151 * @param groupId The group identifier that this item should be part of.
162 public MenuItem add(int groupId, int itemId, int order, CharSequence title);
168 * @param groupId The group identifier that this item should be part of.
179 public MenuItem add(int groupId, int itemId, int order, int titleRes);
210 * @param groupId The group identifier that this item should be part of.
221 SubMenu addSubMenu(final int groupId, final int itemId, int order, final CharSequence title);
227 * @param groupId The group identifier that this item should be part of.
236 SubMenu addSubMenu(int groupId, int itemId, int order, int titleRes);
264 * @param groupId The group identifier that the items should be part of.
289 public int addIntentOptions(int groupId, int itemId, int order
    [all...]
MenuInflater.java 182 private int groupId;
224 groupId = defaultGroupId;
239 groupId = a.getResourceId(com.android.internal.R.styleable.MenuGroup_id, defaultGroupId);
310 setItem(menu.add(groupId, itemId, itemCategoryOrder, itemTitle));
315 SubMenu subMenu = menu.addSubMenu(groupId, itemId, itemCategoryOrder, itemTitle);
  /frameworks/base/core/java/android/provider/
MediaStore.java 300 * @param groupId the same groupId used in getThumbnail
304 long groupId) {
307 .appendQueryParameter("group_id", String.valueOf(groupId)).build();
328 * @param groupId the id of group to which this request belongs
331 static Bitmap getThumbnail(ContentResolver cr, long origId, long groupId, int kind,
375 .appendQueryParameter("group_id", String.valueOf(groupId)).build();
    [all...]

Completed in 477 milliseconds

1 2 3