Searched refs:group (Results 176 - 200 of 1472) sorted by relevance

1234567891011>>

/external/chromium_org/tools/gyp/tools/
H A Dpretty_gyp.py25 return matchobj.group(1) + matchobj.group(2) + '#' * len(matchobj.group(3))
35 return "%s%s%s%s" % (matchobj.group(1),
36 matchobj.group(2),
37 'x'*len(matchobj.group(3)),
38 matchobj.group(2))
53 split = len(m.group(1))
/external/chromium_org/tools/mac/
H A Ddump-static-initializers.py43 current_filename = file_match.group(1)
47 current_o_filename = o_file_match.group(1)
/external/chromium_org/tools/metrics/histograms/
H A Dupdate_net_error_codes.py36 errors[int(m.group(2))] = m.group(1)
/external/e2fsprogs/debian/
H A Duuid-runtime.postinst4 if ! getent group | grep -q libuuid; then
/external/iproute2/ip/
H A Dlink_veth.c33 int group; local
46 &name, &type, &link, &dev, &group);
/external/mockito/src/org/mockito/internal/util/
H A DDecamelizer.java34 deCameled.append(match.group());
37 deCameled.append(match.group().toLowerCase());
/external/chromium_org/chrome/browser/resources/options/
H A Dcontent_settings.js122 * that group.
125 for (var group in dict) {
126 var settingLabel = $(group + '-default-string');
128 var value = dict[group].value;
130 permissionsLookup[group] + value[0].toUpperCase() + value.slice(1);
134 var managedBy = dict[group].managedBy;
137 document.querySelector('input[type=radio][name=' + group + '][value=' +
138 dict[group].value + ']').checked = true;
140 group + ']');
146 'span.controlled-setting-indicator[content-setting=' + group
[all...]
/external/chromium_org/third_party/markdown/
H A Dinlinepatterns.py169 parent.set(match.group(1), match.group(2).replace('\n', ' '))
238 id = m.group(1)
250 """ Return a simple text of group(2) of a Pattern. """
252 text = m.group(2)
262 char = m.group(2)
271 Return element of type `tag` with a text attribute of group(3)
281 el.text = m.group(3)
299 el.text = util.AtomicString(m.group(3).strip())
313 el2.text = m.group(
[all...]
/external/chromium_org/device/usb/tools/
H A Dusb_ids.py32 vendor["id"] = int(vendor_match.group("id"), 16)
33 vendor["name"] = vendor_match.group("name")
42 product["id"] = int(product_match.group("id"), 16)
43 product["name"] = product_match.group("name")
/external/chromium_org/sync/test/engine/
H A Dfake_model_worker.h19 // current thread regardless of the group.
22 explicit FakeModelWorker(ModelSafeGroup group);
/external/chromium_org/tools/telemetry/telemetry/core/
H A Dextension_page.py11 return re.match(r"(chrome-extension://)([^/]+)", url).group(2)
/external/chromium-trace/trace-viewer/third_party/web_dev_style/web_dev_style/
H A Dcss_checker.py54 semis = map(lambda t: t.strip(), rule.group(1).split(';'))[:-1]
68 return (m and (m.group(1).lower() != m.group(1) or
69 m.group(1).find('_') >= 0))
88 return (m and _is_gray(m.group(1)) and _collapseable_hex(m.group(1)))
106 errors.append(' ' + b.group(1).strip().splitlines()[-1:][0])
111 return (m and not _is_gray(m.group(1)))
114 ms = int(float(re.search(small_seconds, line).group(1)) * 1000)
118 suggestions = ['rgb(%d, %d, %d)' % _rgb_from_hex(h.group(
[all...]
/external/chromium_org/build/android/
H A Dsymbolize.py41 frame = match.group('frame')
42 lib = match.group('lib')
43 addr = match.group('addr')
/external/chromium_org/third_party/markdown/extensions/
H A Dabbr.py90 abbr = m.group('abbr').strip()
91 title = m.group('title').strip()
123 abbr.text = m.group('abbr')
H A Dmeta.py106 key = m1.group('key').lower().strip()
107 value = m1.group('value').strip()
116 meta[key].append(m2.group('value').strip())
/external/chromium_org/ui/views/examples/
H A Dradio_button_example.cc29 int group = 1; local
33 "Radio %d in group %d", static_cast<int>(i) + 1, group)),
34 group);
/external/clang/bindings/python/tests/cindex/
H A Dtest_cursor_kind.py18 """Check that every kind classifies to exactly one group."""
36 group = [n for n in ('is_declaration', 'is_reference', 'is_expression',
45 assert len(group) == 0
47 assert len(group) == 1
/external/markdown/markdown/extensions/
H A Dabbr.py53 abbr = m.group('abbr').strip()
54 title = m.group('title').strip()
86 abbr.text = m.group('abbr')
H A Dfenced_code.py93 if m.group('lang'):
94 lang = LANG_TAG % m.group('lang')
95 code = CODE_WRAP % (lang, self._escape(m.group('code')))
/external/robolectric/src/main/java/com/xtremelabs/robolectric/util/
H A DPropertiesHelper.java20 String propertyName = variableMatcher.group(2);
32 String sdkPathStart = variableMatcher.group(1);
33 String sdkPathEnd = variableMatcher.group(3);
/external/wpa_supplicant_8/wpa_supplicant/utils/
H A Dlog2pcap.py44 if m.group(2):
45 ts = float(m.group(2))
48 hexdata = m.group(3)
/external/chromium_org/chrome/browser/ui/views/autofill/
H A Dautofill_dialog_views.cc1360 DetailsGroup* group = GroupForSection(section); local
1363 group->textfields.find(originating_type);
1364 if (text_mapping != group->textfields.end())
1371 AutofillType(originating_type).group() == CREDIT_CARD) {
1372 for (ComboboxMap::const_iterator it = group->comboboxes.begin();
1373 it != group->comboboxes.end(); ++it) {
1374 if (AutofillType(it->first).group() == CREDIT_CARD)
1384 DetailsGroup* group = GroupForSection(section); local
1385 for (TextfieldMap::const_iterator it = group->textfields.begin();
1386 it != group
1696 DetailsGroup* group = GroupForView(focused_before); local
1725 DetailsGroup* group = NULL; local
1889 DetailsGroup* group = GroupForSection(section); local
1905 DetailsGroup* group = GroupForSection(section); local
1923 DetailsGroup* group = GroupForSection(section); local
2020 DetailsGroup* group = GroupForSection(section); local
2072 UpdateDetailsGroupState(const DetailsGroup& group) argument
2166 DetailsGroup* group = GroupForSection(section); local
2198 ValidateGroup(const DetailsGroup& group, ValidationType validation_type) argument
2242 const DetailsGroup& group = iter->second; local
2267 DetailsGroup* group = textfield ? GroupForView(textfield) : local
2346 DetailsGroup* group = &iter->second; local
2361 EraseInvalidViewsInGroup(const DetailsGroup* group) argument
2374 DetailsGroup* group = GroupForSection(GetCreditCardSection()); local
2381 const DetailsGroup& group = iter->second; local
2421 const DetailsGroup& group = iter->second; local
2437 const DetailsGroup& group = it->second; local
2477 DetailsGroup* group = GroupForSection(section); local
[all...]
/external/chromium_org/chrome/browser/ui/autofill/
H A Dautofill_dialog_common.cc35 if (autofill_type.group() != field_type.group())
47 if (field_type.group() == NAME || field_type.group() == NAME_BILLING)
68 return AutofillType(type).group() == CREDIT_CARD;
/external/openssl/crypto/ecdsa/
H A Decs_ossl.c98 const EC_GROUP *group; local
101 if (eckey == NULL || (group = EC_KEY_get0_group(eckey)) == NULL)
127 if ((tmp_point = EC_POINT_new(group)) == NULL)
132 if (!EC_GROUP_get_order(group, order, ctx))
176 if (!EC_POINT_mul(group, tmp_point, k, NULL, NULL, ctx))
181 if (EC_METHOD_get_field_type(EC_GROUP_method_of(group)) == NID_X9_62_prime_field)
183 if (!EC_POINT_get_affine_coordinates_GFp(group,
193 if (!EC_POINT_get_affine_coordinates_GF2m(group,
249 const EC_GROUP *group; local
255 group
380 const EC_GROUP *group; local
[all...]
/external/tcpdump/
H A Dprint-igmp.c156 u_int group, nsrcs, ngroups; local
166 (void)printf(", %d group record(s)", ngroups);
168 /* Print the group records */
169 group = 8;
171 if (len < group+8) {
175 TCHECK2(bp[group+4], 4);
176 (void)printf(" [gaddr %s", ipaddr_string(&bp[group+4]));
178 bp[group]));
179 nsrcs = EXTRACT_16BITS(&bp[group+2]);
181 if (len < group
[all...]

Completed in 861 milliseconds

1234567891011>>