Home
last modified time | relevance | path

Searched refs:groupName (Results 1 – 25 of 72) sorted by relevance

123

/external/deqp/scripts/khr_util/
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 …\t(int value)\t{ return tcu::Format::Enum<int, 2>(get%(name)sName, value); }" % {"name": groupName}
70 def genEnumStrImpl (groupName, values, definitions): argument
75 yield "const char* get%sName (int value)" % groupName
[all …]
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/jacoco/org.jacoco.report/src/org/jacoco/report/csv/
DCSVGroupHandler.java29 private final String groupName; field in CSVGroupHandler
35 private CSVGroupHandler(final ClassRowWriter writer, final String groupName) { in CSVGroupHandler() argument
37 this.groupName = groupName; in CSVGroupHandler()
56 return groupName == null ? name : (groupName + "/" + name); in appendName()
DClassRowWriter.java74 public void writeRow(final String groupName, final String packageName, in writeRow() argument
76 writer.write(groupName); in writeRow()
/external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/src/
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/deqp/scripts/
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/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
DThreadGroupTest.java67 String groupName, threadName; in testThreadGroup001() local
84 groupName = debuggeeWrapper.vmMirror.getThreadGroupName(groupID); in testThreadGroup001()
90 + "; groupName=" + groupName); in testThreadGroup001()
93 if (!groupName.equals(ThreadGroupDebuggee.TESTED_GROUP)) { in testThreadGroup001()
/external/testng/src/test/java/test/dataprovider/
DTestContextTest.java26 private void verify(String groupName, String passed, int passedCount, int failedCount) { in verify() argument
30 if (groupName != null) { in verify()
31 tng.setGroups(groupName); in verify()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadGroupReference/
DNameTest.java62 String groupName; in testName001() local
74 groupName = debuggeeWrapper.vmMirror.getThreadGroupName(groupID); in testName001()
79 + "; groupName=" + groupName); in testName001()
82 NameDebuggee.CHILD_GROUP, groupName); in testName001()
DParentTest.java63 String groupName; in testParent001() local
86 groupName = debuggeeWrapper.vmMirror.getThreadGroupName(groupID); in testParent001()
89 + "; groupName=" + groupName); in testParent001()
92 NameDebuggee.PARENT_GROUP, groupName); in testParent001()
DChildrenTest.java67 String groupName; in testChildren001() local
123 groupName = debuggeeWrapper.vmMirror.getThreadGroupName(groupID); in testChildren001()
125 logWriter.println("\n==> group: groupID = " + groupID + "; groupName = " + groupName); in testChildren001()
127 assertString("Invalid group name,", NameDebuggee.CHILD_GROUP, groupName); in testChildren001()
/external/autotest/frontend/client/src/autotest/afe/
DRadioChooser.java8 public IRadioButton generateRadioButton(String groupName, String choice); in generateRadioButton() argument
12 private String groupName = getFreshGroupName(); field in RadioChooser
28 IRadioButton button = display.generateRadioButton(groupName, choice); in addChoice()
DRadioChooserDisplay.java17 public IRadioButton generateRadioButton(String groupName, String choice) { in generateRadioButton() argument
18 RadioButtonImpl radioButton = new RadioButtonImpl(groupName, choice); in generateRadioButton()
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
DTimeLineGraph.java148 …public void addItem(String groupName,String name, String description, double value, Color col, boo… in addItem() argument
149 addItem(groupName, name, description, value, col, display, timestamp,false); in addItem()
152 …public void addItem(String groupName,String name, String description, double value, Color col, boo… in addItem() argument
153 addItem(groupName, name,description, value, col, display, in addItem()
157 …public void addItem(String groupName,String name, String description, double value, Color col, boo… in addItem() argument
158 List items = (List) this.fItemGroups.get(groupName); in addItem()
159 if (this.fItemGroups.get(groupName) == null) { in addItem()
161 this.fItemGroups.put(groupName, items); in addItem()
/external/libxml2/xstc/
Dxstc.py155 def __init__(self, isSchema, groupName, name, accepted, file, val, descr): argument
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): argument
344 XSTCTestCase.__init__(self, 1, groupName, name, accepted, file, val, descr)
379 def __init__(self, groupName, name, accepted, file, val, descr): argument
380 XSTCTestCase.__init__(self, 0, groupName, name, accepted, file, val, descr)
489 def getGroup(self, groupName): argument
490 return self.groups[groupName]
/external/deqp/modules/gles2/functional/
Des2fShaderExecuteTest.cpp44 ShaderExecuteTest::ShaderExecuteTest (Context& context, const char* groupName, const char* descript… in ShaderExecuteTest() argument
45 : TestCaseGroup(context, groupName, description) in ShaderExecuteTest()
Des2fShaderExecuteTest.hpp39 ShaderExecuteTest (Context& context, const char* groupName, const char* description);
/external/deqp/scripts/opengl/
Dgen_query_util.py66 …return [(groupName, [(prefix + queryName, querySize) for queryName, querySize in groupQueries]) fo…
/external/opencv3/modules/ts/misc/
Dperf_tests_timing.py83 groupName = next(c for c in cases if c).shortName() variable
84 if groupName != prevGroupName:
93 prevGroupName = groupName
/external/deqp/executor/tools/
DxeBatchResultToJUnit.cpp115 std::string groupName = result.casePath.substr(0, sepPos); in testCaseResultComplete() local
120 << Writer::Attribute("classname", groupName); in testCaseResultComplete()
/external/caliper/caliper/src/main/java/com/google/caliper/util/
DUtil.java106 Map<String, String> map, String groupName) { in subgroupMap() argument
107 return prefixedSubmap(map, groupName + "."); in subgroupMap()
/external/vulkan-validation-layers/
Dreg.py340 groupName = enum.get('extends')
341 if (groupName != None):
347 if (groupName in self.groupdict.keys()):
350 gi = self.groupdict[groupName]
354 groupName, 'for enum', enum.get('name'), 'found.')
Dgenerator.py889 def genGroup(self, groupinfo, groupName): argument
890 OutputGenerator.genGroup(self, groupinfo, groupName)
897 body = "\ntypedef enum " + groupName + " {\n"
929 body += "} " + groupName + ";"
1064 def genGroup(self, groupinfo, groupName): argument
1065 OutputGenerator.genGroup(self, groupinfo, groupName)
1072 s = "typedef enum " + groupName + " {\n"
1103 s += "} " + groupName + ";"
1104 self.writeInclude('enums', groupName, s)
1225 def genGroup(self, groupinfo, groupName): argument
[all …]
/external/autotest/client/tests/bonnie/
Dbonnie++-1.03a-gcc43.patch20 if(groupName)
/external/icu/icu4c/source/i18n/
Drepattrn.cpp609 int32_t RegexPattern::groupNumberFromName(const UnicodeString &groupName, UErrorCode &status) const… in groupNumberFromName() argument
617 int32_t number = uhash_geti(fNamedCaptureMap, &groupName); in groupNumberFromName()
624 int32_t RegexPattern::groupNumberFromName(const char *groupName, int32_t nameLength, UErrorCode &st… in groupNumberFromName() argument
628 UnicodeString name(groupName, nameLength, US_INV); in groupNumberFromName()

123