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

1234567891011>>

/external/antlr/antlr-3.4/gunit/src/main/resources/org/antlr/gunit/
H A DgUnitTestResult.stg28 group gUnitTestResult;
/external/elfutils/src/backends/
H A Darm_corenote.c54 .group = "register" \
85 .name = "fpscr", .group = "register",
/external/icu/icu4c/source/common/
H A Ducnv_lmb.c81 That is, a sometimes-optional 'group' byte, followed by 1 and sometimes 2
129 group byte is for a single byte char set or not we use this define: */
140 each group byte to introduce a fixed-width encoding (to make it faster to
141 count characters), we use a convention of doubling up on the group byte
146 Next, you will notice that the list of group bytes has some gaps.
185 as group '0', as a place to tuck this exceptions list.*/
190 LOTUS added a new group 0x14 to hold Unicode values not otherwise
207 translations even faster,sometimes the optimization group byte can be dropped
209 group byte that is dropped is called the 'optimization group'
742 LMBCSConversionWorker( UConverterDataLMBCS * extraInfo, ulmbcs_byte_t group, ulmbcs_byte_t * pStartLMBCS, UChar * pUniChar, ulmbcs_byte_t * lastConverterIndex, UBool * groups_tried ) argument
918 ulmbcs_byte_t group = FindLMBCSUniRange(uniChar); local
1147 ulmbcs_byte_t group; local
[all...]
/external/iproute2/ip/
H A Diptuntap.c40 fprintf(stderr, " [ mode { tun | tap } ] [ user USER ] [ group GROUP ]\n");
149 } else if (gid && matches(*argv, "group") == 0) {
151 unsigned long group; local
155 if (**argv && ((group = strtol(*argv, &end, 10)), !*end))
156 *gid = group;
158 struct group *gr = getgrnam(*argv);
160 fprintf(stderr, "invalid group \"%s\"\n", *argv);
275 long flags, owner = -1, group = -1; local
291 read_prop(d->d_name, "group", &group);
[all...]
/external/jmonkeyengine/engine/src/tools/jme3tools/converters/model/
H A DModelConverter.java81 for (PrimitiveGroup group : groups)
82 numElements += group.numIndices;
95 PrimitiveGroup group = groups[i];
96 elementLengths[i] = group.numIndices;
98 if (modeStart[group.type] == -1){
99 modeStart[group.type] = i;
102 int[] trimmedIndices = group.getTrimmedIndices();
107 curIndex += group.numIndices;
/external/kernel-headers/original/uapi/linux/
H A Digmp.h34 __be32 group; member in struct:igmphdr
37 /* V3 group record types [grec_type] */
66 __be32 group; member in struct:igmpv3_query
/external/lldb/test/lang/cpp/virtual/
H A DTestVirtual.py61 my_expr, val = match.group(1), match.group(2)
/external/llvm/include/llvm/MC/
H A DMCSectionELF.h57 unsigned entrySize, const MCSymbol *group, unsigned UniqueID,
60 Flags(flags), UniqueID(UniqueID), EntrySize(entrySize), Group(group),
56 MCSectionELF(StringRef Section, unsigned type, unsigned flags, SectionKind K, unsigned entrySize, const MCSymbol *group, unsigned UniqueID, MCSymbol *Begin, const MCSectionELF *Associated) argument
/external/replicaisland/src/com/replica/replicaisland/
H A DLevelTree.java94 if (parser.getName().equals("group")) {
221 final LevelGroup group = levels.get(x);
222 final int levelCount = group.levels.size();
224 final Level level = group.levels.get(y);
241 final LevelGroup group = levels.get(levelRow);
242 final int levelCount = group.levels.size();
244 final Level level = group.levels.get(y);
255 final LevelGroup group = levels.get(row);
256 if (index >=0 && index < group.levels.size()) {
/external/selinux/sepolgen/src/sepolgen/
H A Ddefaults.py40 self.config[mo.group(1)] = mo.group(2)
/external/v8/tools/
H A Ddisasm.py92 line_address = int(match.group(1), 16)
93 split_lines.append((line_address, match.group(2)))
H A Dcheck-name-clashes.py31 self.name = match.group(1)
36 self.name = match.group(1)
37 self.args = [s.strip() for s in match.group(2).split(",")]
40 self.AddLine(match.group(3))
97 first_word = match.group(1)
102 args = [s.strip() for s in match.group(1).split(",")]
145 self.name = match.group(1)
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
H A DJUnitCodeGen.java120 StringTemplateGroup group = StringTemplateGroup.loadGroup("junit");
122 buf.append(genClassHeader(group, className, lexerName, parserName));
123 buf.append(genTestRuleMethods(group));
128 protected String genClassHeader(StringTemplateGroup group, String junitFileName, String lexerName, String parserName) { argument
129 StringTemplate classHeaderST = group.getInstanceOf("classHeader");
178 protected String genTestRuleMethods(StringTemplateGroup group) { argument
181 genTreeMethods(group, buf);
184 genParserMethods(group, buf);
189 private void genParserMethods(StringTemplateGroup group, StringBuffer buf) { argument
197 testRuleMethodST = group
239 genTreeMethods(StringTemplateGroup group, StringBuffer buf) argument
[all...]
/external/deqp/modules/gles3/functional/
H A Des3fShaderSwitchTests.cpp156 static void makeSwitchCases (TestCaseGroup* group, const char* name, const char* desc, const LineStream& switchBody) argument
163 group->addChild(makeSwitchCase(group->getContext(), (string(name) + "_" + switchTypeNames[type] + "_vertex").c_str(), desc, (SwitchType)type, true, switchBody));
164 group->addChild(makeSwitchCase(group->getContext(), (string(name) + "_" + switchTypeNames[type] + "_fragment").c_str(), desc, (SwitchType)type, false, switchBody));
/external/guava/guava-testlib/src/com/google/common/testing/
H A DRelationshipTester.java67 public RelationshipTester<T> addRelatedGroup(Iterable<? extends T> group) { argument
68 groups.add(ImmutableList.copyOf(group));
74 ImmutableList<T> group = groups.get(groupNumber);
75 for (int itemNumber = 0; itemNumber < group.size(); itemNumber++) {
76 // check related items in same group
77 for (int relatedItemNumber = 0; relatedItemNumber < group.size(); relatedItemNumber++) {
149 .append(" [group ")
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Dtemplate.rb88 autoload :GroupFile, 'antlr3/template/group-file'
91 autoload :Lexer, 'antlr3/template/group-file'
92 autoload :Parser, 'antlr3/template/group-file'
98 return( parser.group( namespace ) )
105 end or raise( LoadError, "no such template group file to load %s" % group_file )
112 return( parser.group( namespace ) )
158 "undefined template `%s' for template group %p" % [ old_name, self ]
217 attr_accessor :group, :name, :parameters
218 protected :group=, :name=
223 new.group
[all...]
/external/e2fsprogs/lib/ext2fs/
H A Dimager.c63 unsigned int group, left, c, d; local
74 for (group = 0; group < fs->group_desc_count; group++) {
75 blk = ext2fs_inode_table_loc(fs, (unsigned)group);
142 unsigned int group, c, left; local
152 for (group = 0; group < fs->group_desc_count; group++) {
153 blk = ext2fs_inode_table_loc(fs, (unsigned)group);
[all...]
/external/e2fsprogs/resize/
H A Dmain.c103 unsigned int group; local
111 for (group = 0; group < fs->group_desc_count; group++) {
112 has_sb = ext2fs_bg_has_super(fs, group);
113 if (group == 0 || has_sb != prev_has_sb)
115 b_stride = ext2fs_block_bitmap_loc(fs, group) -
116 ext2fs_block_bitmap_loc(fs, group - 1) -
118 i_stride = ext2fs_inode_bitmap_loc(fs, group) -
119 ext2fs_inode_bitmap_loc(fs, group
[all...]
/external/skia/bench/
H A Dbench_util.py133 current_config = config.group(1)
140 times = config.group(2)
142 current_time_type = new_time.group(1)
144 new_time.group(2).strip().split(',')]
208 for settingMatch in PER_SETTING_RE_COMPILED.finditer(settingsMatch.group(1)):
209 if (settingMatch.group(2)):
210 settings[settingMatch.group(1)] = settingMatch.group(2)
212 settings[settingMatch.group(1)] = True
217 current_bench = new_bench.group(
[all...]
/external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
H A DCharsetLMBCS.java60 * That is, a sometimes-optional 'group' byte, followed by 1 and sometimes 2
100 * group byte is for a single byte char set or not we use this definition:
110 * each group byte to introduce a fixed-width encoding (to make it faster to
111 * count characters), we use a convention of doubling up on the group byte
116 * Next, you will notice that the list of group bytes has some gaps.
153 * as group '0', as a place to tuck this exceptions list.
158 * LOTUS added a new group 0x14 to hold Unicode values not otherwise
178 * translations even faster, sometimes the optimization group byte can be dropped
180 * group byte that is dropped is called the 'optimization group
852 LMBCSConversionWorker(short group, byte[] LMBCS, char pUniChar, short[] lastConverterIndex, boolean[] groups_tried) argument
[all...]
/external/compiler-rt/lib/sanitizer_common/scripts/
H A Dcpplint.py376 category = matched.group(1)
1633 new_namespace = _NamespaceInfo(namespace_decl_match.group(1), linenum)
1636 line = namespace_decl_match.group(2)
1669 class_decl_match.group(4), class_decl_match.group(2),
1671 line = class_decl_match.group(5)
1682 self.stack[-1].access = access_match.group(1)
1691 token = matched.group(1)
1718 line = matched.group(2)
1850 args.group(
[all...]
/external/deqp/modules/gles31/functional/
H A Des31fShaderMultisampleInterpolationTests.cpp1693 tcu::TestCaseGroup* const group = new tcu::TestCaseGroup(m_testCtx, "static_sample_number", "Test interpolateAtSample sample number");
1694 interpolateAtSampleGroup->addChild(group);
1697 group->addChild(new InterpolateAtSampleRenderCase(m_context, targets[targetNdx].name, targets[targetNdx].desc, targets[targetNdx].numSamples, targets[targetNdx].target, InterpolateAtSampleRenderCase::INDEXING_STATIC));
1702 tcu::TestCaseGroup* const group = new tcu::TestCaseGroup(m_testCtx, "dynamic_sample_number", "Test interpolateAtSample sample number");
1703 interpolateAtSampleGroup->addChild(group);
1706 group->addChild(new InterpolateAtSampleRenderCase(m_context, targets[targetNdx].name, targets[targetNdx].desc, targets[targetNdx].numSamples, targets[targetNdx].target, InterpolateAtSampleRenderCase::INDEXING_DYNAMIC));
1711 tcu::TestCaseGroup* const group = new tcu::TestCaseGroup(m_testCtx, "non_multisample_buffer", "Test interpolateAtSample with non-multisample buffers");
1712 interpolateAtSampleGroup->addChild(group);
1716 group->addChild(new SingleSampleInterpolateAtSampleCase(m_context, std::string("sample_0_").append(targets[targetNdx].name).c_str(), targets[targetNdx].desc, targets[targetNdx].numSamples, targets[targetNdx].target, SingleSampleInterpolateAtSampleCase::SAMPLE_0));
1720 group
[all...]
/external/boringssl/src/crypto/evp/
H A Dp_ec.c77 /* Key and paramgen group */
182 const EC_GROUP *group; local
183 group = EC_KEY_get0_group(eckey);
184 *keylen = (EC_GROUP_get_degree(group) + 7) / 8;
204 EC_GROUP *group; local
208 group = EC_GROUP_new_by_curve_name(p1);
209 if (group == NULL) {
214 dctx->gen_group = group;
/external/clang/utils/ABITest/
H A DABITestGen.py390 group = OptionGroup(parser, "Type Enumeration Options")
392 group.add_option("", "--no-char", dest="useChar",
395 group.add_option("", "--no-short", dest="useShort",
398 group.add_option("", "--no-int", dest="useInt",
401 group.add_option("", "--no-long", dest="useLong",
404 group.add_option("", "--no-long-long", dest="useLongLong",
407 group.add_option("", "--no-unsigned", dest="useUnsigned",
412 group.add_option("", "--no-bool", dest="useBool",
415 group.add_option("", "--no-float", dest="useFloat",
418 group
[all...]
/external/llvm/utils/
H A Dupdate_llc_test_checks.py83 run_lines = [m.group(1)
104 check_prefixes = [m.group(1)
126 f = m.group('f')
127 f_asm = scrub_asm(m.group('body'))
156 if not m or m.group(1) not in prefix_set:
185 if m and m.group(1) in prefix_set:
199 name = m.group(1)

Completed in 2544 milliseconds

1234567891011>>