Searched refs:groupName (Results 1 - 25 of 70) sorted by relevance

123

/external/deqp/scripts/khr_util/
H A Dgen_str_util.py46 for groupName, values in enumGroups:
48 yield "const char*\tget%sName\t(int value);" % groupName
50 print "Warning: Empty value set for %s, skipping" % groupName
53 for groupName, values in bitfieldGroups:
55 yield "tcu::Format::Bitfield<16>\tget%sStr\t(int value);" % groupName
57 print "Warning: Empty value set for %s, skipping" % groupName
60 for groupName, values in enumGroups:
62 yield "inline tcu::Format::Enum<int, 2>\tget%(name)sStr\t(int value)\t{ return tcu::Format::Enum<int, 2>(get%(name)sName, value); }" % {"name": groupName}
70 def genEnumStrImpl (groupName, values, definitions):
75 yield "const char* get%sName (int value)" % groupName
[all...]
H A Dregistry.py185 groupName = eEnum.get('group')
186 if groupName is not None:
187 self.groups[groupName] = eEnum
312 groupName = elem.get('group')
313 if groupName is None:
315 return groups[groupName]
/external/deqp/modules/gles2/functional/
H A Des2fShaderExecuteTest.hpp39 ShaderExecuteTest (Context& context, const char* groupName, const char* description);
H A Des2fShaderExecuteTest.cpp44 ShaderExecuteTest::ShaderExecuteTest (Context& context, const char* groupName, const char* description) argument
45 : TestCaseGroup(context, groupName, description)
/external/jacoco/org.jacoco.report/src/org/jacoco/report/csv/
H A DCSVGroupHandler.java29 private final String groupName; field in class:CSVGroupHandler
35 private CSVGroupHandler(final ClassRowWriter writer, final String groupName) { argument
37 this.groupName = groupName;
56 return groupName == null ? name : (groupName + "/" + name);
H A DClassRowWriter.java65 * @param groupName
74 public void writeRow(final String groupName, final String packageName, argument
76 writer.write(groupName);
/external/testng/src/test/java/test/dataprovider/
H A DTestContextTest.java26 private void verify(String groupName, String passed, int passedCount, int failedCount) { argument
30 if (groupName != null) {
31 tng.setGroups(groupName);
/external/autotest/frontend/client/src/autotest/afe/
H A DRadioChooserDisplay.java17 public IRadioButton generateRadioButton(String groupName, String choice) { argument
18 RadioButtonImpl radioButton = new RadioButtonImpl(groupName, choice);
H A DRadioChooser.java8 public IRadioButton generateRadioButton(String groupName, String choice); argument
12 private String groupName = getFreshGroupName(); field in class:RadioChooser
28 IRadioButton button = display.generateRadioButton(groupName, choice);
/external/deqp/scripts/opengl/
H A Dgen_query_util.py66 return [(groupName, [(prefix + queryName, querySize) for queryName, querySize in groupQueries]) for groupName, groupQueries in groups]
/external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/src/
H A Deffect.js59 for (var groupName in propertySpecificKeyframeGroups) {
60 var group = propertySpecificKeyframeGroups[groupName];
75 for (var groupName in propertySpecificKeyframeGroups) {
76 var group = propertySpecificKeyframeGroups[groupName];
93 property: groupName,
94 interpolation: scope.propertyInterpolation(groupName, startValue, endValue)
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
H A DThreadGroupTest.java67 String groupName, threadName;
84 groupName = debuggeeWrapper.vmMirror.getThreadGroupName(groupID);
90 + "; groupName=" + groupName);
93 if (!groupName.equals(ThreadGroupDebuggee.TESTED_GROUP)) {
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadGroupReference/
H A DNameTest.java62 String groupName;
74 groupName = debuggeeWrapper.vmMirror.getThreadGroupName(groupID);
79 + "; groupName=" + groupName);
82 NameDebuggee.CHILD_GROUP, groupName);
H A DParentTest.java63 String groupName;
86 groupName = debuggeeWrapper.vmMirror.getThreadGroupName(groupID);
89 + "; groupName=" + groupName);
92 NameDebuggee.PARENT_GROUP, groupName);
H A DChildrenTest.java67 String groupName;
123 groupName = debuggeeWrapper.vmMirror.getThreadGroupName(groupID);
125 logWriter.println("\n==> group: groupID = " + groupID + "; groupName = " + groupName);
127 assertString("Invalid group name,", NameDebuggee.CHILD_GROUP, groupName);
/external/deqp/scripts/
H A Dtestset.py129 for groupName in groupNames:
130 group = Group(groupName)
133 prefix = groupName + "."
150 groupName = string.join(parts[:-1], ".")
152 if not groupName in groupMap:
153 group = Group(groupName)
155 groupMap[groupName] = group
157 group = groupMap[groupName]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
H A DTimeLineGraph.java148 public void addItem(String groupName,String name, String description, double value, Color col, boolean display, long timestamp) { argument
149 addItem(groupName, name, description, value, col, display, timestamp,false);
152 public void addItem(String groupName,String name, String description, double value, Color col, boolean display, long timestamp,boolean isSpecial) { argument
153 addItem(groupName, name,description, value, col, display,
157 public void addItem(String groupName,String name, String description, double value, Color col, boolean display, long timestamp,boolean isSpecial,boolean drawBaseline) { argument
158 List items = (List) this.fItemGroups.get(groupName);
159 if (this.fItemGroups.get(groupName) == null) {
161 this.fItemGroups.put(groupName, items);
/external/deqp/framework/common/
H A DtcuCommandLine.hpp189 bool checkTestGroupName (const char* groupName) const;
/external/caliper/caliper/src/main/java/com/google/caliper/util/
H A DUtil.java98 * Returns a map containing only those entries whose key starts with {@code <groupName>.}.
100 * <p>The keys in the returned map have had their {@code <groupName>.} prefix removed.
103 * {@code groupName} of {@code group} it would produce a map containing {@code key1 -> value1}.
106 Map<String, String> map, String groupName) {
107 return prefixedSubmap(map, groupName + ".");
105 subgroupMap( Map<String, String> map, String groupName) argument
/external/deqp/executor/tools/
H A DxeBatchResultToJUnit.cpp115 std::string groupName = result.casePath.substr(0, sepPos); local
120 << Writer::Attribute("classname", groupName);
/external/opencv3/modules/ts/misc/
H A Dperf_tests_timing.py83 groupName = next(c for c in cases if c).shortName() variable
84 if groupName != prevGroupName:
93 prevGroupName = groupName
/external/libxml2/xstc/
H A Dxstc.py154 # <!-- groupName, Name, Accepted, File, Val, Descr
155 def __init__(self, isSchema, groupName, name, accepted, file, val, descr):
162 self.groupName = groupName
195 self.group = runner.getGroup(self.groupName)
213 tokens = self.groupName.split("-")
343 def __init__(self, groupName, name, accepted, file, val, descr):
344 XSTCTestCase.__init__(self, 1, groupName, name, accepted, file, val, descr)
379 def __init__(self, groupName, name, accepted, file, val, descr):
380 XSTCTestCase.__init__(self, 0, groupName, nam
[all...]
/external/vulkan-validation-layers/
H A Dreg.py340 groupName = enum.get('extends')
341 if (groupName != None):
346 # Look up the GroupInfo with matching groupName
347 if (groupName in self.groupdict.keys()):
349 # groupName, 'found, adding element...')
350 gi = self.groupdict[groupName]
354 groupName, 'for enum', enum.get('name'), 'found.')
/external/icu/icu4c/source/i18n/
H A Drepattrn.cpp609 int32_t RegexPattern::groupNumberFromName(const UnicodeString &groupName, UErrorCode &status) const { argument
617 int32_t number = uhash_geti(fNamedCaptureMap, &groupName);
624 int32_t RegexPattern::groupNumberFromName(const char *groupName, int32_t nameLength, UErrorCode &status) const { argument
628 UnicodeString name(groupName, nameLength, US_INV);
/external/deqp/modules/gles31/functional/
H A Des31fUniformBlockTests.cpp47 void createRandomCaseGroup (tcu::TestCaseGroup* parentGroup, Context& context, const char* groupName, const char* description, UniformBlockCase::BufferMode bufferMode, deUint32 features, int numCases, deUint32 baseSeed) argument
49 tcu::TestCaseGroup* group = new tcu::TestCaseGroup(context.getTestContext(), groupName, description);

Completed in 714 milliseconds

123