HomeSort by relevance Sort by last modified time
    Searched refs:option (Results 101 - 125 of 1979) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/ndk/9/platforms/android-18/arch-x86/usr/include/
getopt.h 52 struct option { struct
53 /* name of long option */
57 * whether option takes an argument
60 /* if not NULL, set *flag to val when option found */
68 const struct option *, int *);
70 const struct option *, int *);
  /prebuilts/ndk/9/platforms/android-19/arch-arm/usr/include/
getopt.h 52 struct option { struct
53 /* name of long option */
57 * whether option takes an argument
60 /* if not NULL, set *flag to val when option found */
68 const struct option *, int *);
70 const struct option *, int *);
  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/
getopt.h 52 struct option { struct
53 /* name of long option */
57 * whether option takes an argument
60 /* if not NULL, set *flag to val when option found */
68 const struct option *, int *);
70 const struct option *, int *);
  /prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/
getopt.h 52 struct option { struct
53 /* name of long option */
57 * whether option takes an argument
60 /* if not NULL, set *flag to val when option found */
68 const struct option *, int *);
70 const struct option *, int *);
  /prebuilts/ndk/9/platforms/android-21/arch-arm/usr/include/
getopt.h 46 struct option { struct
47 /* name of long option */
51 * whether option takes an argument
54 /* if not NULL, set *flag to val when option found */
62 const struct option *, int *);
64 const struct option *, int *);
  /prebuilts/ndk/9/platforms/android-21/arch-arm64/usr/include/
getopt.h 46 struct option { struct
47 /* name of long option */
51 * whether option takes an argument
54 /* if not NULL, set *flag to val when option found */
62 const struct option *, int *);
64 const struct option *, int *);
  /prebuilts/ndk/9/platforms/android-21/arch-mips/usr/include/
getopt.h 46 struct option { struct
47 /* name of long option */
51 * whether option takes an argument
54 /* if not NULL, set *flag to val when option found */
62 const struct option *, int *);
64 const struct option *, int *);
  /prebuilts/ndk/9/platforms/android-21/arch-mips64/usr/include/
getopt.h 46 struct option { struct
47 /* name of long option */
51 * whether option takes an argument
54 /* if not NULL, set *flag to val when option found */
62 const struct option *, int *);
64 const struct option *, int *);
  /prebuilts/ndk/9/platforms/android-21/arch-x86/usr/include/
getopt.h 46 struct option { struct
47 /* name of long option */
51 * whether option takes an argument
54 /* if not NULL, set *flag to val when option found */
62 const struct option *, int *);
64 const struct option *, int *);
  /prebuilts/ndk/9/platforms/android-21/arch-x86_64/usr/include/
getopt.h 46 struct option { struct
47 /* name of long option */
51 * whether option takes an argument
54 /* if not NULL, set *flag to val when option found */
62 const struct option *, int *);
64 const struct option *, int *);
  /prebuilts/ndk/9/platforms/android-3/arch-arm/usr/include/
getopt.h 52 struct option { struct
53 /* name of long option */
57 * whether option takes an argument
60 /* if not NULL, set *flag to val when option found */
68 const struct option *, int *);
70 const struct option *, int *);
  /prebuilts/ndk/9/platforms/android-4/arch-arm/usr/include/
getopt.h 52 struct option { struct
53 /* name of long option */
57 * whether option takes an argument
60 /* if not NULL, set *flag to val when option found */
68 const struct option *, int *);
70 const struct option *, int *);
  /prebuilts/ndk/9/platforms/android-5/arch-arm/usr/include/
getopt.h 52 struct option { struct
53 /* name of long option */
57 * whether option takes an argument
60 /* if not NULL, set *flag to val when option found */
68 const struct option *, int *);
70 const struct option *, int *);
  /prebuilts/ndk/9/platforms/android-8/arch-arm/usr/include/
getopt.h 52 struct option { struct
53 /* name of long option */
57 * whether option takes an argument
60 /* if not NULL, set *flag to val when option found */
68 const struct option *, int *);
70 const struct option *, int *);
  /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/
