/external/llvm/lib/Option/ |
D | ArgList.cpp | 29 const Option &O = (*Current)->getOption(); in SkipToNextArg() 43 [=](Arg *A) { return A->getOption().matches(Id); }), in eraseArg() 50 if ((*it)->getOption().matches(Id)) in getLastArgNoClaim() 58 if ((*it)->getOption().matches(Id0) || in getLastArgNoClaim() 59 (*it)->getOption().matches(Id1)) in getLastArgNoClaim() 68 if ((*it)->getOption().matches(Id0) || (*it)->getOption().matches(Id1) || in getLastArgNoClaim() 69 (*it)->getOption().matches(Id2)) in getLastArgNoClaim() 78 if ((*it)->getOption().matches(Id0) || (*it)->getOption().matches(Id1) || in getLastArgNoClaim() 79 (*it)->getOption().matches(Id2) || (*it)->getOption().matches(Id3)) in getLastArgNoClaim() 87 if ((*it)->getOption().matches(Id)) { in getLastArg() [all …]
|
D | OptTable.cpp | 122 getOption(i).dump(); in OptTable() 123 getOption(i + 1).dump(); in OptTable() 154 const Option OptTable::getOption(OptSpecifier Opt) const { in getOption() function in OptTable 198 return new Arg(getOption(TheInputOptionID), Str, Index++, Str); in ParseOneArg() 243 return new Arg(getOption(TheInputOptionID), Str, Index++, Str); in ParseOneArg() 245 return new Arg(getOption(TheUnknownOptionID), Str, Index++, Str); in ParseOneArg() 292 const Option O = Opts.getOption(Id); in getOptionHelpName()
|
/external/deqp/framework/common/ |
D | tcuCommandLine.cpp | 752 if (!m_cmdLine.getOption<opt::LogImages>()) in parse() 755 if (!m_cmdLine.getOption<opt::LogShaderSources>()) in parse() 758 if (!m_cmdLine.getOption<opt::LogFlush>()) in parse() 765 (m_cmdLine.getOption<opt::StdinCaseList>()?1:0) > 1) in parse() 801 const char* CommandLine::getLogFileName (void) const { return m_cmdLine.getOption<opt::LogFi… in getLogFileName() 803 RunMode CommandLine::getRunMode (void) const { return m_cmdLine.getOption<opt::RunMode>();… in getRunMode() 804 const char* CommandLine::getCaseListExportFile (void) const { return m_cmdLine.getOption<opt::… in getCaseListExportFile() 805 WindowVisibility CommandLine::getVisibility (void) const { return m_cmdLine.getOption<opt::Vis… in getVisibility() 806 bool CommandLine::isWatchDogEnabled (void) const { return m_cmdLine.getOption<opt::WatchDog>… in isWatchDogEnabled() 807 bool CommandLine::isCrashHandlingEnabled (void) const { return m_cmdLine.getOption<opt::Crash… in isCrashHandlingEnabled() [all …]
|
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/options/ |
D | PropertyOptions.java | 79 return getOption(URI); in isURI() 101 return getOption(HAS_QUALIFIERS); in getHasQualifiers() 124 return getOption(QUALIFIER); in isQualifier() 142 return getOption(HAS_LANGUAGE); in getHasLanguage() 160 return getOption(HAS_TYPE); in getHasType() 178 return getOption(STRUCT); in isStruct() 199 return getOption(ARRAY); in isArray() 220 return getOption(ARRAY_ORDERED); in isArrayOrdered() 241 return getOption(ARRAY_ALTERNATE); in isArrayAlternate() 263 return getOption(ARRAY_ALT_TEXT); in isArrayAltText() [all …]
|
D | ParseOptions.java | 50 return getOption(REQUIRE_XMP_META); in getRequireXMPMeta() 70 return getOption(STRICT_ALIASING); in getStrictAliasing() 90 return getOption(FIX_CONTROL_CHARS); in getFixControlChars() 110 return getOption(ACCEPT_LATIN_1); in getAcceptLatin1() 130 return getOption(OMIT_NORMALIZATION); in getOmitNormalization()
|
D | SerializeOptions.java | 108 return getOption(OMIT_PACKET_WRAPPER); in getOmitPacketWrapper() 128 return getOption(READONLY_PACKET); in getReadOnlyPacket() 148 return getOption(USE_COMPACT_FORMAT); in getUseCompactFormat() 167 return getOption(INCLUDE_THUMBNAIL_PAD); in getIncludeThumbnailPad() 187 return getOption(EXACT_PACKET_LENGTH); in getExactPacketLength() 207 return getOption(SORT); in getSort()
|
D | IteratorOptions.java | 38 return getOption(JUST_CHILDREN); in isJustChildren() 47 return getOption(JUST_LEAFNAME); in isJustLeafname() 56 return getOption(JUST_LEAFNODES); in isJustLeafnodes() 65 return getOption(OMIT_QUALIFIERS); in isOmitQualifiers()
|
D | AliasOptions.java | 69 return getOption(PROP_ARRAY); in isArray() 89 return getOption(PROP_ARRAY_ORDERED); in isArrayOrdered() 109 return getOption(PROP_ARRAY_ALTERNATE); in isArrayAlternate() 129 return getOption(PROP_ARRAY_ALT_TEXT); in isArrayAltText()
|
/external/jacoco/org.jacoco.core/src/org/jacoco/core/runtime/ |
D | AgentOptions.java | 267 return getOption(DESTFILE, DEFAULT_DESTFILE); in getDestfile() 286 return getOption(APPEND, true); in getAppend() 306 return getOption(INCLUDES, "*"); in getIncludes() 327 return getOption(EXCLUDES, ""); in getExcludes() 348 return getOption(EXCLCLASSLOADER, "sun.reflect.DelegatingClassLoader"); in getExclClassloader() 370 return getOption(INCLBOOTSTRAPCLASSES, false); in getInclBootstrapClasses() 391 return getOption(INCLNOLOCATIONCLASSES, false); in getInclNoLocationClasses() 411 return getOption(SESSIONID, null); in getSessionId() 430 return getOption(DUMPONEXIT, true); in getDumpOnExit() 452 return getOption(PORT, DEFAULT_PORT); in getPort() [all …]
|
/external/clang/lib/Driver/ |
D | SanitizerArgs.cpp | 129 if (Arg->getOption().matches(options::OPT_fsanitize_trap_EQ)) { in parseSanitizeTrapArgs() 140 } else if (Arg->getOption().matches(options::OPT_fno_sanitize_trap_EQ)) { in parseSanitizeTrapArgs() 143 } else if (Arg->getOption().matches( in parseSanitizeTrapArgs() 148 } else if (Arg->getOption().matches( in parseSanitizeTrapArgs() 207 if (Arg->getOption().matches(options::OPT_fsanitize_EQ)) { in SanitizerArgs() 264 } else if (Arg->getOption().matches(options::OPT_fno_sanitize_EQ)) { in SanitizerArgs() 341 if (Arg->getOption().matches(options::OPT_fsanitize_recover)) { in SanitizerArgs() 346 } else if (Arg->getOption().matches(options::OPT_fno_sanitize_recover)) { in SanitizerArgs() 351 } else if (Arg->getOption().matches(options::OPT_fsanitize_recover_EQ)) { in SanitizerArgs() 360 << Arg->getOption().getName() << toString(SetToDiagnose); in SanitizerArgs() [all …]
|
D | MSVCToolChain.cpp | 701 assert(A->getOption().matches(options::OPT__SLASH_O)); in TranslateOptArg() 715 DAL.AddFlagArg(A, Opts.getOption(options::OPT_O0)); in TranslateOptArg() 718 DAL.AddJoinedArg(A, Opts.getOption(options::OPT_O), "s"); in TranslateOptArg() 720 DAL.AddFlagArg(A, Opts.getOption(options::OPT_fbuiltin)); in TranslateOptArg() 721 DAL.AddJoinedArg(A, Opts.getOption(options::OPT_O), "2"); in TranslateOptArg() 726 Opts.getOption(options::OPT_fomit_frame_pointer)); in TranslateOptArg() 729 Opts.getOption(options::OPT_ffunction_sections)); in TranslateOptArg() 737 DAL.AddFlagArg(A, Opts.getOption(options::OPT_fno_inline)); in TranslateOptArg() 740 DAL.AddFlagArg(A, Opts.getOption(options::OPT_finline_hint_functions)); in TranslateOptArg() 743 DAL.AddFlagArg(A, Opts.getOption(options::OPT_finline_functions)); in TranslateOptArg() [all …]
|
D | Driver.cpp | 94 getOpts().getOption(options::OPT_driver_mode).getPrefixedName(); in ParseDriverMode() 139 if (A->getOption().hasFlag(options::Unsupported)) { in ParseArgStrings() 145 if (A->getOption().matches(options::OPT_mcpu_EQ) && A->containsValue("")) { in ParseArgStrings() 205 Arg *A = new Arg(Opts->getOption(options::OPT_INPUT), Value, in MakeInputArg() 224 if ((A->getOption().matches(options::OPT_Wl_COMMA) || in TranslateInputArgs() 225 A->getOption().matches(options::OPT_Xlinker)) && in TranslateInputArgs() 228 DAL->AddFlagArg(A, Opts->getOption(options::OPT_Z_Xlinker__no_demangle)); in TranslateInputArgs() 233 DAL->AddSeparateArg(A, Opts->getOption(options::OPT_Xlinker), Val); in TranslateInputArgs() 241 if (A->getOption().matches(options::OPT_Wp_COMMA) && in TranslateInputArgs() 246 DAL->AddFlagArg(A, Opts->getOption(options::OPT_MD)); in TranslateInputArgs() [all …]
|
D | Tools.cpp | 59 StringRef Name = A->getOption().getName(); in handleTargetFeaturesGroup() 258 if (A.getOption().matches(options::OPT_Z_reserved_lib_stdcxx)) in AddLinkerInputs() 260 else if (A.getOption().matches(options::OPT_Z_reserved_lib_cckext)) in AddLinkerInputs() 262 else if (A.getOption().matches(options::OPT_z)) { in AddLinkerInputs() 324 } else if (A->getOption().matches(options::OPT_M) || in AddPreprocessingOptions() 325 A->getOption().matches(options::OPT_MM)) { in AddPreprocessingOptions() 358 if (A->getOption().matches(options::OPT_M) || in AddPreprocessingOptions() 359 A->getOption().matches(options::OPT_MD)) in AddPreprocessingOptions() 368 if (!A || A->getOption().matches(options::OPT_MD) || in AddPreprocessingOptions() 369 A->getOption().matches(options::OPT_MMD)) in AddPreprocessingOptions() [all …]
|
/external/deqp/framework/delibs/decpp/ |
D | deCommandLine.cpp | 430 DE_TEST_ASSERT(cmdLine.getOption<TestNamedOpt>() == 1); in selfTest() 431 DE_TEST_ASSERT(cmdLine.getOption<TestBoolOpt>() == false); in selfTest() 432 DE_TEST_ASSERT(cmdLine.getOption<TestStringDefOpt>() == "foo"); in selfTest() 445 DE_TEST_ASSERT(cmdLine.getOption<TestStringOpt>() == "test value"); in selfTest() 446 DE_TEST_ASSERT(cmdLine.getOption<TestIntOpt>() == 9); in selfTest() 447 DE_TEST_ASSERT(cmdLine.getOption<TestBoolOpt>()); in selfTest() 448 DE_TEST_ASSERT(cmdLine.getOption<TestNamedOpt>() == ~0ull); in selfTest() 449 DE_TEST_ASSERT(cmdLine.getOption<TestStringDefOpt>() == "foo"); in selfTest() 462 DE_TEST_ASSERT(cmdLine.getOption<TestStringOpt>() == "foo"); in selfTest() 463 DE_TEST_ASSERT(cmdLine.getOption<TestBoolOpt>()); in selfTest() [all …]
|
/external/deqp/executor/tools/ |
D | xeCommandLineExecutor.cpp | 178 cmdLine.serverBinOrAddress = opts.getOption<opt::StartServer>(); in parseCommandLine() 183 cmdLine.serverBinOrAddress = opts.getOption<opt::Host>(); in parseCommandLine() 188 cmdLine.inFile = opts.getOption<opt::ContinueFile>(); in parseCommandLine() 197 cmdLine.port = opts.getOption<opt::Port>(); in parseCommandLine() 198 cmdLine.caseListDir = opts.getOption<opt::CaseListDir>(); in parseCommandLine() 199 cmdLine.testset = opts.getOption<opt::TestSet>(); in parseCommandLine() 200 cmdLine.exclude = opts.getOption<opt::ExcludeSet>(); in parseCommandLine() 201 cmdLine.outFile = opts.getOption<opt::TestLogFile>(); in parseCommandLine() 202 cmdLine.infoFile = opts.getOption<opt::InfoLogFile>(); in parseCommandLine() 203 cmdLine.summary = opts.getOption<opt::Summary>(); in parseCommandLine() [all …]
|
/external/deqp/external/vulkancts/modules/vulkan/ |
D | vktBuildPrograms.cpp | 628 deqpArgv.push_back(cmdLine.getOption<opt::Cases>().c_str()); in main() 634 deqpArgv.push_back(cmdLine.getOption<opt::ShaderCacheFilename>().c_str()); in main() 640 if (cmdLine.getOption<opt::ShaderCache>()) in main() 649 if (cmdLine.getOption<opt::ShaderCacheTruncate>()) in main() 658 if (cmdLine.getOption<opt::SpirvOptimize>()) in main() 667 deqpArgv.push_back(cmdLine.getOption<opt::SpirvOptimizationRecipe>().c_str()); in main() 680 …vk::SpirvVersion baselineSpirvVersion = vk::getBaselineSpirvVersion(cmdLine.getOption<opt::Vulkan… in main() 681 …vk::SpirvVersion maxSpirvVersion = vk::getMaxSpirvVersionForGlsl(cmdLine.getOption<opt::VulkanV… in main() 688 cmdLine.getOption<opt::DstPath>(), in main() 689 cmdLine.getOption<opt::Validate>(), in main() [all …]
|
/external/grpc-grpc-java/core/src/test/java/io/grpc/ |
D | CallOptionsTest.java | 89 assertThat(allSet.getOption(OPTION_1)).isSameAs("value1"); in allWiths() 90 assertThat(allSet.getOption(OPTION_2)).isSameAs("value2"); in allWiths() 177 assertThat(opts.getOption(OPTION_1)).isEqualTo("default"); in withCustomOptionDefault() 183 assertThat(opts.getOption(OPTION_1)).isEqualTo("v1"); in withCustomOption() 189 assertThat(opts.getOption(OPTION_1)).isEqualTo("v2"); in withCustomOptionLastOneWins() 195 assertThat(opts.getOption(OPTION_1)).isEqualTo("v1"); in withMultipleCustomOption() 196 assertThat(opts.getOption(OPTION_2)).isEqualTo("v2"); in withMultipleCustomOption()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Option/ |
D | ArgList.cpp | 38 for (Option O = A->getOption().getUnaliasedOption(); O.isValid(); in append() 76 return A->getOption().matches(Pos); in hasFlag() 83 return A->getOption().matches(Pos) || A->getOption().matches(PosAlias); in hasFlag() 120 if (Arg->getOption().matches(Id)) { in AddAllArgsExcept() 127 if (Arg->getOption().matches(Id)) { in AddAllArgsExcept()
|
D | OptTable.cpp | 132 getOption(i).dump(); in OptTable() 133 getOption(i + 1).dump(); in OptTable() 162 const Option OptTable::getOption(OptSpecifier Opt) const { in getOption() function in OptTable 333 return new Arg(getOption(TheInputOptionID), Str, Index++, Str); in ParseOneArg() 378 return new Arg(getOption(TheInputOptionID), Str, Index++, Str); in ParseOneArg() 380 return new Arg(getOption(TheUnknownOptionID), Str, Index++, Str); in ParseOneArg() 427 const Option O = Opts.getOption(Id); in getOptionHelpName() 557 const Option Alias = getOption(Id).getAlias(); in PrintHelp()
|
/external/deqp/execserver/tools/ |
D | xsMain.cpp | 80 const xs::ExecutionServer::RunMode runMode = cmdLine.getOption<opt::SingleExec>() in main() 83 const int port = cmdLine.getOption<opt::Port>(); in main()
|
/external/parameter-framework/upstream/tools/xmlGenerator/ |
D | EddParser.py | 69 items.append(options.getOption(itemName)) 131 def getOption(self, name): member in Options 245 return self.option.getOption("Name") 333 translator.setParameter(self.getName(), self.option.getOption("value")) 388 self.option.getOption("criterion") + " " + \ 389 self.option.getOption("type") + " " + \ 390 self.option.getOption("element") 681 sequence_aware = self.option.getOption(self.sequenceAwareKeyword)
|
/external/vulkan-validation-layers/layers/ |
D | vk_layer_config.cpp | 47 const char *getOption(const std::string &_option); 80 VK_LAYER_EXPORT const char *getLayerOption(const char *_option) { return g_configFileObj.getOption(… in getLayerOption() 110 std::string option_list = g_configFileObj.getOption(_option.c_str()); in GetLayerOptionFlags() 187 const char *ConfigFile::getOption(const std::string &_option) { in getOption() function in ConfigFile
|
/external/clang/lib/Frontend/ |
D | CompilerInvocation.cpp | 88 if (A->getOption().matches(options::OPT_O0)) in getOptimizationLevel() 91 if (A->getOption().matches(options::OPT_Ofast)) in getOptimizationLevel() 94 assert (A->getOption().matches(options::OPT_O)); in getOptimizationLevel() 108 if (A->getOption().matches(options::OPT_O)) { in getOptimizationLevelSize() 126 if (A->getOption().getKind() == Option::FlagClass) { in addDiagnosticArgs() 129 Diagnostics.push_back(A->getOption().getName().drop_front(1)); in addDiagnosticArgs() 130 } else if (A->getOption().matches(GroupWithValue)) { in addDiagnosticArgs() 132 Diagnostics.push_back(A->getOption().getName().drop_front(1).rtrim("=-")); in addDiagnosticArgs() 145 const Option &O = Arg->getOption(); in getAllNoBuiltinFuncValues() 266 bool enable = (A->getOption().getID() == OPT_analyzer_checker); in ParseAnalyzerArgs() [all …]
|
/external/llvm/include/llvm/Option/ |
D | Option.h | 98 return Owner->getOption(Info->GroupID); in getGroup() 104 return Owner->getOption(Info->AliasID); in getAlias()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Option/ |
D | Option.h | 107 return Owner->getOption(Info->GroupID); in getGroup() 113 return Owner->getOption(Info->AliasID); in getAlias()
|