Searched refs:group (Results 426 - 450 of 949) sorted by relevance

<<11121314151617181920>>

/external/vogar/src/vogar/android/
H A DAdbTarget.java63 return m.matches() ? m.group(1) : "root";
/external/bison/lib/
H A Dstrtol.c239 int base, int group LOCALE_PARAM_PROTO)
260 if (group)
327 if (group)
/external/chromium-trace/trace-viewer/third_party/WebOb/webob/
H A Dcachecontrol.py169 name = match.group(1)
170 value = match.group(2) or match.group(3) or None
/external/droiddriver/src/io/appium/droiddriver/instrumentation/
H A DViewElement.java169 ViewGroup group = (ViewGroup) view;
170 int childCount = group.getChildCount();
173 View child = group.getChildAt(i);
/external/libnl/lib/netfilter/
H A Dlog_obj.c37 nl_dump(p, "group=%u ", log->log_group);
104 void nfnl_log_set_group(struct nfnl_log *log, uint16_t group) argument
106 log->log_group = group;
258 __ADD(LOG_ATTR_GROUP, group)
/external/lldb/utils/vim-lldb/python-vim-lldb/
H A Dvim_ui.py145 lineNum = int(match.group(2).strip())
146 ret.append((loc.IsResolved(), match.group(1), lineNum))
148 sys.stderr.write("unable to parse breakpoint location line number: '%s'" % match.group(2))
/external/protobuf/src/google/protobuf/
H A Dunknown_field_set.cc237 UnknownFieldSet* group = new UnknownFieldSet; local
238 group->MergeFrom(*group_);
239 group_ = group;
/external/selinux/libselinux/src/
H A Dseusers.c113 static int check_group(const char *group, const char *name, const gid_t gid) { argument
117 struct group gbuf, *grent = NULL;
128 int retval = getgrnam_r(group, &gbuf, rbuf,
/external/tcpdump/
H A Dprint-icmp6.c840 u_int group, nsrcs, ngroups; local
851 printf(", %d group record(s)", ngroups);
853 /* Print the group records */
854 group = 8;
857 if (len < group + 20) {
861 TCHECK2(bp[group + 4], sizeof(struct in6_addr));
862 printf(" [gaddr %s", ip6addr_string(&bp[group + 4]));
864 bp[group]));
865 nsrcs = (bp[group + 2] << 8) + bp[group
[all...]
/external/v8/tools/push-to-trunk/
H A Dmerge_to_branch.py268 group = parser.add_mutually_exclusive_group(required=True)
269 group.add_argument("--branch", help="The branch to merge to.")
270 group.add_argument("-R", "--revert-bleeding-edge",
/external/chromium-trace/trace-viewer/tracing/third_party/closure_linter/closure_linter/
H A Derror_fixer.py295 token.string = '%s%s%s(%s)%s' % (match.group('leading_whitespace'),
296 match.group('email'),
297 match.group('whitespace_after_name'),
298 match.group('name'),
299 match.group('trailing_characters'))
/external/clang/utils/
H A DFindSpecRefs639 line = int(m.group(1), 10)
642 best = (dist,'l'+m.group(1))
662 section = m.group(2)
663 name = m.group(1)
669 section = m.group(1)
/external/deqp/modules/gles3/functional/
H A Des3fMultisampleTests.cpp1639 TestCaseGroup* group = new TestCaseGroup(m_context, local
1650 DE_ASSERT(group->getName() != DE_NULL);
1651 DE_ASSERT(group->getDescription() != DE_NULL);
1653 addChild(group);
1655 group->addChild(new PolygonNumSamplesCase (m_context, "num_samples_polygon", "Test sanity of the sample count, with polygons", numFboSamples));
1656 group->addChild(new LineNumSamplesCase (m_context, "num_samples_line", "Test sanity of the sample count, with lines", numFboSamples));
1657 group->addChild(new CommonEdgeCase (m_context, "common_edge_small_quads", "Test polygons' common edges with small quads", CommonEdgeCase::CASETYPE_SMALL_QUADS, numFboSamples));
1658 group->addChild(new CommonEdgeCase (m_context, "common_edge_big_quad", "Test polygons' common edges with bigger-than-viewport quads", CommonEdgeCase::CASETYPE_BIGGER_THAN_VIEWPORT_QUAD, numFboSamples));
1659 group->addChild(new CommonEdgeCase (m_context, "common_edge_viewport_quad", "Test polygons' common edges with exactly viewport-sized quads", CommonEdgeCase::CASETYPE_FIT_VIEWPORT_QUAD, numFboSamples));
1660 group
[all...]
/external/e2fsprogs/misc/
H A Dtune2fs.c120 "[-g group]\n"
289 int group; local
293 group = ext2fs_group_of_blk2(fs, block);
294 ext2fs_bg_free_blocks_count_set(fs, group, ext2fs_bg_free_blocks_count(fs, group) + 1);
295 ext2fs_group_desc_csum_set(fs, group);
473 * We want to update group desc with the new free blocks count
512 /* We need to force out the group descriptors as well */
597 /* Enable both user quota and group quota by default */
614 /* Disable both user quota and group quot
1354 dgrp_t group; local
1363 ext2fs_is_block_in_group(ext2_filsys fs, dgrp_t group, blk64_t blk) argument
1382 dgrp_t group = 0; local
1666 unsigned int group = 0; local
[all...]
/external/harfbuzz_ng/src/
H A Dhb-ot-cmap-table.hh192 ULONG startCharCode; /* First character code in this group. */
193 ULONG endCharCode; /* Last character code in this group. */
263 static inline hb_codepoint_t group_get_glyph (const CmapSubtableLongGroup &group, argument
265 { return group.glyphID + (u - group.startCharCode); }
270 static inline hb_codepoint_t group_get_glyph (const CmapSubtableLongGroup &group, argument
272 { return group.glyphID; }
/external/markdown/markdown/
H A Dblockprocessors.py163 indent_level = len(m.group(1))/markdown.TAB_LENGTH
250 return m.group(2)
258 # Detect an item (``1. item``). ``group(1)`` contains contents of item.
309 items.append(m.group(3))
351 h = markdown.etree.SubElement(parent, 'h%d' % len(m.group('level')))
352 h.text = m.group('header').strip()
/external/selinux/policycoreutils/semanage/
H A Dtest-semanage.py254 group = parser.add_mutually_exclusive_group(required=True)
255 group.add_argument('-a', "--all", dest="all", default=False,
258 group.add_argument('-l', "--list", dest="list", default=False,
261 group.add_argument('-t', "--test", dest="test", default=[],
264 group.set_defaults(func=semanage_args)
/external/v8/tools/
H A Drun_perf.py240 re.search(self.results_regexp, stdout, re.M).group(1))
250 self.stddev = re.search(self.stddev_regexp, stdout, re.M).group(1)
342 trace = match.group(1)
343 result = match.group(2)
344 stddev = match.group(3)
/external/libxml2/xstc/
H A Dxstc.py192 # Get the test-group.
195 self.group = runner.getGroup(self.groupName)
218 if (not options.silent) and (self.group.descr is not None):
219 self.log.append("'%s' group-descr: %s\n" % (self.name, self.group.descr))
374 self.group.setSchema(self.fileName, schema is not None)
388 if not self.group.schemaParsed and self.group.schemaTried:
416 self.debugMsg("loading schema: %s" % self.group.schemaFileName)
417 schema = parseSchema(self.group
[all...]
/external/protobuf/python/
H A Dmox.py603 # group.
646 """Returns a possible group from the end of the call queue or None if no
650 # Remove this method from the tail of the queue so we can add it to a group.
654 # Determine if the tail of the queue is a group, or just a regular ordered
656 group = None
658 group = self._call_queue[-1]
662 return group
665 """Checks if the last method (a possible group) is an instance of our
666 group_class. Adds the current method to this group or creates a new one.
670 group_name: the name of the group
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DSpoofChecker.java105 * <p>The safest approach is to enable all three of these checks as a group.
765 + matcher.group(), matcher.start());
770 int startCodePoint = Integer.parseInt(matcher.group(2), 16);
773 + ": out of range code point: " + matcher.group(2), matcher.start(2));
777 endCodePoint = Integer.parseInt(matcher.group(3), 16);
781 + ": out of range code point: " + matcher.group(3), matcher.start(3));
785 String srcScriptName = matcher.group(4);
786 String targScriptName = matcher.group(5);
791 + ": Invalid script code t: " + matcher.group(4), matcher.start(4));
795 + ": Invalid script code t: " + matcher.group(
[all...]
/external/chromium-trace/trace-viewer/third_party/Paste/paste/
H A Dfixture.py561 end = match.group(1) == '/'
562 tag = match.group(2).lower()
717 el_html = match.group(0)
718 el_attr = match.group(1)
719 el_content = match.group(2)
732 el_href = m.group(1)
965 end = match.group(1) == '/'
966 tag = match.group(2).lower()
972 '%r without starting select' % match.group(0))
983 attrs = _parse_attrs(match.group(
[all...]
/external/deqp/modules/gles31/functional/
H A Des31fMultisampleTests.cpp1001 tcu::TestCaseGroup* const group = new tcu::TestCaseGroup(m_testCtx, "default_framebuffer", "Test with default framebuffer"); member in class:deqp::gles31::Functional::tcu
1003 addChild(group);
1008 group->addChild(new SamplePosQueryCase (m_context, "sample_position", "test SAMPLE_POSITION"));
1011 group->addChild(new MaskInvertCase (m_context, "sample_mask_sum_of_inverses", "Test that mask and its negation's sum equal the fully set mask"));
1012 group->addChild(new MaskProportionalityCase (m_context, "proportionality_sample_mask", "Test the proportionality property of GL_SAMPLE_MASK"));
1014 group->addChild(new MaskConstancyCase (m_context, "constancy_sample_mask",
1017 group->addChild(new MaskConstancyCase (m_context, "constancy_alpha_to_coverage_sample_mask",
1020 group->addChild(new MaskConstancyCase (m_context, "constancy_sample_coverage_sample_mask",
1023 group->addChild(new MaskConstancyCase (m_context, "constancy_alpha_to_coverage_sample_coverage_sample_mask",
1026 group
[all...]
/external/iproute2/ip/
H A Diplink.c54 fprintf(stderr, " ip link set { dev DEVICE | group DEVGROUP } [ { up | down } ]\n");
80 fprintf(stderr, " ip link show [ DEVICE | group GROUP ]\n");
274 char **name, char **type, char **link, char **dev, int *group)
283 *group = -1;
427 } else if (strcmp(*argv, "group") == 0) {
429 if (*group != -1)
430 duparg("group", *argv);
431 if (rtnl_group_a2n(group, *argv))
432 invarg("Invalid \"group\" value\n", *argv);
471 int group; local
273 iplink_parse(int argc, char **argv, struct iplink_req *req, char **name, char **type, char **link, char **dev, int *group) argument
[all...]
/external/lldb/examples/python/
H A Dgdbremote.py466 return int(match.group(1), 16)
892 direction = m.group('direction')
894 packet = m.group('packet')
914 contents = m.group(1)
918 last_command = m.group(1)
920 last_command_args = m.group(2)
926 packet_name = packet_match.group(1)
945 curr_time = float (match.group(2))
964 print '%s%.6f %+.6f%s' % (match.group(1), curr_time - base_time, delta, match.group(
[all...]

Completed in 971 milliseconds

<<11121314151617181920>>