Searched defs:cases (Results 101 - 115 of 115) sorted by relevance

12345

/external/llvm/include/llvm/IR/
H A DInstructions.h2559 /// switch on and a default destination. The number of additional cases can
2566 /// switch on and a default destination. The number of additional cases can
2608 assert(Index < SI->getNumCases() && "Index out the number of cases.");
2616 "Index out the number of cases.");
2626 "Index out the number of cases.");
2633 assert(Index+1 <= SI->getNumCases() && "Index out the number of cases.");
2647 "Index out the number of cases.");
2683 assert(Index < SI->getNumCases() && "Index out the number of cases.");
2720 /// getNumCases - return the number of 'cases' in this switch instruction,
2748 /// cases
2749 iterator_range<CaseIt> cases() { function in class:llvm::SwitchInst
2754 iterator_range<ConstCaseIt> cases() const { function in class:llvm::SwitchInst
[all...]
/external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
H A Dglsl_parser.cc2833 /* In all cases, when you get here, the value and location stacks
5448 ast_case_statement_list *cases= new(state) ast_case_statement_list(); local
5449 cases->set_location(yylloc);
5451 cases->cases.push_tail(& (yyvsp[(1) - (1)].case_statement)->link);
5452 (yyval.case_statement_list) = cases;
5462 (yyval.case_statement_list)->cases.push_tail(& (yyvsp[(2) - (2)].case_statement)->link);
/external/chromium_org/v8/src/
H A Dparser.cc1608 // labels can be simply ignored in all other cases; except for
2072 // variable, then *out is set to that variable. In all other cases,
2672 ZoneList<CaseClause*>* cases = new(zone()) ZoneList<CaseClause*>(4, zone()); local
2676 cases->Add(clause, zone());
2680 if (statement) statement->Initialize(tag, cases);
3479 // needs to return 1. To distinguish such cases, we need to detect
3487 // in all normal cases, function declarations are fully hoisted to a
3629 // In addition, we need to distinguish between these cases:
4219 // lookaheads, and break in all cases.
H A Dast.h1158 void Initialize(Expression* tag, ZoneList<CaseClause*>* cases) { argument
1160 cases_ = cases;
1164 ZoneList<CaseClause*>* cases() const { return cases_; } function in class:v8::internal::FINAL
2107 // Match special cases.
/external/deqp/modules/gles3/functional/
H A Des3fShaderTextureFunctionTests.cpp1191 // Skip incompatible cases
1426 static void createCaseGroup (TestCaseGroup* parent, const char* groupName, const char* groupDesc, const TexFuncCaseSpec* cases, int numCases) argument
1433 std::string name = cases[ndx].name;
1434 if (cases[ndx].flags & VERTEX)
1435 group->addChild(new ShaderTextureFunctionCase(parent->getContext(), (name + "_vertex").c_str(), "", cases[ndx].lookupSpec, cases[ndx].texSpec, cases[ndx].evalFunc, true));
1436 if (cases[ndx].flags & FRAGMENT)
1437 group->addChild(new ShaderTextureFunctionCase(parent->getContext(), (name + "_fragment").c_str(), "", cases[ndx].lookupSpec, cases[nd
[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/chromium_org/third_party/icu/source/i18n/
H A Ducol.cpp1314 // It is similar in the end results to the collIterNormalize, but for the cases when we
1791 * Handles both normal and iterative cases.
2231 // be the sentinel. Most of the cases already check for this, but we
4499 inline void doCaseShift(SortKeyLevel &cases, uint32_t &caseShift) { argument
4501 cases.appendByte(UCOL_CASE_BYTE_START);
4565 SortKeyLevel cases; local
4704 /* Usually, we'll have non-zero primary1 & primary2, except in cases of a-z and friends, when primary2 will */
4784 doCaseShift(cases, caseShift);
4791 cases.lastByte() |= 1 << (--caseShift);
4793 cases
[all...]
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dcmsccoll.c1727 log_verbose("Testing %d/%d of possible test cases\n", noCases, charsToTestSize);
1756 log_verbose("Testing locales, number of cases = %i\n", noCases);
2329 /* of the string. Checks a couple of edge cases.*/
4005 static const char* cases[] = { local
4024 for(i = 0; i < sizeof(cases)/sizeof(cases[0]); i++) {
4026 length = u_unescape(cases[i], currCase, 256);
4038 static const char* cases[] = { local
4060 for(j = 1; j < sizeof(cases)/sizeof(cases[
[all...]
/external/deqp/modules/glshared/
H A DglsBuiltinPrecisionTests.cpp5214 const CaseFactories& cases,
5230 for (size_t ndx = 0; ndx < cases.getFactories().size(); ++ndx)
5231 dstGroup.addChild(createFuncGroup(ctx, *cases.getFactories()[ndx]));
5212 addBuiltinPrecisionTests(TestContext& testCtx, RenderContext& renderCtx, const CaseFactories& cases, const vector<ShaderType>& shaderTypes, TestCaseGroup& dstGroup) argument
/external/icu/icu4c/source/test/cintltst/
H A Dcmsccoll.c622 log_verbose("Testing %d/%d of possible test cases\n", noCases, charsToTestSize);
651 log_verbose("Testing locales, number of cases = %i\n", noCases);
1025 /* of the string. Checks a couple of edge cases.*/
2707 static const char* cases[] = { local
2726 for(i = 0; i < sizeof(cases)/sizeof(cases[0]); i++) {
2728 length = u_unescape(cases[i], currCase, 256);
2740 static const char* cases[] = { local
2762 for(j = 1; j < sizeof(cases)/sizeof(cases[
[all...]
/external/proguard/lib/
H A Dproguard.jarMETA-INF/ META-INF/MANIFEST.MF proguard/DataEntryWriterFactory.class DataEntryWriterFactory.java package proguard public ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.jasper_5.5.17.v201004212143.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...
/external/chromium_org/third_party/closure_compiler/compiler/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 387 milliseconds

12345