getopt.h 52 struct option { struct
53 /* name of long option */
57 * whether option takes an argument
60 /* if not NULL, set *flag to val when option found */
68 const struct option *, int *);
70 const struct option *, int *);
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/
getopt.h 52 struct option { struct
53 /* name of long option */
57 * whether option takes an argument
60 /* if not NULL, set *flag to val when option found */
68 const struct option *, int *);
70 const struct option *, int *);
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/
getopt.h 52 struct option { struct
53 /* name of long option */
57 * whether option takes an argument
60 /* if not NULL, set *flag to val when option found */
68 const struct option *, int *);
70 const struct option *, int *);
  /art/runtime/
parsed_options.cc 107 static gc::CollectorType ParseCollectorType(const std::string& option) {
108 if (option == "MS" || option == "nonconcurrent") {
110 } else if (option == "CMS" || option == "concurrent") {
112 } else if (option == "SS") {
114 } else if (option == "GSS") {
116 } else if (option == "CC") {
118 } else if (option == "MC") {
125 bool ParsedOptions::ParseXGcOption(const std::string& option) {
    [all...]
  /libcore/luni/src/test/java/libcore/java/net/
OldSocketTestCase.java 52 private static final String osDoesNotSupportOptionString = "The socket option is not supported";
54 private static final String osDoesNotSupportOptionArgumentString = "The socket option arguments are invalid";
57 * Answer whether the OS supports the given socket option.
59 public boolean getOptionIsSupported(int option) {
60 switch (option) {
91 public void handleException(Exception e, int option) {
92 if (!getOptionIsSupported(option)) {
100 * not support the option
105 + "\" instead of correct exception for unsupported socket option: "
106 + getSocketOptionString(option));
    [all...]
  /external/chromium_org/chrome/test/chromedriver/js/
is_option_element_toggleable.js 5 function isOptionElementToggleable(option) {
6 if (option.tagName.toLowerCase() != 'option')
7 throw new Error('element is not an option');
8 for (var parent = option.parentElement;
15 throw new Error('option element is not in a select');
  /external/stlport/stlport/stl/config/
_warnings_off.h 45 # pragma option -w-ccc // -w-8008 Condition is always true OR Condition is always false
46 # pragma option -w-inl // -w-8027 Functions containing reserved words are not expanded inline
47 # pragma option -w-ngu // -w-8041 Negating unsigned value
48 # pragma option -w-pow // -w-8062 Previous options and warnings not restored
49 # pragma option -w-rch // -w-8066 Unreachable code
50 # pragma option -w-par // -w-8057 Parameter 'parameter' is never used
  /libcore/luni/src/main/native/
java_io_FileDescriptor.cpp 27 int option; local
28 socklen_t option_length = sizeof(option);
29 return TEMP_FAILURE_RETRY(getsockopt(fd, SOL_SOCKET, SO_DEBUG, &option, &option_length)) == 0;
  /ndk/sources/cxx-stl/stlport/stlport/stl/config/
_warnings_off.h 45 # pragma option -w-ccc // -w-8008 Condition is always true OR Condition is always false
46 # pragma option -w-inl // -w-8027 Functions containing reserved words are not expanded inline
47 # pragma option -w-ngu // -w-8041 Negating unsigned value
48 # pragma option -w-pow // -w-8062 Previous options and warnings not restored
49 # pragma option -w-rch // -w-8066 Unreachable code
50 # pragma option -w-par // -w-8057 Parameter 'parameter' is never used
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/config/
_warnings_off.h 45 # pragma option -w-ccc // -w-8008 Condition is always true OR Condition is always false
46 # pragma option -w-inl // -w-8027 Functions containing reserved words are not expanded inline
47 # pragma option -w-ngu // -w-8041 Negating unsigned value
48 # pragma option -w-pow // -w-8062 Previous options and warnings not restored
49 # pragma option -w-rch // -w-8066 Unreachable code
50 # pragma option -w-par // -w-8057 Parameter 'parameter' is never used
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/config/
_warnings_off.h 45 # pragma option -w-ccc // -w-8008 Condition is always true OR Condition is always false
46 # pragma option -w-inl // -w-8027 Functions containing reserved words are not expanded inline
47 # pragma option -w-ngu // -w-8041 Negating unsigned value
48 # pragma option -w-pow // -w-8062 Previous options and warnings not restored
49 # pragma option -w-rch // -w-8066 Unreachable code
50 # pragma option -w-par // -w-8057 Parameter 'parameter' is never used

Completed in 738 milliseconds

1 2 3 45 6 7 8 91011>>