Searched refs:cases (Results 51 - 75 of 161) sorted by relevance

1234567

/external/deqp/modules/gles31/stress/
H A Des31sTessellationGeometryInteractionTests.cpp579 } cases[] = local
627 for (int ndx = 0; ndx < DE_LENGTH_OF_ARRAY(cases); ++ndx)
628 multilimitGroup->addChild(new GridRenderCase(m_context, cases[ndx].name, cases[ndx].desc, cases[ndx].flags));
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
H A Dll-star.rb28 * long in theory, but is <=10 in most cases. Works great.
/external/deqp/modules/gles3/functional/
H A Des3fTextureShadowTests.cpp266 // Compute cases.
281 } cases[] = local
294 for (int caseNdx = 0; caseNdx < DE_LENGTH_OF_ARRAY(cases); caseNdx++)
296 const int texNdx = de::clamp(cases[caseNdx].texNdx, 0, (int)m_textures.size()-1);
297 const float ref = cases[caseNdx].ref;
298 const float lodX = cases[caseNdx].lodX;
299 const float lodY = cases[caseNdx].lodY;
300 const float oX = cases[caseNdx].oX;
301 const float oY = cases[caseNdx].oY;
539 // Compute cases
835 } cases[] = local
[all...]
H A Des3fTextureSpecificationTests.cpp2286 // Pixel buffer object cases.
3493 // 2D cases.
3503 // Cubemap cases.
3555 // glTexImage2D() unpack parameter cases.
3557 tcu::TestCaseGroup* paramGroup = new tcu::TestCaseGroup(m_testCtx, "teximage2d_unpack_params", "glTexImage2D() pixel transfer mode cases");
3570 } cases[] = local
3587 for (int ndx = 0; ndx < DE_LENGTH_OF_ARRAY(cases); ndx++)
3588 paramGroup->addChild(new TexImage2DParamsCase(m_context, cases[ndx].name, "",
3589 cases[ndx].format,
3590 cases[nd
3788 } cases[] = local
3996 } cases[] = local
4170 } cases[] = local
[all...]
H A Des3fUniformApiTests.cpp2606 // Generate sets of UniformCollections that are used by several cases.
2626 vector<UniformCollectionCase> cases; member in struct:deqp::UniformCollectionGroup
2644 defaultUniformCollections[UNIFORMCOLLECTIONS_BASIC].cases.push_back(UniformCollectionCase(typeName, UniformCollection::basic(dataType)));
2650 defaultUniformCollections[UNIFORMCOLLECTIONS_BASIC_ARRAY].cases.push_back(UniformCollectionCase(typeName, UniformCollection::basicArray(dataType)));
2664 defaultUniformCollections[UNIFORMCOLLECTIONS_BASIC_STRUCT].cases.push_back (UniformCollectionCase(name.c_str(), UniformCollection::basicStruct(dataType, secondDataType, false)));
2665 defaultUniformCollections[UNIFORMCOLLECTIONS_ARRAY_IN_STRUCT].cases.push_back (UniformCollectionCase(name.c_str(), UniformCollection::basicStruct(dataType, secondDataType, true)));
2666 defaultUniformCollections[UNIFORMCOLLECTIONS_STRUCT_IN_ARRAY].cases.push_back (UniformCollectionCase(name.c_str(), UniformCollection::structInArray(dataType, secondDataType, false)));
2667 defaultUniformCollections[UNIFORMCOLLECTIONS_NESTED_STRUCTS_ARRAYS].cases.push_back (UniformCollectionCase(name.c_str(), UniformCollection::nestedArraysStructs(dataType, secondDataType)));
2670 defaultUniformCollections[UNIFORMCOLLECTIONS_MULTIPLE_BASIC].cases.push_back (UniformCollectionCase(DE_NULL, UniformCollection::multipleBasic()));
2671 defaultUniformCollections[UNIFORMCOLLECTIONS_MULTIPLE_BASIC_ARRAY].cases
[all...]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
H A DUCharacterTest.java39 * Mostly following the test cases for ICU
1229 // Test related edge cases.
2971 String[] cases = {"","a","A","z","Z","Dummy","DUMMY","dummy","a z","A Z",
2973 for(int i=0; i<cases.length; i++){
2975 UCharacter.toLowerCase((ULocale) null, cases[i]);
2978 "exception for input of null and string: " + cases[i]);
3129 int[] cases = {UProperty.BINARY_LIMIT, UProperty.BINARY_LIMIT+1,
3131 for(int i=0; i<cases.length; i++){
3132 if(UCharacter.getIntPropertyMaxValue(cases[i]) != -1){
3134 "but got " + UCharacter.getIntPropertyMaxValue(cases[
[all...]
/external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
H A DCollationAPITest.java281 String testString1 = "XFILE What subset of all possible test cases has the highest probability of detecting the most errors?";
282 String testString2 = "Xf_ile What subset of all possible test cases has the lowest probability of detecting the least errors?";
1391 int[] cases = { -1, 4, 5 };
1392 for (int i = 0; i < cases.length; i++) {
1396 c.setStrength(cases[i]);
1398 + "an exception for an invalid newStrength value of " + cases[i]);
1409 int[] cases = { 0, 1, 14, 15, 18, 19 };
1410 for (int i = 0; i < cases.length; i++) {
1414 c.setDecomposition(cases[i]);
1416 + "an exception for an invalid decomposition value of " + cases[
[all...]
/external/clang/test/Coverage/
H A Dc-language-features.inc107 // FIXME: Add _Complex and aggregate cases.
/external/skia/tools/
H A Ddm_flags.py183 cases = [
198 for case in cases:
206 print 'Lines not covered by test cases: ', filtered
/external/proguard/src/proguard/optimize/evaluation/
H A DEvaluationSimplifier.java1000 int[] cases = lookupSwitchInstruction.cases;
1010 int caseIndex = Arrays.binarySearch(cases, switchCase);
1182 int[] cases = lookUpSwitchInstruction.cases;
1193 newCases[newIndex++] = cases[index];
1198 lookUpSwitchInstruction.cases = newCases;
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
H A DCalendarTest.java73 public void doTestCases(TestCase[] cases, Calendar cal) argument
95 // Now iterate through the test cases and see what happens
96 for (int i = 0; i < cases.length; i++)
99 TestCase test = cases[i];
134 * Process test cases for <code>add</code> and <code>roll</code> methods.
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/debugging/
H A Dprofile-mode.rb23 * long in theory, but is <=10 in most cases. Works great.
/external/deqp/modules/gles31/functional/
H A Des31fProgramUniformTests.cpp1874 // Generate sets of UniformCollections that are used by several cases.
1894 vector<UniformCollectionCase> cases; member in struct:deqp::gles31::Functional::UniformCollectionGroup
1912 defaultUniformCollections[UNIFORMCOLLECTIONS_BASIC].cases.push_back(UniformCollectionCase(typeName, UniformCollection::basic(dataType)));
1918 defaultUniformCollections[UNIFORMCOLLECTIONS_BASIC_ARRAY].cases.push_back(UniformCollectionCase(typeName, UniformCollection::basicArray(dataType)));
1932 defaultUniformCollections[UNIFORMCOLLECTIONS_BASIC_STRUCT].cases.push_back (UniformCollectionCase(name.c_str(), UniformCollection::basicStruct(dataType, secondDataType, false)));
1933 defaultUniformCollections[UNIFORMCOLLECTIONS_ARRAY_IN_STRUCT].cases.push_back (UniformCollectionCase(name.c_str(), UniformCollection::basicStruct(dataType, secondDataType, true)));
1934 defaultUniformCollections[UNIFORMCOLLECTIONS_STRUCT_IN_ARRAY].cases.push_back (UniformCollectionCase(name.c_str(), UniformCollection::structInArray(dataType, secondDataType, false)));
1935 defaultUniformCollections[UNIFORMCOLLECTIONS_NESTED_STRUCTS_ARRAYS].cases.push_back (UniformCollectionCase(name.c_str(), UniformCollection::nestedArraysStructs(dataType, secondDataType)));
1938 defaultUniformCollections[UNIFORMCOLLECTIONS_MULTIPLE_BASIC].cases.push_back (UniformCollectionCase(DE_NULL, UniformCollection::multipleBasic()));
1939 defaultUniformCollections[UNIFORMCOLLECTIONS_MULTIPLE_BASIC_ARRAY].cases
[all...]
/external/icu/icu4c/source/test/cintltst/
H A Dcnormtst.c170 const char* const cases[][3], int32_t lengthOfCases) {
179 source=CharsToUChars(cases[x][0]);
196 assertEqual(result, cases[x][expIndex], x);
203 assertEqual(result, cases[x][expIndex], x);
532 * Here we pick some specific cases and test the C API.
552 /* normal case with length>=0 (length -1 used for special cases below) */
579 /* specific cases */
740 /* test cases to improve test code coverage */
1439 } cases[]={ local
1441 * special cases fo
169 TestNormCases(UNormalizationMode mode, const char* const cases[][3], int32_t lengthOfCases) argument
[all...]
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
H A DAntlr.Runtime.Collections.Tests.pas131 // Register any test cases with the test runner
/external/deqp/executor/tools/
H A DxeTestLogCompare.cpp218 static void computeCaseList (vector<string>& cases, const vector<ShortBatchResult>& batchResults) argument
220 // \todo [2012-07-10 pyry] Do proper case ordering (eg. handle missing cases nicely).
229 cases.push_back(caseIter->casePath);
310 // Compare cases.
/external/skia/tools/lua/
H A Dpaths.lua13 -- but these cases are rare.
/external/v8/src/
H A Dprettyprinter.cc179 ZoneList<CaseClause*>* cases = node->cases(); local
180 for (int i = 0; i < cases->length(); i++)
181 Visit(cases->at(i));
899 for (int i = 0; i < node->cases()->length(); i++) {
900 Visit(node->cases()->at(i));
/external/deqp/modules/gles2/functional/
H A Des2fUniformApiTests.cpp2095 // Generate sets of UniformCollections that are used by several cases.
2115 vector<UniformCollectionCase> cases; member in struct:deqp::UniformCollectionGroup
2133 defaultUniformCollections[UNIFORMCOLLECTIONS_BASIC].cases.push_back(UniformCollectionCase(typeName, UniformCollection::basic(dataType)));
2139 defaultUniformCollections[UNIFORMCOLLECTIONS_BASIC_ARRAY].cases.push_back(UniformCollectionCase(typeName, UniformCollection::basicArray(dataType)));
2153 defaultUniformCollections[UNIFORMCOLLECTIONS_BASIC_STRUCT].cases.push_back (UniformCollectionCase(name.c_str(), UniformCollection::basicStruct(dataType, secondDataType, false)));
2154 defaultUniformCollections[UNIFORMCOLLECTIONS_ARRAY_IN_STRUCT].cases.push_back (UniformCollectionCase(name.c_str(), UniformCollection::basicStruct(dataType, secondDataType, true)));
2155 defaultUniformCollections[UNIFORMCOLLECTIONS_STRUCT_IN_ARRAY].cases.push_back (UniformCollectionCase(name.c_str(), UniformCollection::structInArray(dataType, secondDataType, false)));
2156 defaultUniformCollections[UNIFORMCOLLECTIONS_NESTED_STRUCTS_ARRAYS].cases.push_back (UniformCollectionCase(name.c_str(), UniformCollection::nestedArraysStructs(dataType, secondDataType)));
2159 defaultUniformCollections[UNIFORMCOLLECTIONS_MULTIPLE_BASIC].cases.push_back (UniformCollectionCase(DE_NULL, UniformCollection::multipleBasic()));
2160 defaultUniformCollections[UNIFORMCOLLECTIONS_MULTIPLE_BASIC_ARRAY].cases
[all...]
H A Des2fTextureFilteringTests.cpp206 // Compute cases.
215 } cases[] = local
226 for (int caseNdx = 0; caseNdx < DE_LENGTH_OF_ARRAY(cases); caseNdx++)
228 const int texNdx = de::clamp(cases[caseNdx].texNdx, 0, (int)m_textures.size()-1);
229 const float lodX = cases[caseNdx].lodX;
230 const float lodY = cases[caseNdx].lodY;
231 const float oX = cases[caseNdx].oX;
232 const float oY = cases[caseNdx].oY;
481 // Compute cases
699 // 2D cases
[all...]
H A Des2fShaderTextureFunctionTests.cpp565 static void createCaseGroup (TestCaseGroup* parent, const char* groupName, const char* groupDesc, const TexFuncCaseSpec* cases, int numCases, bool isVertex) argument
571 group->addChild(new ShaderTextureFunctionCase(parent->getContext(), cases[ndx].name, "", cases[ndx].lookupSpec, cases[ndx].texSpec, cases[ndx].evalFunc, isVertex));
590 // Vertex cases
609 // Fragment cases
624 // Negative cases.
/external/icu/icu4c/source/test/intltest/
H A Dtstnorm.cpp388 * Run a few specific cases that are failing for Verisign.
777 cases[][4]={ local
791 /* ### TODO: add more interesting cases */
806 for(i=0; i<(int32_t)(sizeof(cases)/sizeof(cases[0])); ++i) {
807 switch(*cases[i][0]) {
815 left=UnicodeString(cases[i][1], "").unescape();
816 right=UnicodeString(cases[i][2], "").unescape();
817 expect=UnicodeString(cases[i][3], "").unescape();
824 dataerrln("error in Normalizer::concatenate(), cases[] fail
[all...]
/external/deqp/scripts/
H A Dbuild_android_mustpass.py115 cases = []
119 cases.append(line[6:].strip())
120 return cases
167 errors.append((pattern, "Pattern didn't match any cases"))
273 die("Mixed groups and cases in %s" % testGroup.name)
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DRopTranslator.java617 IntList cases = insn.getCases();
619 int casesSz = cases.size();
624 * Check the assumptions that the number of cases is one
645 new SwitchData(pos, lastAddress, cases, switchTargets);
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
H A DBasicTest.java1536 Object[][]cases=new Object[][]{
1550 /* ### TODO: add more interesting cases */
1564 for(i=0; i<cases.length; ++i) {
1565 mode = (Normalizer.Mode)cases[i][0];
1567 left=(String)cases[i][1];
1568 right=(String)cases[i][2];
1569 expect=(String)cases[i][3];
1573 errln("error in Normalizer.concatenate(), cases[] failed"
1581 errln("error in Normalizer.concatenate(), cases[] failed"
1771 // some cases fro
[all...]

Completed in 1249 milliseconds

1234567