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

1 2 3 4 5

  /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 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);
  /dalvik/dx/tests/083-ssa-phi-placement/
Blort.java 49 public Object getOption(int optID) throws RuntimeException
  /libcore/luni/src/main/java/java/net/
SocketOptions.java 185 public Object getOption(int optID) throws SocketException;
Socket.java 371 return (Boolean) impl.getOption(SocketOptions.SO_KEEPALIVE);
429 Object value = impl.getOption(SocketOptions.SO_LINGER);
442 return (Integer) impl.getOption(SocketOptions.SO_RCVBUF);
450 return (Integer) impl.getOption(SocketOptions.SO_SNDBUF);
458 return (Integer) impl.getOption(SocketOptions.SO_TIMEOUT);
466 return (Boolean) impl.getOption(SocketOptions.TCP_NODELAY);
    [all...]
MulticastSocket.java 82 InetAddress ipvXaddress = (InetAddress) impl.getOption(SocketOptions.IP_MULTICAST_IF);
109 int index = (Integer) impl.getOption(SocketOptions.IP_MULTICAST_IF2);
351 return !((Boolean) impl.getOption(SocketOptions.IP_MULTICAST_LOOP)).booleanValue();
ServerSocket.java 201 return ((Integer) impl.getOption(SocketOptions.SO_TIMEOUT)).intValue();
406 return ((Boolean) impl.getOption(SocketOptions.SO_REUSEADDR)).booleanValue();
425 return ((Integer) impl.getOption(SocketOptions.SO_RCVBUF)).intValue();
DatagramSocket.java 230 return ((Integer) impl.getOption(SocketOptions.SO_RCVBUF)).intValue();
238 return ((Integer) impl.getOption(SocketOptions.SO_SNDBUF)).intValue();
249 return ((Integer) impl.getOption(SocketOptions.SO_TIMEOUT)).intValue();
628 return ((Boolean) impl.getOption(SocketOptions.SO_REUSEADDR)).booleanValue();
654 return ((Boolean) impl.getOption(SocketOptions.SO_BROADCAST)).booleanValue();
679 return (Integer) impl.getOption(SocketOptions.IP_TOS);
  /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...]
  /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...]
  /frameworks/base/core/java/android/net/
LocalSocket.java 224 return ((Integer) impl.getOption(SocketOptions.SO_RCVBUF)).intValue();
232 return ((Integer) impl.getOption(SocketOptions.SO_TIMEOUT)).intValue();
240 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/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;
  /libcore/luni/src/test/java/libcore/java/net/
OldSocketImplFactoryTest.java 57 assertNull(si.getOption(0));
170 public Object getOption(int arg0) throws SocketException {
  /frameworks/compile/slang/
rs_cc_options.cpp 114 if (A->getOption().getKind() == llvm::opt::Option::InputClass)
123 switch (A->getOption().getID()) {
139 switch (A->getOption().getID()) {
200 if (lastBitwidthArg->getOption().matches(OPT_m32)) {
  /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...]
  /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);

Completed in 375 milliseconds

1 2 3 4 5