Searched refs:groups (Results 1 - 25 of 290) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/build/scripts/
H A Drjsmin.py189 groups = match.groups()
190 if groups[0]:
191 return groups[0]
192 elif groups[1]:
193 return groups[1]
194 elif groups[2]:
195 return groups[2]
196 elif groups[3]:
197 return groups[
[all...]
/external/chromium_org/tools/grit/grit/gather/
H A Dregexp.py49 All translateables must be in named groups that have names starting with
50 'text'. All textual IDs must be in named groups that have names starting
61 groups = match.groupdict()
62 keys = groups.keys()
66 if group.startswith('id') and groups[group]:
67 self._AddTextualId(groups[group])
68 elif group.startswith('text') and groups[group]:
72 self._AddTranslateableChunk(groups[group])
73 elif group.startswith('type') and groups[group]:
79 self.AddDescriptionElement(groups[grou
[all...]
/external/iproute2/ip/
H A Dipmonitor.c115 unsigned groups = ~RTMGRP_TC; local
133 groups = 0;
136 groups = 0;
139 groups = 0;
142 groups = 0;
145 groups = 0;
147 groups = ~RTMGRP_TC;
159 groups |= nl_mgrp(RTNLGRP_LINK);
162 groups |= nl_mgrp(RTNLGRP_IPV4_IFADDR);
164 groups |
[all...]
H A Drtmon.c72 unsigned groups = ~0U; local
113 groups = 0;
116 groups = 0;
119 groups = 0;
121 groups = ~0U;
136 groups |= nl_mgrp(RTNLGRP_LINK);
139 groups |= nl_mgrp(RTNLGRP_IPV4_IFADDR);
141 groups |= nl_mgrp(RTNLGRP_IPV6_IFADDR);
145 groups |= nl_mgrp(RTNLGRP_IPV4_ROUTE);
147 groups |
[all...]
/external/chromium_org/tools/grit/grit/
H A Dshortcuts.py43 keys = [groups[1] for groups in self.SHORTCUT_RE.findall(content)]
73 if there are conflicting shortcuts within shortcut groups in the provided
84 groups = {}
87 if group not in groups:
88 groups[group] = ShortcutGroup(group)
89 groups[group].AddClique(c)
90 for group in groups.values():
/external/libnl/src/
H A Dnf-monitor.c46 } groups[] = { local
58 printf("Usage: nf-monitor [<groups>]\n");
60 printf("Known groups:");
61 for (i = 0; groups[i].gr_id != NFNLGRP_NONE; i++)
62 printf(" %s", groups[i].gr_name);
70 for (i = 0; groups[i].gr_id != NFNLGRP_NONE; i++) {
71 if (strcmp(argv[idx], groups[i].gr_name))
74 err = nl_socket_add_membership(sock, groups[i].gr_id);
82 if (groups[i].gr_id == NFNLGRP_NONE)
H A Dnl-list-sockets.c33 uint32_t groups; local
36 &sk, &proto, &pid, &groups, &rmem, &wmem,
43 groups, rmem, wmem, cb, refcnt);
/external/guava/guava-testlib/src/com/google/common/testing/
H A DRelationshipTester.java37 private final List<ImmutableList<T>> groups = Lists.newArrayList(); field in class:RelationshipTester
45 groups.add(ImmutableList.copyOf(group));
50 for (int groupNumber = 0; groupNumber < groups.size(); groupNumber++) {
51 ImmutableList<T> group = groups.get(groupNumber);
59 // check unrelated items in all other groups
60 for (int unrelatedGroupNumber = 0; unrelatedGroupNumber < groups.size();
63 ImmutableList<T> unrelatedGroup = groups.get(unrelatedGroupNumber);
75 ImmutableList<T> group = groups.get(groupNumber);
90 T item = groups.get(groupNumber).get(itemNumber);
91 T unrelated = groups
[all...]
/external/chromium_org/chrome/browser/password_manager/
H A Dpassword_manager_metrics_util_unittest.cc46 // The |groups| map contains the group id and the number of times
48 std::map<size_t, size_t> groups; local
62 ++groups[password_manager::metrics_util::MonitoredDomainGroupId(
67 // Check if all groups get assigned the same number of times.
68 size_t number_of_assigment = groups.begin()->second;
69 for (std::map<size_t, size_t>::iterator it = groups.begin();
70 it != groups.end(); ++it) {
/external/elfutils/0.153/libasm/
H A Dasm_newscngrp.c91 assert (ctx->groups == NULL);
92 ctx->groups = result->next = result;
96 result->next = ctx->groups->next;
97 ctx->groups = ctx->groups->next = result;
/external/deqp/scripts/
H A Dtestset.py98 groups = []
102 groups.append(group)
103 return groups
106 groups = []
111 groups.append(group)
118 die("Case '%s' matched by multiple groups (when processing '%s')" % (case.name, group.name))
122 return groups
125 groups = []
134 groups.append(group)
141 return groups
[all...]
/external/chromium_org/mojo/public/python/mojo/bindings/
H A Dserialization.py28 def __init__(self, groups):
29 self.version = _GetVersion(groups)
30 self._groups = groups
31 main_struct = _GetStruct(groups)
37 self.version: groups,
103 def _GetVersion(groups):
104 return sum([len(x.descriptors) for x in groups])
107 def _FilterGroups(groups, version):
108 return [group for group in groups if group.GetVersion() < version]
111 def _GetStruct(groups)
[all...]
/external/chromium_org/chrome/browser/web_dev_style/
H A Dregex_check.py10 part of |line| can be highlighted. If more groups are needed, use
26 assert len(match.groups()) == 1
/external/lldb/test/pexpect-2.4/examples/
H A Ddf.py20 filesystem_list.append (child.match.groups())
/external/chromium-trace/trace-viewer/src/tracing/importer/
H A Dlinux_perf_importer.js123 var groups = lineREWithTGID.exec(line);
124 if (!groups) {
125 return groups;
128 var tgid = groups[3];
133 threadName: groups[1],
134 pid: groups[2],
136 cpuNumber: groups[4],
137 timestamp: groups[5],
138 eventName: groups[6],
139 details: groups[
[all...]
/external/chromium-trace/trace-viewer/src/tracing/trace_model/
H A Dasync_slice_group.js79 var groups = [];
83 groups.push(group);
85 return groups;
/external/chromium_org/remoting/host/win/
H A Dsecurity_descriptor.cc49 TypedBuffer<TOKEN_GROUPS> groups(length);
50 if (!GetTokenInformation(token, TokenGroups, groups.get(), length, &length))
53 for (uint32 i = 0; i < groups->GroupCount; ++i) {
54 if ((groups->Groups[i].Attributes & SE_GROUP_LOGON_ID) ==
56 length = GetLengthSid(groups->Groups[i].Sid);
58 if (!CopySid(length, logon_sid.get(), groups->Groups[i].Sid))
/external/chromium_org/tools/binary_size/
H A Dbinary_size_utils.py42 size, sym_type, sym = match.groups()[0:3]
51 # sym_type, sym = match.groups()[0:2]
55 sym_type, sym = match.groups()
/external/smack/src/org/jivesoftware/smackx/
H A DRemoteRosterEntry.java27 * the groups the roster item belongs to. This roster item does not belong
45 * @param groups the list of group names the entry will belong to, or <tt>null</tt> if the
48 public RemoteRosterEntry(String user, String name, String [] groups) { argument
51 if (groups != null) {
52 groupNames.addAll(Arrays.asList(groups));
/external/smack/src/org/jivesoftware/smackx/packet/
H A DSharedGroupsInfo.java31 * IQ packet used for discovering the user's shared groups and for getting the answer back
41 private List<String> groups = new ArrayList<String>(); field in class:SharedGroupsInfo
49 return groups;
55 for (Iterator<String> it=groups.iterator(); it.hasNext();) {
/external/chromium_org/third_party/ots/src/
H A Dcmap.cc36 // The maximum number of groups in format 12, 13 or 14 subtables.
289 std::vector<ots::OpenTypeCMAPSubtableRange> &groups local
291 groups.resize(num_groups);
294 if (!subtable.ReadU32(&groups[i].start_range) ||
295 !subtable.ReadU32(&groups[i].end_range) ||
296 !subtable.ReadU32(&groups[i].start_glyph_id)) {
300 if (groups[i].start_range > kUnicodeUpperLimit ||
301 groups[i].end_range > kUnicodeUpperLimit ||
302 groups[i].start_glyph_id > 0xFFFF) {
307 if (groups[
373 std::vector<ots::OpenTypeCMAPSubtableRange> &groups local
958 std::vector<OpenTypeCMAPSubtableRange> &groups local
980 std::vector<OpenTypeCMAPSubtableRange> &groups local
[all...]
/external/chromium_org/third_party/skia/src/animator/
H A DSkDump.cpp26 SK_MEMBER(groups, Boolean),
36 SkDump::SkDump() : displayList(-1), eventList(-1), events(-1), groups(-1), posts(-1) {
47 if (groups > 0)
118 SK_PROPERTY(groups),
128 SK_MEMBER_PROPERTY(groups, Boolean),
/external/skia/src/animator/
H A DSkDump.cpp26 SK_MEMBER(groups, Boolean),
36 SkDump::SkDump() : displayList(-1), eventList(-1), events(-1), groups(-1), posts(-1) {
47 if (groups > 0)
118 SK_PROPERTY(groups),
128 SK_MEMBER_PROPERTY(groups, Boolean),
/external/oprofile/libpp/
H A Dpopulate_for_spu.cpp112 for (size_t i = 0; i < ip.groups.size(); ++i) {
114 ip.groups[i].begin();
116 = ip.groups[i].end();
132 if (!ip.groups.size())
135 for (size_t i = 0; i < ip.groups.size(); ++i) {
137 = ip.groups[i].begin();
139 = ip.groups[i].end();
/external/chromium_org/sandbox/win/src/
H A Drestricted_token_unittest.cc185 ATL::CTokenGroups groups; local
186 ASSERT_TRUE(restricted_token.GetGroups(&groups));
190 groups.GetSidsAndAttributes(&sids, &attributes);
212 ATL::CTokenGroups groups; local
213 ASSERT_TRUE(restricted_token.GetGroups(&groups));
217 groups.GetSidsAndAttributes(&sids, &attributes);
244 ATL::CTokenGroups groups; local
245 ASSERT_TRUE(restricted_token.GetGroups(&groups));
249 groups.GetSidsAndAttributes(&sids, &attributes);
277 ATL::CTokenGroups groups; local
315 ATL::CTokenGroups groups; local
413 TOKEN_GROUPS *groups = reinterpret_cast<TOKEN_GROUPS*>(memory); local
535 TOKEN_GROUPS *groups = reinterpret_cast<TOKEN_GROUPS*>(memory); local
560 ATL::CTokenGroups groups; local
[all...]

Completed in 1492 milliseconds

1234567891011>>