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

12

/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)
H A Des2fShaderLoopTests.cpp1287 string groupName = string(loopTypeName) + "_" + string(loopCountName) + "_iterations"; local
1289 TestCaseGroup* group = new TestCaseGroup(m_context, groupName.c_str(), groupDesc.c_str());
/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/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.hpp179 bool checkTestGroupName (const char* groupName) const;
H A DtcuCommandLine.cpp872 bool CommandLine::checkTestGroupName (const char* groupName) const
875 return m_casePaths->matches(groupName, true);
877 return groupName[0] == 0 || tcu::checkTestGroupName(m_caseTree, groupName);
/external/deqp/executor/tools/
H A DxeBatchResultToJUnit.cpp115 std::string groupName = result.casePath.substr(0, sepPos); local
120 << Writer::Attribute("classname", 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/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);
H A Duregex.cpp635 const UChar *groupName,
642 int32_t result = regexp->fPat->groupNumberFromName(UnicodeString(groupName, nameLength), *status);
648 const char *groupName,
655 return regexp->fPat->groupNumberFromName(groupName, nameLength, *status);
1494 UnicodeString groupName; local
1505 groupName.append(c32);
1507 groupNum = uhash_geti(regexp->fPat->fNamedCaptureMap, &groupName);
634 uregex_groupNumberFromName(URegularExpression *regexp2, const UChar *groupName, int32_t nameLength, UErrorCode *status) argument
647 uregex_groupNumberFromCName(URegularExpression *regexp2, const char *groupName, int32_t nameLength, UErrorCode *status) argument
/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);
H A Des31fShaderAtomicOpTests.cpp1092 static tcu::TestCaseGroup* createAtomicOpGroup (Context& context, AtomicOperandType operandType, const char* groupName)
1094 tcu::TestCaseGroup *const group = new tcu::TestCaseGroup(context.getTestContext(), groupName, (string("Atomic ") + groupName).c_str());
/external/icu/icu4c/source/i18n/unicode/
H A Dregex.h450 * @param groupName The capture group name.
455 virtual int32_t groupNumberFromName(const UnicodeString &groupName, UErrorCode &status) const;
466 * @param groupName The capture group name,
474 virtual int32_t groupNumberFromName(const char *groupName, int32_t nameLength, UErrorCode &status) const;
H A Duregex.h620 * @param groupName The capture group name.
629 const UChar *groupName,
643 * @param groupName The capture group name,
653 const char *groupName,
/external/deqp/modules/gles3/functional/
H A Des3fShaderLoopTests.cpp1163 string groupName = string(loopTypeName) + "_" + string(loopCountName) + "_iterations"; local
1165 TestCaseGroup* group = new TestCaseGroup(m_context, groupName.c_str(), groupDesc.c_str());
/external/deqp/modules/gles2/performance/
H A Des2pShaderOperatorTests.cpp2040 const char* groupName;
2133 const char* const groupName = functionCaseGroups[funcNdx].groupName;
2143 if (funcNdx == 0 || parentGroup != functionCaseGroups[funcNdx-1].parentGroup || string(groupName) != functionCaseGroups[funcNdx-1].groupName)
2145 tcu::TestCaseGroup* const funcGroup = new tcu::TestCaseGroup(m_testCtx, groupName, "");
/external/deqp/modules/gles3/performance/
H A Des3pShaderOperatorTests.cpp2059 const char* groupName;
2176 const char* const groupName = functionCaseGroups[funcNdx].groupName;
2186 if (funcNdx == 0 || parentGroup != functionCaseGroups[funcNdx-1].parentGroup || string(groupName) != functionCaseGroups[funcNdx-1].groupName)
2188 tcu::TestCaseGroup* const funcGroup = new tcu::TestCaseGroup(m_testCtx, groupName, "");

Completed in 2174 milliseconds

12