HomeSort by relevance Sort by last modified time
    Searched refs:groups (Results 426 - 450 of 1042) sorted by null

<<11121314151617181920>>

  /prebuilts/go/linux-x86/src/syscall/
exec_solaris.go 138 // User and groups
140 ngroups := uintptr(len(cred.Groups))
141 groups := uintptr(0)
143 groups = uintptr(unsafe.Pointer(&cred.Groups[0]))
145 err1 = setgroups1(ngroups, groups)
  /packages/providers/ContactsProvider/tests/assets/testUnsynced/
legacy_contacts.sql 24 CREATE TABLE groupmembership (_id INTEGER PRIMARY KEY,person INTEGER REFERENCES people(_id),group_id INTEGER REFERENCES groups(_id),group_sync_account STRING,group_sync_id STRING);
30 CREATE TABLE groups (_id INTEGER PRIMARY KEY AUTOINCREMENT,_sync_account TEXT,_sync_id TEXT,_sync_time TEXT,_sync_version TEXT,_sync_local_id INTEGER,_sync_dirty INTEGER NOT NULL DEFAULT 0,_sync_mark INTEGER,name TEXT NOT NULL,notes TEXT,should_sync INTEGER NOT NULL DEFAULT 0,system_id TEXT,UNIQUE(name,system_id,_sync_account)); table
31 INSERT INTO groups VALUES(1,NULL,NULL,NULL,NULL,NULL,0,NULL,'Contacts',NULL,0,'Contacts');
67 INSERT INTO sqlite_sequence VALUES('groups',1);
79 CREATE INDEX groupsSyncDirtyIndex ON groups (_sync_dirty);
102 CREATE TRIGGER groups_cleanup DELETE ON groups BEGIN UPDATE groupmembership SET group_id = null WHERE group_id = old._id;END;
103 CREATE TRIGGER groups_to_deleted DELETE ON groups WHEN old._sync_id is not null BEGIN INSERT INTO _deleted_groups (_sync_id, _sync_account, _sync_version) VALUES (old._sync_id, old._sync_account, old._sync_version);END;
  /external/autotest/client/deps/webgl_mpd/src/resources/
J3DI.js 386 var groups = { };
388 groups["_unnamed"] = currentGroup;
402 groups[array[1]] = currentGroup;
512 obj.groups = groups;
  /external/testng/src/main/java/org/testng/reporters/
