HomeSort by relevance Sort by last modified time
    Searched refs:getOption (Results 1 - 25 of 188) sorted by null

1 2 3 4 5 6 7 8

  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/options/
IteratorOptions.java 38 return getOption(JUST_CHILDREN);
47 return getOption(JUST_LEAFNAME);
56 return getOption(JUST_LEAFNODES);
65 return getOption(OMIT_QUALIFIERS);
ParseOptions.java 50 return getOption(REQUIRE_XMP_META);
70 return getOption(STRICT_ALIASING);
90 return getOption(FIX_CONTROL_CHARS);
110 return getOption(ACCEPT_LATIN_1);
130 return getOption(OMIT_NORMALIZATION);
PropertyOptions.java 79 return getOption(URI);
101 return getOption(HAS_QUALIFIERS);
124 return getOption(QUALIFIER);
142 return getOption(HAS_LANGUAGE);
160 return getOption(HAS_TYPE);
178 return getOption(STRUCT);
199 return getOption(ARRAY);
220 return getOption(ARRAY_ORDERED);
241 return getOption(ARRAY_ALTERNATE);
263 return getOption(ARRAY_ALT_TEXT)
    [all...]
AliasOptions.java 69 return getOption(PROP_ARRAY);
89 return getOption(PROP_ARRAY_ORDERED);
109 return getOption(PROP_ARRAY_ALTERNATE);
129 return getOption(PROP_ARRAY_ALT_TEXT);
SerializeOptions.java 108 return getOption(OMIT_PACKET_WRAPPER);
128 return getOption(READONLY_PACKET);
148 return getOption(USE_COMPACT_FORMAT);
167 return getOption(INCLUDE_THUMBNAIL_PAD);
187 return getOption(EXACT_PACKET_LENGTH);
207 return getOption(SORT);
  /external/llvm/lib/Option/
