/external/llvm/lib/Option/ |
ArgList.cpp | 28 const Option &O = (*Current)->getOption(); 45 [=](Arg *A) { return A->getOption().matches(Id); }), 52 if ((*it)->getOption().matches(Id)) 60 if ((*it)->getOption().matches(Id)) { 72 if ((*it)->getOption().matches(Id0) || 73 (*it)->getOption().matches(Id1)) { 87 if ((*it)->getOption().matches(Id0) || 88 (*it)->getOption().matches(Id1) || 89 (*it)->getOption().matches(Id2)) { 102 if ((*it)->getOption().matches(Id0) | [all...] |
OptTable.cpp | 128 getOption(i).dump(); 129 getOption(i + 1).dump(); 160 const Option OptTable::getOption(OptSpecifier Opt) const { 204 return new Arg(getOption(TheInputOptionID), Str, Index++, Str); 249 return new Arg(getOption(TheInputOptionID), Str, Index++, Str); 251 return new Arg(getOption(TheUnknownOptionID), Str, Index++, Str); 294 const Option O = Opts.getOption(Id);
|
Arg.cpp | 81 if (!getOption().hasNoOptAsInput()) { 91 switch (getOption().getRenderStyle()) {
|
/dalvik/dx/tests/083-ssa-phi-placement/ |
Blort.java | 49 public Object getOption(int optID) throws RuntimeException
|
/external/deqp/executor/tools/ |
xeCommandLineExecutor.cpp | 141 cmdLine.serverBin = opts.getOption<opt::StartServer>(); 142 cmdLine.host = opts.getOption<opt::Host>(); 143 cmdLine.port = opts.getOption<opt::Port>(); 144 cmdLine.caseListDir = opts.getOption<opt::CaseListDir>(); 145 cmdLine.testset = opts.getOption<opt::TestSet>(); 146 cmdLine.exclude = opts.getOption<opt::ExcludeSet>(); 147 cmdLine.inFile = opts.getOption<opt::ContinueFile>(); 148 cmdLine.outFile = opts.getOption<opt::TestLogFile>(); 149 cmdLine.infoFile = opts.getOption<opt::InfoLogFile>(); 150 cmdLine.summary = opts.getOption<opt::Summary>() [all...] |
xeTestLogCompare.cpp | 384 cmdLine.outFormat = opts.getOption<opt::OutFormat>(); 385 cmdLine.outMode = opts.getOption<opt::OutMode>(); 386 cmdLine.outValue = opts.getOption<opt::OutValue>();
|
/external/deqp/framework/common/ |
tcuCommandLine.cpp | 703 if (!m_cmdLine.getOption<opt::LogImages>()) 709 (m_cmdLine.getOption<opt::StdinCaseList>()?1:0) > 1) 720 std::istringstream str(m_cmdLine.getOption<opt::CaseList>()); 726 std::ifstream in(m_cmdLine.getOption<opt::CaseListFile>().c_str(), std::ios_base::binary); 729 throw Exception("Failed to open case list file '" + m_cmdLine.getOption<opt::CaseListFile>() + "'"); 733 else if (m_cmdLine.getOption<opt::StdinCaseList>()) 738 m_casePaths = de::MovePtr<const CasePaths>(new CasePaths(m_cmdLine.getOption<opt::CasePath>())); 776 const char* CommandLine::getLogFileName (void) const { return m_cmdLine.getOption<opt::LogFilename>().c_str(); } 778 RunMode CommandLine::getRunMode (void) const { return m_cmdLine.getOption<opt::RunMode>(); } 779 WindowVisibility CommandLine::getVisibility (void) const { return m_cmdLine.getOption<opt::Visibility>(); [all...] |
/external/deqp/framework/delibs/decpp/ |
deCommandLine.cpp | 430 DE_TEST_ASSERT(cmdLine.getOption<TestNamedOpt>() == 1); 431 DE_TEST_ASSERT(cmdLine.getOption<TestBoolOpt>() == false); 432 DE_TEST_ASSERT(cmdLine.getOption<TestStringDefOpt>() == "foo"); 445 DE_TEST_ASSERT(cmdLine.getOption<TestStringOpt>() == "test value"); 446 DE_TEST_ASSERT(cmdLine.getOption<TestIntOpt>() == 9); 447 DE_TEST_ASSERT(cmdLine.getOption<TestBoolOpt>()); 448 DE_TEST_ASSERT(cmdLine.getOption<TestNamedOpt>() == ~0ull); 449 DE_TEST_ASSERT(cmdLine.getOption<TestStringDefOpt>() == "foo"); 462 DE_TEST_ASSERT(cmdLine.getOption<TestStringOpt>() == "foo"); 463 DE_TEST_ASSERT(cmdLine.getOption<TestBoolOpt>()) [all...] |
/external/llvm/include/llvm/Option/ |
Option.h | 98 return Owner->getOption(Info->GroupID); 104 return Owner->getOption(Info->AliasID);
|
Arg.h | 70 const Option &getOption() const { return Opt; }
|
OptTable.h | 88 const Option getOption(OptSpecifier Opt) const;
|
/external/clang/lib/Driver/ |
SanitizerArgs.cpp | 119 if (BLArg->getOption().matches(options::OPT_fsanitize_blacklist)) { 149 if (A->getOption().matches(options::OPT_fsanitize_memory_track_origins)) { 151 } else if (A->getOption().matches( 264 << A->getOption().getName() << A->getValue(I); 274 if (A->getOption().matches(options::OPT_fsanitize_EQ)) { 276 } else if (A->getOption().matches(options::OPT_fno_sanitize_EQ)) { 303 if (!A->getOption().matches(options::OPT_fsanitize_EQ))
|
Driver.cpp | 83 getOpts().getOption(options::OPT_driver_mode).getPrefixedName(); 128 if (A->getOption().hasFlag(options::Unsupported)) { 134 if (A->getOption().matches(options::OPT_mcpu_EQ) && 194 Arg *A = new Arg(Opts->getOption(options::OPT_INPUT), Value, 215 if ((A->getOption().matches(options::OPT_Wl_COMMA) || 216 A->getOption().matches(options::OPT_Xlinker)) && 219 DAL->AddFlagArg(A, Opts->getOption(options::OPT_Z_Xlinker__no_demangle)); 224 DAL->AddSeparateArg(A, Opts->getOption(options::OPT_Xlinker), 233 if (A->getOption().matches(options::OPT_Wp_COMMA) && 238 DAL->AddFlagArg(A, Opts->getOption(options::OPT_MD)) [all...] |
Tools.cpp | 54 if (LastPICArg->getOption().matches(options::OPT_fPIC) || 55 LastPICArg->getOption().matches(options::OPT_fpic) || 56 LastPICArg->getOption().matches(options::OPT_fPIE) || 57 LastPICArg->getOption().matches(options::OPT_fpie)) { 200 if (A.getOption().matches(options::OPT_Z_reserved_lib_stdcxx)) 202 else if (A.getOption().matches(options::OPT_Z_reserved_lib_cckext)) 262 } else if (A->getOption().matches(options::OPT_M) || 263 A->getOption().matches(options::OPT_MM)) { 296 if (A->getOption().matches(options::OPT_M) || 297 A->getOption().matches(options::OPT_MD) [all...] |
ToolChains.cpp | 151 return A->getOption().matches(options::OPT_msoft_float) || 152 (A->getOption().matches(options::OPT_mfloat_abi_EQ) && 449 nullptr, Opts.getOption(options::OPT_isysroot), env)); 528 const Option O = Opts.getOption(options::OPT_mmacosx_version_min_EQ); 532 const Option O = Opts.getOption(options::OPT_miphoneos_version_min_EQ); 536 const Option O = Opts.getOption( 543 const Option O = Opts.getOption(options::OPT_mmacosx_version_min_EQ); 683 if (A->getOption().matches(options::OPT_Xarch__)) { 710 } else if (XarchArg->getOption().hasFlag(options::DriverOption)) { 724 if (A->getOption().hasFlag(options::LinkerInput)) [all...] |
ToolChain.cpp | 237 if (A->getOption().matches(options::OPT_mlittle_endian)) 409 if (!A || A->getOption().getID() == options::OPT_fno_fast_math || 410 A->getOption().getID() == options::OPT_fno_unsafe_math_optimizations)
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/ |
CompositeGrammarTree.java | 70 public Object getOption(String key) { 80 return parent.getOption(key);
|
GrammarReport.java | 95 data.language = (String) g.getOption("language"); 96 data.output = (String) g.getOption("output"); 101 String k = (String) g.getOption("k"); 107 String backtrack = (String) g.getOption("backtrack");
|
BuildDependencyGenerator.java | 90 String language = (String) grammar.getOption("language"); 192 tokenVocab = (String) grammar.getOption("tokenVocab");
|
/external/chromium_org/third_party/icu/source/test/intltest/ |
tstnrapi.cpp | 119 // test setOption() and getOption() 122 if(!copy.getOption(0x880000) || copy.getOption(0x20000)) { 123 errln("error in Normalizer::setOption() or Normalizer::getOption()");
|
/external/icu/icu4c/source/test/intltest/ |
tstnrapi.cpp | 119 // test setOption() and getOption() 122 if(!copy.getOption(0x880000) || copy.getOption(0x20000)) { 123 errln("error in Normalizer::setOption() or Normalizer::getOption()");
|
/external/clang/lib/Frontend/ |
CompilerInvocation.cpp | 80 if (A->getOption().matches(options::OPT_O0)) 83 if (A->getOption().matches(options::OPT_Ofast)) 86 assert (A->getOption().matches(options::OPT_O)); 100 if (A->getOption().matches(options::OPT_O)) { 120 if (A->getOption().getKind() == Option::FlagClass) { 121 Warnings.push_back(A->getOption().getName().substr(1)); 248 bool enable = (A->getOption().getID() == OPT_analyzer_checker); 544 if (A->getOption().matches(OPT_fpcc_struct_return)) { 547 assert(A->getOption().matches(OPT_freg_struct_return)); 625 if (A->getOption().matches(OPT_fdiagnostics_show_note_include_stack) [all...] |
/external/llvm/lib/Support/ |
CommandLine.cpp | [all...] |
/external/chromium_org/third_party/icu/source/common/unicode/ |
normlzr.h | 649 * @see #getOption 665 UBool getOption(int32_t option) const;
|
/external/icu/icu4c/source/common/unicode/ |
normlzr.h | 649 * @see #getOption 665 UBool getOption(int32_t option) const;
|