Searched refs:group (Results 201 - 225 of 1472) sorted by relevance

1234567891011>>

/external/antlr/antlr-3.4/runtime/Python/tests/
H A Dt055templates.py12 def execParser(self, grammar, grammarEntry, input, group=None):
19 if group is not None:
20 parser.templateLib = group
56 group T;
63 group = stringtemplate3.StringTemplateGroup(
88 group
227 group T;
234 group = stringtemplate3.StringTemplateGroup(
259 group
/external/chromium_org/tools/grit/grit/tool/
H A Dtoolbar_postprocess.py49 # with ids that are offsetted to the message group's first id
61 prefix = mo.group(1)
62 previous_prefix = mp.group(1)
63 new_message_id = mp.group(2)
79 previous_prefix = mp.group(1)
80 new_message_id = mp.group(2)
90 previous_prefix = mp.group(1)
91 new_message_id = mp.group(2)
H A Drc2grd.py84 # Uses non-capturing groups except for the outermost group, so the output of
272 id = m.group('id')
273 res_type = m.group('type').upper()
274 fname = rc.Section.UnEscape(m.group('file'))
288 id = m.group('id')
289 res_type = m.group('type').upper()
290 fname = rc.Section.UnEscape(m.group('file'))
302 AddStructure('menu', m.group('id'))
304 AddStructure('dialog', m.group('id'))
306 AddStructure('version', m.group('i
[all...]
/external/clang/www/analyzer/scripts/
H A Dexpandcollapse.js11 // array[group][cell] of { 'height', 'expanded' }.
12 // group: a number; cells of the same group belong to the same table row.
13 // cell: a number; unique index of a cell in a group.
18 // Extracts group and cell indices from an id of the form identifier_group_cell.
21 return { 'group': idx[0], 'cell': idx[1] };
27 return CellsInfo[idx.group][idx.cell];
160 for (var i = 0; i < CellsInfo[idx.group].length; i++) {
161 var idxStr = "_" + idx.group + "_" + i;
166 var state = CellsInfo[idx.group][
[all...]
/external/fonttools/Lib/fontTools/misc/
H A Dsstruct.py148 formatchar = m.group(1)
155 name = m.group(1)
157 formatchar = m.group(2)
158 if m.group(3):
160 before = int(m.group(3))
161 after = int(m.group(4))
166 assert m.group(5) == "F"
/external/fonttools/Tools/fontTools/misc/
H A Dsstruct.py148 formatchar = m.group(1)
155 name = m.group(1)
157 formatchar = m.group(2)
158 if m.group(3):
160 before = int(m.group(3))
161 after = int(m.group(4))
166 assert m.group(5) == "F"
/external/markdown/markdown/extensions/
H A Dheaderid.py82 (?P<level>\#{1,6}) # group('level') = string of hashes
83 (?P<header>.*?) # group('header') = Header text
86 (\n|$) # ^^ group('id') = id attribute
108 level = len(m.group('level')) + start_level
112 h.text = m.group('header').strip()
113 if m.group('id'):
114 h.set('id', self._unique_id(m.group('id')))
116 h.set('id', self._create_id(m.group('header').strip()))
149 id = '%s_%d'% (m.group(1), int(m.group(
[all...]
/external/e2fsprogs/e2fsck/
H A Dpass5.c97 * inode number 'start' within the 'group'. Note that 'start'
101 static void e2fsck_discard_inodes(e2fsck_t ctx, dgrp_t group, argument
111 printf("PROGRAMMING ERROR: Got start %d outside of group %d!"
113 start, group);
119 * skip the discard on this group if discard does not zero data.
132 * Start is inode number within the group which starts
144 blk += ext2fs_inode_table_loc(fs, group);
198 dgrp_t g, group = 0; local
263 (ext2fs_bg_flags_test(fs, group, EXT2_BG_BLOCK_UNINIT)))
280 * block group
538 dgrp_t group = 0; local
[all...]
/external/e2fsprogs/lib/ext2fs/
H A Dclosefs.c35 int ext2fs_bg_has_super(ext2_filsys fs, dgrp_t group) argument
38 EXT2_FEATURE_RO_COMPAT_SPARSE_SUPER) || group <= 1)
40 if (!(group & 1))
42 if (test_root(group, 3) || (test_root(group, 5)) ||
43 test_root(group, 7))
52 * @group given block group
55 * group descriptor
57 * group descripto
63 ext2fs_super_and_bgd_loc2(ext2_filsys fs, dgrp_t group, blk64_t *ret_super_blk, blk64_t *ret_old_desc_blk, blk64_t *ret_new_desc_blk, blk_t *ret_used_blks) argument
137 ext2fs_super_and_bgd_loc(ext2_filsys fs, dgrp_t group, blk_t *ret_super_blk, blk_t *ret_old_desc_blk, blk_t *ret_new_desc_blk, int *ret_meta_bg) argument
245 write_backup_super(ext2_filsys fs, dgrp_t group, blk64_t group_block, struct ext2_super_block *super_shadow) argument
[all...]
/external/chromium_org/content/browser/appcache/
H A Dappcache_storage_impl.cc66 NOTREACHED() << "A existing group without a cache is unexpected";
113 std::vector<AppCacheDatabase::GroupRecord>::const_iterator group; local
114 for (group = groups.begin(); group != groups.end(); ++group) {
122 group->group_id,
126 } // for each group
369 group = groups.begin();
370 group != groups.end(); ++group) {
425 CreateCacheAndGroupFromRecords( scoped_refptr<AppCache>* cache, scoped_refptr<AppCacheGroup>* group) argument
528 scoped_refptr<AppCacheGroup> group; local
569 scoped_refptr<AppCacheGroup> group; local
616 StoreGroupAndCacheTask( AppCacheStorageImpl* storage, AppCacheGroup* group, AppCache* newest_cache) argument
894 AppCacheGroup* group = it->second; local
1152 MakeGroupObsoleteTask( AppCacheStorageImpl* storage, AppCacheGroup* group, int response_code) argument
1294 UpdateGroupLastAccessTimeTask( AppCacheStorageImpl* storage, AppCacheGroup* group, base::Time time) argument
1428 AppCacheGroup* group = working_set_.GetGroup(manifest_url); local
1458 StoreGroupAndNewestCache( AppCacheGroup* group, AppCache* newest_cache, Delegate* delegate) argument
1540 FindResponseForMainRequestInGroup( AppCacheGroup* group, const GURL& url, Delegate* delegate) argument
1558 DeliverShortCircuitedFindMainResponse( const GURL& url, const AppCacheEntry& found_entry, scoped_refptr<AppCacheGroup> group, scoped_refptr<AppCache> cache, scoped_refptr<DelegateReference> delegate_ref) argument
1626 MakeGroupObsolete(AppCacheGroup* group, Delegate* delegate, int response_code) argument
[all...]
H A Dappcache_service_impl.cc147 AppCacheGroup* group, const GURL& manifest_url) OVERRIDE;
148 virtual void OnGroupMadeObsolete(AppCacheGroup* group,
157 AppCacheGroup* group, const GURL& manifest_url) {
158 if (group) {
159 group->set_being_deleted(true);
160 group->CancelUpdate();
161 service_->storage()->MakeGroupObsolete(group, this, 0);
169 AppCacheGroup* group,
196 AppCacheGroup* group, const GURL& manifest_url) OVERRIDE;
197 virtual void OnGroupMadeObsolete(AppCacheGroup* group,
156 OnGroupLoaded( AppCacheGroup* group, const GURL& manifest_url) argument
168 OnGroupMadeObsolete( AppCacheGroup* group, bool success, int response_code) argument
240 OnGroupLoaded( AppCacheGroup* group, const GURL& manifest_url) argument
251 OnGroupMadeObsolete( AppCacheGroup* group, bool success, int response_code) argument
353 OnGroupLoaded( AppCacheGroup* group, const GURL& manifest_url) argument
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/ec/
H A Dec_asn1.c158 ECPKPARAMETERS *ec_asn1_group2pkparameters(const EC_GROUP *group, argument
176 nid = EC_GROUP_get_curve_name(group);
204 * group order. */
238 EC_GROUP *group = NULL; local
248 group = ec_asn1_pkparameters2group(params);
249 if (group == NULL) {
259 *groupp = group;
263 return group;
266 static int i2d_ECPKParameters(const EC_GROUP *group, uint8_t **outp) { argument
268 ECPKPARAMETERS *tmp = ec_asn1_group2pkparameters(group, NUL
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/template/
H A Dgroup-file-parser.rb90 "'group'", "'::'", "';'", "'::='", "'('", "')'", "','",
119 group = namespace.const_get( name )
120 unless group.is_a?( ANTLR3::Template::Group )
124 group = ANTLR3::Template::Group.new
125 namespace.const_set( name, group )
127 return( group )
160 def group( namespace = ::Object ) method in class:ANTLR3.Template.GroupFile.Parser
170 # 79:1: group_spec[ namespace ] returns [ group ] : ( group_name[ $namespace ] | ) ( member[ $group ] )* ;
175 group
[all...]
/external/chromium_org/tools/deep_memory_profiler/lib/
H A Ddeep_dump.py73 self._pid = int(matched.group(2))
74 self._count = int(matched.group(3))
254 matched_format.group(1), '%Y/%m/%d %H:%M:%S').timetuple())
255 if matched_format.group(2):
256 self._time += float(matched_format.group(2)[1:]) / 1000.0
258 self._time = float(matched_seconds.group(1))
324 if matched.group(7) == 'hooked':
325 submatched = self._HOOKED_PATTERN.match(matched.group(8))
327 submatched = self._OLD_HOOKED_PATTERN.match(matched.group(8))
328 elif matched.group(
[all...]
/external/deqp/modules/gles3/performance/
H A Des3pDepthTests.cpp1787 tcu::TestCaseGroup* const group = new tcu::TestCaseGroup(m_testCtx, "workload", "Workload"); member in class:deqp::gles3::Performance::tcu
1789 cullEfficiencyGroup->addChild(group);
1791 group->addChild(new FragmentTextureWorkloadCullCase( testCtx, renderCtx, "workload_texture", "Fragment shader with texture lookup workload"));
1792 group->addChild(new FragmentArithmeticWorkloadCullCase( testCtx, renderCtx, "workload_arithmetic", "Fragment shader with arithmetic workload"));
1793 group->addChild(new FragmentDiscardArithmeticWorkloadCullCase( testCtx, renderCtx, "workload_arithmetic_discard", "Fragment shader that may discard with arithmetic workload"));
1797 tcu::TestCaseGroup* const group = new tcu::TestCaseGroup(m_testCtx, "occluder_discard", "Discard"); member in class:deqp::gles3::Performance::tcu
1799 cullEfficiencyGroup->addChild(group);
1801 group->addChild(new PartialOccluderDiscardCullCase(testCtx, renderCtx, "grid_256", "Parts of occluder geometry discarded", 256));
1802 group->addChild(new PartialOccluderDiscardCullCase(testCtx, renderCtx, "grid_128", "Parts of occluder geometry discarded", 128));
1803 group
1813 tcu::TestCaseGroup* const group = new tcu::TestCaseGroup(m_testCtx, "partial_coverage", "Partial Coverage"); member in class:deqp::gles3::Performance::tcu
1829 tcu::TestCaseGroup* const group = new tcu::TestCaseGroup(m_testCtx, "frag_depth", "Partial Coverage"); member in class:deqp::gles3::Performance::tcu
1840 tcu::TestCaseGroup* const group = new tcu::TestCaseGroup(m_testCtx, "order", "Rendering order"); member in class:deqp::gles3::Performance::tcu
1854 tcu::TestCaseGroup* const group = new tcu::TestCaseGroup(m_testCtx, "gradient", "Gradients with small depth differences"); member in class:deqp::gles3::Performance::tcu
1867 tcu::TestCaseGroup* const group = new tcu::TestCaseGroup(m_testCtx, "occluder_geometry", "Occluders with varying geometry complexity"); member in class:deqp::gles3::Performance::tcu
1897 tcu::TestCaseGroup* const group = new tcu::TestCaseGroup(m_testCtx, "frag_depth", "Modifying gl_FragDepth"); member in class:deqp::gles3::Performance::tcu
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/
H A Dgenerate_injected_script_externs.py167 return_type = Type(match.group(1), match.group(2) is not None, match.group(3) is not None)
168 name = match.group(4)
169 methods.append(Method(return_type, name, parse_args(match.group(5))))
173 type = Type(match.group(1), match.group(2) is not None, match.group(3) is not None)
174 name = match.group(4)
179 interface_name = match.group(
[all...]
/external/chromium_org/tools/grit/grit/format/policy_templates/writers/
H A Dadmx_writer.py292 elif policy_type == 'group':
310 def _BeginPolicyGroup(self, group, name, parent):
315 'displayName': self._AdmlString(group['name'] + '_group'),
325 def BeginPolicyGroup(self, group):
326 self._BeginPolicyGroup(group,
327 group['name'],
329 self._active_mandatory_policy_group_name = group['name']
335 def BeginRecommendedPolicyGroup(self, group):
336 self._BeginPolicyGroup(group,
337 group['nam
[all...]
/external/llvm/utils/Misc/
H A Dzkill166 group = OptionGroup(parser, "Process Filters")
167 group.add_option("", "--name", dest="execName", metavar="REGEX",
170 group.add_option("", "--exec", dest="execPath", metavar="REGEX",
173 group.add_option("", "--user", dest="userName", metavar="REGEX",
176 group.add_option("", "--min-cpu", dest="minCPU", metavar="PCT",
179 group.add_option("", "--max-cpu", dest="maxCPU", metavar="PCT",
182 group.add_option("", "--min-mem", dest="minMem", metavar="N",
185 group.add_option("", "--max-mem", dest="maxMem", metavar="N",
188 group.add_option("", "--min-rss", dest="minRSS", metavar="N",
191 group
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/tools/
H A Dcpplint.py471 category = matched.group(1)
1082 line = leading_space.group(1) + '""' + line[end + len(delimiter):]
1093 delimiter = ')' + matched.group(2) + '"'
1095 end = matched.group(3).find(delimiter)
1098 line = (matched.group(1) + '""' +
1099 matched.group(3)[end + len(delimiter):])
1103 line = matched.group(1) + '""'
1700 self.class_indent = len(initial_indent.group(1))
1728 if indent and len(indent.group(1)) != self.class_indent:
1942 new_namespace = _NamespaceInfo(namespace_decl_match.group(
[all...]
/external/libvpx/libvpx/tools/
H A Dcpplint.py471 category = matched.group(1)
1082 line = leading_space.group(1) + '""' + line[end + len(delimiter):]
1093 delimiter = ')' + matched.group(2) + '"'
1095 end = matched.group(3).find(delimiter)
1098 line = (matched.group(1) + '""' +
1099 matched.group(3)[end + len(delimiter):])
1103 line = matched.group(1) + '""'
1700 self.class_indent = len(initial_indent.group(1))
1728 if indent and len(indent.group(1)) != self.class_indent:
1942 new_namespace = _NamespaceInfo(namespace_decl_match.group(
[all...]
/external/deqp/modules/gles31/functional/
H A Des31fFboNoAttachmentTests.cpp511 tcu::TestCaseGroup* const group = new tcu::TestCaseGroup(testCtx, "size", "Basic functionality tests with varying default size"); member in class:deqp::gles31::Functional::tcu
513 root->addChild(group);
524 group->addChild(new SizeCase(testCtx, renderCtx, name.str().c_str(), name.str().c_str(), spec));
559 tcu::TestCaseGroup* const group = new tcu::TestCaseGroup(testCtx, "npot_size", "Basic functionality with Non-power-of-two size"); member in class:deqp::gles31::Functional::tcu
561 root->addChild(group);
570 group->addChild(new SizeCase(testCtx, renderCtx, name.str().c_str(), name.str().c_str(), spec));
576 tcu::TestCaseGroup* const group = new tcu::TestCaseGroup(testCtx, "multisample", "Basic functionality with multisampled fbo"); member in class:deqp::gles31::Functional::tcu
578 root->addChild(group);
587 group->addChild(new SizeCase(testCtx, renderCtx, name.str().c_str(), name.str().c_str(), spec));
593 tcu::TestCaseGroup* const group member in class:deqp::gles31::Functional::tcu
612 tcu::TestCaseGroup* const group = new tcu::TestCaseGroup(testCtx, "interaction", "Interaction of default parameters with normal fbo"); member in class:deqp::gles31::Functional::tcu
647 tcu::TestCaseGroup* const group = new tcu::TestCaseGroup(testCtx, "maximums", "Maximum dimensions"); member in class:deqp::gles31::Functional::tcu
662 TestCaseGroup* const group = new TestCaseGroup(context, "completeness", "Completeness tests"); local
[all...]
/external/chromium_org/sync/internal_api/
H A Dsync_rollback_manager.cc35 ModelSafeGroup group = args->workers[i]->GetModelSafeGroup(); local
36 CHECK(workers_.find(group) == workers_.end());
37 workers_[group] = args->workers[i];
77 ModelSafeGroup group = routing_info.find(it->first)->second; local
78 CHECK(workers_.find(group) != workers_.end());
79 workers_[group]->DoWorkAndWaitUntilDone(
/external/chromium_org/testing/gtest/test/
H A Dgtest_xml_output_unittest.py191 year=int(match.group(1)), month=int(match.group(2)),
192 day=int(match.group(3)), hour=int(match.group(4)),
193 minute=int(match.group(5)), second=int(match.group(6)))
/external/chromium_org/third_party/boringssl/src/crypto/ecdh/
H A Decdh.c82 const EC_GROUP *group; local
100 group = EC_KEY_get0_group(priv_key);
102 tmp = EC_POINT_new(group);
108 if (!EC_POINT_mul(group, tmp, NULL, pub_key, priv, ctx)) {
113 if (!EC_POINT_get_affine_coordinates_GFp(group, tmp, x, y, ctx)) {
118 buflen = (EC_GROUP_get_degree(group) + 7) / 8;
/external/chromium_org/third_party/re2/re2/testing/
H A Dexhaustive_tester.cc107 StringPiece* group = new StringPiece[ngroup]; local
112 PrintResult(re, input, RE2::ANCHOR_BOTH, group, ngroup);
114 PrintResult(re, input, RE2::UNANCHORED, group, ngroup);
116 PrintResult(relongest, input, RE2::ANCHOR_BOTH, group, ngroup);
118 PrintResult(relongest, input, RE2::UNANCHORED, group, ngroup);
121 delete[] group;

Completed in 2687 milliseconds

1234567891011>>