ArgList.cpp 29 const Option &O = (*Current)->getOption();
43 [=](Arg *A) { return A->getOption().matches(Id); }),
50 if ((*it)->getOption().matches(Id))
58 if ((*it)->getOption().matches(Id0) ||
59 (*it)->getOption().matches(Id1))
68 if ((*it)->getOption().matches(Id0) || (*it)->getOption().matches(Id1) ||
69 (*it)->getOption().matches(Id2))
78 if ((*it)->getOption().matches(Id0) || (*it)->getOption().matches(Id1) |
    [all...]
  /dalvik/dx/tests/083-ssa-phi-placement/
Blort.java 49 public Object getOption(int optID) throws RuntimeException
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/runtime/
AgentOptions.java 255 return getOption(DESTFILE, DEFAULT_DESTFILE);
274 return getOption(APPEND, true);
294 return getOption(INCLUDES, "*");
315 return getOption(EXCLUDES, "");
336 return getOption(EXCLCLASSLOADER, "sun.reflect.DelegatingClassLoader");
357 return getOption(INCLBOOTSTRAPCLASSES, false);
377 return getOption(SESSIONID, null);
396 return getOption(DUMPONEXIT, true);
418 return getOption(PORT, DEFAULT_PORT);
441 return getOption(ADDRESS, DEFAULT_ADDRESS)
    [all...]
  /frameworks/support/buildSrc/src/main/groovy/android/support/doclava/
DoclavaJavadocOptionFileOption.java 44 public String getOption() {
49 writerContext.writeOptionHeader(getOption());
DoclavaMultilineJavadocOptionFileOption.java 58 public String getOption() {
65 writerContext.writeOptionHeader(getOption());
  /libcore/ojluni/src/main/java/java/net/
SocketOptions.java 85 * @see #getOption(int)
97 * Boolean noDelay = (Boolean)(s.getOption(TCP_NODELAY));
105 * getOption(int) will return the parameter's value, else
108 * Object o = s.getOption(SO_LINGER);
123 public Object getOption(int optID) throws SocketException;
  /libcore/ojluni/src/main/java/java/nio/channels/
NetworkChannel.java 41 * #getOption(SocketOption) getOption} methods are used to set and query socket
149 <T> T getOption(SocketOption<T> name) throws IOException;
  /external/deqp/framework/common/
tcuCommandLine.cpp 726 if (!m_cmdLine.getOption<opt::LogImages>())
729 if (!m_cmdLine.getOption<opt::LogShaderSources>())
732 if (!m_cmdLine.getOption<opt::LogFlush>())
738 (m_cmdLine.getOption<opt::StdinCaseList>()?1:0) > 1)
749 std::istringstream str(m_cmdLine.getOption<opt::CaseList>());
755 std::ifstream in(m_cmdLine.getOption<opt::CaseListFile>().c_str(), std::ios_base::binary);
758 throw Exception("Failed to open case list file '" + m_cmdLine.getOption<opt::CaseListFile>() + "'");
762 else if (m_cmdLine.getOption<opt::StdinCaseList>())
767 m_casePaths = de::MovePtr<const CasePaths>(new CasePaths(m_cmdLine.getOption<opt::CasePath>()));
805 const char* CommandLine::getLogFileName (void) const { return m_cmdLine.getOption<opt::LogFilename>().c_str();
    [all...]
  /external/clang/lib/Driver/
SanitizerArgs.cpp 127 if (Arg->getOption().matches(options::OPT_fsanitize_trap_EQ)) {
138 } else if (Arg->getOption().matches(options::OPT_fno_sanitize_trap_EQ)) {
141 } else if (Arg->getOption().matches(
146 } else if (Arg->getOption().matches(
223 if (Arg->getOption().matches(options::OPT_fsanitize_EQ)) {
280 } else if (Arg->getOption().matches(options::OPT_fno_sanitize_EQ)) {
349 if (Arg->getOption().matches(options::OPT_fsanitize_recover)) {
353 } else if (Arg->getOption().matches(options::OPT_fno_sanitize_recover)) {
357 } else if (Arg->getOption().matches(options::OPT_fsanitize_recover_EQ)) {
366 << Arg->getOption().getName() << toString(SetToDiagnose)
    [all...]
MSVCToolChain.cpp 657 if (!A->getOption().matches(options::OPT__SLASH_O))
670 if (!A->getOption().matches(options::OPT__SLASH_O)) {
687 DAL->AddFlagArg(A, Opts.getOption(options::OPT_O0));
690 DAL->AddJoinedArg(A, Opts.getOption(options::OPT_O), "s");
692 DAL->AddFlagArg(A, Opts.getOption(options::OPT_fbuiltin));
693 DAL->AddJoinedArg(A, Opts.getOption(options::OPT_O), "2");
697 Opts.getOption(options::OPT_fomit_frame_pointer));
700 Opts.getOption(options::OPT_ffunction_sections));
713 DAL->AddFlagArg(A, Opts.getOption(options::OPT_fno_builtin));
715 DAL->AddFlagArg(A, Opts.getOption(options::OPT_fbuiltin))
    [all...]
Driver.cpp 92 getOpts().getOption(options::OPT_driver_mode).getPrefixedName();
137 if (A->getOption().hasFlag(options::Unsupported)) {
143 if (A->getOption().matches(options::OPT_mcpu_EQ) && A->containsValue("")) {
201 Arg *A = new Arg(Opts->getOption(options::OPT_INPUT), Value,
220 if ((A->getOption().matches(options::OPT_Wl_COMMA) ||
221 A->getOption().matches(options::OPT_Xlinker)) &&
224 DAL->AddFlagArg(A, Opts->getOption(options::OPT_Z_Xlinker__no_demangle));
229 DAL->AddSeparateArg(A, Opts->getOption(options::OPT_Xlinker), Val);
237 if (A->getOption().matches(options::OPT_Wp_COMMA) &&
242 DAL->AddFlagArg(A, Opts->getOption(options::OPT_MD))
    [all...]
  /external/deqp/execserver/tools/
xsMain.cpp 80 const xs::ExecutionServer::RunMode runMode = cmdLine.getOption<opt::SingleExec>()
83 const int port = cmdLine.getOption<opt::Port>();
  /frameworks/base/core/java/android/net/
LocalSocket.java 225 return ((Integer) impl.getOption(SocketOptions.SO_RCVBUF)).intValue();
233 return ((Integer) impl.getOption(SocketOptions.SO_TIMEOUT)).intValue();
241 return ((Integer) impl.getOption(SocketOptions.SO_SNDBUF)).intValue();
  /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/deqp/executor/tools/
xeCommandLineExecutor.cpp 177 cmdLine.serverBinOrAddress = opts.getOption<opt::StartServer>();
182 cmdLine.serverBinOrAddress = opts.getOption<opt::Host>();
187 cmdLine.inFile = opts.getOption<opt::ContinueFile>();
196 cmdLine.port = opts.getOption<opt::Port>();
197 cmdLine.caseListDir = opts.getOption<opt::CaseListDir>();
198 cmdLine.testset = opts.getOption<opt::TestSet>();
199 cmdLine.exclude = opts.getOption<opt::ExcludeSet>();
200 cmdLine.outFile = opts.getOption<opt::TestLogFile>();
201 cmdLine.infoFile = opts.getOption<opt::InfoLogFile>();
202 cmdLine.summary = opts.getOption<opt::Summary>()
    [all...]
  /external/vulkan-validation-layers/layers/
vk_layer_config.cpp 45 const char *getOption(const std::string &_option);
97 const char *getLayerOption(const char *_option) { return g_configFileObj.getOption(_option); }
121 const char *option = (g_configFileObj.getOption(_option));
157 const char *option = (g_configFileObj.getOption(_option));
180 const char *ConfigFile::getOption(const std::string &_option) {
  /external/llvm/include/llvm/Option/
Option.h 97 return Owner->getOption(Info->GroupID);
103 return Owner->getOption(Info->AliasID);
Arg.h 70 const Option &getOption() const { return Opt; }
OptTable.h 88 const Option getOption(OptSpecifier Opt) const;
  /libcore/luni/src/test/java/libcore/java/net/
OldSocketImplFactoryTest.java 57 assertNull(si.getOption(0));
170 public Object getOption(int arg0) throws SocketException {

Completed in 1391 milliseconds

1 2 3 4 5 6 7 8