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

<<11121314151617181920>>

  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/
Contact.java 493 /* package */ void setGroupMetaData(ImmutableList<GroupMetaData> groups) {
494 mGroups = groups;
  /prebuilts/go/darwin-x86/src/crypto/cipher/
cipher.go 7 // See http://csrc.nist.gov/groups/ST/toolkit/BCM/current_modes.html
gcm_test.go 16 // http://csrc.nist.gov/groups/STM/cavp/index.html.
  /prebuilts/go/linux-x86/src/crypto/cipher/
cipher.go 7 // See http://csrc.nist.gov/groups/ST/toolkit/BCM/current_modes.html
gcm_test.go 16 // http://csrc.nist.gov/groups/STM/cavp/index.html.
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_posix.py 485 groups = idg.read().strip()
488 if ret != None or not groups:
499 # groups, ignoring order and duplicates.
503 set([int(x) for x in groups.split()]),
537 for groups in [[0], range(16)]:
538 posix.setgroups(groups)
539 self.assertListEqual(groups, posix.getgroups())
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_posix.py 485 groups = idg.read().strip()
488 if ret != None or not groups:
499 # groups, ignoring order and duplicates.
503 set([int(x) for x in groups.split()]),
537 for groups in [[0], range(16)]:
538 posix.setgroups(groups)
539 self.assertListEqual(groups, posix.getgroups())
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_posix.py 485 groups = idg.read().strip()
488 if ret != None or not groups:
499 # groups, ignoring order and duplicates.
503 set([int(x) for x in groups.split()]),
537 for groups in [[0], range(16)]:
538 posix.setgroups(groups)
539 self.assertListEqual(groups, posix.getgroups())
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_posix.py 485 groups = idg.read().strip()
488 if ret != None or not groups:
499 # groups, ignoring order and duplicates.
503 set([int(x) for x in groups.split()]),
537 for groups in [[0], range(16)]:
538 posix.setgroups(groups)
539 self.assertListEqual(groups, posix.getgroups())
  /system/connectivity/shill/wifi/
wifi_service.cc 335 set<string> groups = storage.GetGroupsWithProperties(GetStorageProperties()); local
336 if (groups.empty()) {
342 if (groups.size() > 1) {
347 return *groups.begin();
1096 set<string> groups = storage->GetGroups(); local
    [all...]
  /packages/providers/ContactsProvider/tests/assets/testSynced/
legacy_contacts.sql 28 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);
40 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
41 INSERT INTO groups VALUES(1,'lemmytest@gmail.com',6,NULL,NULL,NULL,0,1,'System Group: My Contacts','System Group: My Contacts',0,'Contacts');
123 INSERT INTO sqlite_sequence VALUES('groups',1);
135 CREATE INDEX groupsSyncDirtyIndex ON groups (_sync_dirty);
158 CREATE TRIGGER groups_cleanup DELETE ON groups BEGIN UPDATE groupmembership SET group_id = null WHERE group_id = old._id;END;
159 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;
  /prebuilts/go/darwin-x86/src/io/
io.go 110 // ReadWriter is the interface that groups the basic Read and Write methods.
116 // ReadCloser is the interface that groups the basic Read and Close methods.
122 // WriteCloser is the interface that groups the basic Write and Close methods.
128 // ReadWriteCloser is the interface that groups the basic Read, Write and Close methods.
135 // ReadSeeker is the interface that groups the basic Read and Seek methods.
141 // WriteSeeker is the interface that groups the basic Write and Seek methods.
147 // ReadWriteSeeker is the interface that groups the basic Read, Write and Seek methods.
  /prebuilts/go/linux-x86/src/io/
io.go 110 // ReadWriter is the interface that groups the basic Read and Write methods.
116 // ReadCloser is the interface that groups the basic Read and Close methods.
122 // WriteCloser is the interface that groups the basic Write and Close methods.
128 // ReadWriteCloser is the interface that groups the basic Read, Write and Close methods.
135 // ReadSeeker is the interface that groups the basic Read and Seek methods.
141 // WriteSeeker is the interface that groups the basic Write and Seek methods.
147 // ReadWriteSeeker is the interface that groups the basic Read, Write and Seek methods.
  /external/chromium-trace/catapult/third_party/gsutil/third_party/httplib2/python2/httplib2/
__init__.py 212 groups = URI.match(uri).groups()
213 return (groups[1], groups[3], groups[4], groups[6], groups[8])
309 if match and len(match.groups()) == 3:
310 (key, value, the_rest) = match.groups()
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/httplib2/python3/httplib2/
__init__.py 142 groups = URI.match(uri).groups()
143 return (groups[1], groups[3], groups[4], groups[6], groups[8])
239 if match and len(match.groups()) == 3:
240 (key, value, the_rest) = match.groups()
    [all...]
  /external/testng/src/main/java/org/testng/
TestNG.java 80 * You can also define which groups to include or exclude, assign parameters, etc...
90 * <LI>-groups</LI>
499 * If used together with threadCount, parallel, groups, excludedGroups than this one must be set first.
654 * Define which groups will be excluded from this run.
656 * @param groups A list of group names separated by a comma.
658 public void setExcludedGroups(String groups) {
659 m_excludedGroups = Utils.split(groups, ",");
664 * Define which groups will be included from this run.
666 * @param groups A list of group names separated by a comma.
668 public void setGroups(String groups) {
1748 String groups = args.groups; local
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/manage/
server.py 235 # EC2 (e.g. hostname, security groups, etc.)
247 groups = CalculatedProperty(verbose_name="Security Groups", calculated_type=list, use_method=True) variable in class:Server
465 gn = self._reservation.groups
469 groups = self._groups()
470 if len(groups) >= 1:
471 return groups[0].id
  /external/dbus/bus/
policy.c 290 /* we avoid the overhead of looking up user's groups
295 unsigned long *groups; local
299 if (!bus_connection_get_unix_groups (connection, &groups, &n_groups, error))
308 groups[i]);
314 dbus_free (groups);
322 dbus_free (groups);
447 _dbus_verbose ("Did not get any groups for UID %lu\n",
    [all...]
  /system/extras/ext4_utils/
allocate.c 320 aux_info.bgs = calloc(sizeof(struct block_group_info), aux_info.groups);
324 for (i = 0; i < aux_info.groups; i++)
332 for (i = 0; i < aux_info.groups; i++) {
361 for (i = 0; i < aux_info.groups; i++) {
441 /* Allocate len blocks. The blocks may be spread across multiple block groups,
731 for (bg = 0; bg < aux_info.groups; bg++) {
  /external/toybox/toys/other/
bzcat.c 96 struct group_data groups[MAX_GROUPS]; // huffman coding tables member in struct:bunzip_data
198 // How many different huffman coding groups does this block use?
272 hufGroup = bd->groups+jj;
353 hufGroup = bd->groups + bd->selectors[selector++];
  /external/wpa_supplicant_8/wpa_supplicant/
mesh_rsn.c 242 int *groups = wpa_s->ifmsh->bss[0]->conf->sae_groups; local
245 if (!index_within_array(groups, wpa_s->mesh_rsn->sae_group_index))
249 int group = groups[wpa_s->mesh_rsn->sae_group_index];
  /frameworks/base/wifi/java/android/net/wifi/p2p/
WifiP2pManager.java 273 * Broadcast intent action indicating that remembered persistent groups have changed.
646 * @param groups Wi-Fi p2p group info list
648 public void onPersistentGroupInfoAvailable(WifiP2pGroupList groups);
774 WifiP2pGroupList groups = (WifiP2pGroupList) message.obj; local
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
sre_compile.py 510 if p.pattern.groups > 100:
512 "sorry, but this version only supports 100 named groups"
517 indexgroup = [None] * p.pattern.groups
523 p.pattern.groups-1,
  /prebuilts/gdb/linux-x86/lib/python2.7/
sre_compile.py 510 if p.pattern.groups > 100:
512 "sorry, but this version only supports 100 named groups"
517 indexgroup = [None] * p.pattern.groups
523 p.pattern.groups-1,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
sre_compile.py 510 if p.pattern.groups > 100:
512 "sorry, but this version only supports 100 named groups"
517 indexgroup = [None] * p.pattern.groups
523 p.pattern.groups-1,

Completed in 2165 milliseconds

<<11121314151617181920>>