EmailableReporter2.java 131 writer.print("<th>Included Groups</th>");
132 writer.print("<th>Excluded Groups</th>");
555 * Groups {@link TestResult}s by suite.
581 * Groups {@link ClassResult}s by test, type (configuration or test), and
647 * Groups test results by method and then by class.
767 * Formats an array of groups for display.
769 protected String formatGroups(String[] groups) {
770 if (groups.length == 0) {
775 builder.append(groups[0]);
776 for (int i = 1; i < groups.length; i++)
    [all...]
  /external/e2fsprogs/resize/
resize2fs.c 462 * If we are shrinking the number of block groups, we're done
467 * Check the block groups that we are chopping off
498 * If the number of block groups is staying the same, we're
499 * done and can exit now. (If the number block groups is
649 * If we are shrinking the number block groups, we're done and
658 * If the number of block groups is staying the same, we're
659 * done and can exit now. (If the number block groups is
2049 dgrp_t groups; local
    [all...]
  /external/testng/src/main/java/org/testng/internal/
Invoker.java 447 String[] groups= method.getGroups(); local
448 if(null != groups && groups.length > 0) {
449 for(String group: groups) {
840 String[] groups = currentTestMethod.getGroups(); local
886 String[] groups = currentTestMethod.getGroups(); local
1492 final String[] groups = testMethod.getGroupsDependedUpon(); local
    [all...]
  /packages/providers/ContactsProvider/tests/assets/test1/
legacy_contacts.sql 40 CREATE TABLE groupmembership (_id INTEGER PRIMARY KEY,person INTEGER REFERENCES people(_id),group_id INTEGER REFERENCES groups(_id),group_sync_account STRING,group_sync_id STRING);
47 CREATE TABLE groups (_id INTEGER PRIMARY KEY AUTOINCREMENT,_sync_account TEXT,_sync_id TEXT,_sync_time TEXT,_sync_version TEXT,_sync_local_id INTEGER,_sync_dirty INTEGER NOT NULL DEFAULT 0,_sync_mark INTEGER,name TEXT NOT NULL,notes TEXT,should_sync INTEGER NOT NULL DEFAULT 0,system_id TEXT,UNIQUE(name,system_id,_sync_account)); table
48 INSERT INTO groups VALUES(1,'android.contacts.test.eclair@gmail.com',6,NULL,NULL,NULL,0,1,'System Group: My Contacts','System Group: My Contacts',0,'Contacts');
49 INSERT INTO groups VALUES(2,'android.contacts.test.eclair@gmail.com','20a186238cf27aaa',1249172992736000,1249172992736000,NULL,0,1,'Eclair Contacts','Eclair Contacts',0,NULL);
50 INSERT INTO groups VALUES(3,'android.contacts.test.eclair@gmail.com','2fcbf74c8be345dc',1249176693566000,1249176693566000,NULL,0,1,'Starred in Android','Starred in Android',0,NULL);
97 INSERT INTO sqlite_sequence VALUES('groups',3);
111 CREATE INDEX groupsSyncDirtyIndex ON groups (_sync_dirty);
134 CREATE TRIGGER groups_cleanup DELETE ON groups BEGIN UPDATE groupmembership SET group_id = null WHERE group_id = old._id;END;
135 CREATE TRIGGER groups_to_deleted DELETE ON groups WHEN old._sync_id is not null BEGIN INSERT INTO _deleted_groups (_sync_id, _sync_account, _sync_version) VALUES (old._sync_id, old._sync_account, old._sync_version);END;
  /external/deqp/modules/egl/
teglCreateContextExtTests.cpp 1052 } groups[] = local
1080 for (int groupNdx = 0; groupNdx < DE_LENGTH_OF_ARRAY(groups); groupNdx++)
1084 filter << groups[groupNdx].colorFilter
1085 << groups[groupNdx].depthFilter
1086 << groups[groupNdx].stencilFilter
1089 addChild(new CreateContextExtCase(m_eglTestCtx, m_api, &(m_attribList[0]), filter, groups[groupNdx].name, groups[groupNdx].description));
    [all...]
  /external/autotest/server/
site_utils.py 82 if match and len(match.groups()) >= 5:
641 info['build'] = match.groups()[0]
642 info['suite'] = match.groups()[1]
  /packages/apps/PackageInstaller/src/com/android/packageinstaller/permission/ui/
GrantPermissionsActivity.java 392 List<AppPermissionGroup> groups = new ArrayList<>(groupCount); local
394 groups.add(groupState.mGroup);
397 SafetyNetLogger.logPermissionsRequested(mAppPermissions.getPackageInfo(), groups); local
ReviewPermissionsActivity.java 368 List<AppPermissionGroup> groups = mAppPermissions.getPermissionGroups(); local
369 final int groupCount = groups.size();
371 AppPermissionGroup group = groups.get(i);
  /packages/apps/PackageInstaller/src/com/android/packageinstaller/permission/ui/handheld/
PermissionAppsFragment.java 395 List<AppPermissionGroup> groups = new ArrayList<>(); local
396 groups.add(mToggledGroups.valueAt(i));
397 SafetyNetLogger.logPermissionsToggled(packageName, groups);
  /packages/apps/PackageInstaller/src/com/android/packageinstaller/permission/ui/television/
PermissionAppsFragment.java 389 List<AppPermissionGroup> groups = new ArrayList<>(); local
390 groups.add(mToggledGroups.valueAt(i));
391 SafetyNetLogger.logPermissionsToggled(packageName, groups);
  /bionic/libc/kernel/tools/
clean_header.py 104 dst_path = "arch-%s/asm/%s" % m.groups()
  /development/samples/ApiDemos/src/com/example/android/apis/app/
MenuInflateFromXml.java 45 R.menu.title_only, R.menu.title_icon, R.menu.submenu, R.menu.groups,
54 "Title only", "Title and Icon", "Submenu", "Groups",
153 // For "Groups": Toggle visibility of grouped menu items with
  /external/autotest/client/deps/fakegudev/src/
fakegudev.c 182 gchar **groups; local
194 groups = g_key_file_get_groups(key_file, &num_groups);
202 group = groups[group_iter];
278 g_strfreev (groups);
  /external/autotest/client/virt/tests/
netstress_kill_guest.py 25 ip = ip.groups()[0]
  /external/autotest/contrib/
always_failing_tests.py 105 job_to_suite[job.id] = x.groups(1)[0]
  /external/autotest/server/cros/dynamic_suite/
tools.py 75 devserver_build_tuple = re.search(re_pattern, package_url).groups()
  /external/chromium-trace/catapult/dashboard/dashboard/
associate_alerts.py 199 start, end = match.groups()
  /external/chromium-trace/catapult/telemetry/telemetry/internal/platform/power_monitor/
msr_power_monitor.py 128 platform.processor()).groups())
  /external/chromium-trace/catapult/third_party/html5lib-python/html5lib/treewalkers/
etree.py 65 namespace, tag = match.groups()
  /external/chromium-trace/catapult/third_party/mapreduce/mapreduce/
test_support.py 93 params = m.groups()[:-1] # last groups was added by ($|\\?) above
  /external/chromium-trace/catapult/tracing/tracing_build/
update_gypi.py 75 token_id=match.groups()[0])
  /external/clang/include/clang/Basic/
Makefile 44 $(Echo) "Building Clang diagnostic groups with tblgen"
45 $(Verb) $(ClangTableGen) -gen-clang-diag-groups -o $(call SYSPATH, $@) $<

Completed in 1093 milliseconds

<<11121314151617181920>>