HomeSort by relevance Sort by last modified time
    Searched defs:option (Results 1 - 25 of 387) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/oprofile/libopt++/
popt_options.h 3 * option parsing
14 * static popt::option allow_frob_opt(allow_frob, "allow-frob", 'a', "allow frobs");
15 * static popt::option frob_opt(frob, "frob", 'f', "what to frob", "name");
21 * Note than if you try to implement an option for an unsupported type like :
24 * static popt::option i_opt(i, ....);
31 * that the template parameter denotes the type of the option argument.
33 * When the template parameter type is bool, option starting with "no-" prefix
38 * popt::option(demangle, "demangle", 'd', "demangle C++ symbols"),
39 * popt::option(demangle, "no-demangle", '\0', "don't demangle C++ symbols"),
74 * option - base class for a command line optio
79 class option { class in namespace:popt
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
BitmapFactory_OptionsTest.java 27 BitmapFactory.Options option = new BitmapFactory.Options(); local
29 assertFalse(option.mCancel);
30 option.requestCancelDecode();
31 assertTrue(option.mCancel);
  /development/ndk/platforms/android-3/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 *);
  /external/chromium/chrome/browser/ui/webui/options/chromeos/
language_chewing_handler.cc 61 // For number of candidates per page, we use select-option UI.
72 ListValue* option = new ListValue(); local
73 option->Append(CreateValue(i));
74 option->Append(CreateValue(i));
75 list_value->Append(option);
language_hangul_handler.cc 37 ListValue* option = new ListValue(); local
38 option->Append(Value::CreateStringValue(
40 option->Append(Value::CreateStringValue(l10n_util::GetStringUTF16(
42 keyboard_layout_list->Append(option);
language_mozc_handler.cc 60 ListValue* option = new ListValue(); local
61 option->Append(CreateValue(j));
62 option->Append(CreateValue(j));
63 list_value->Append(option);
language_options_util.h 69 ListValue* option = new ListValue(); local
70 option->Append(CreateValue(
72 option->Append(Value::CreateStringValue(l10n_util::GetStringUTF16(
74 list_value->Append(option);
language_pinyin_handler.cc 52 ListValue* option = new ListValue(); local
53 option->Append(Value::CreateIntegerValue(
56 option->Append(Value::CreateStringValue(l10n_util::GetStringUTF16(
59 list_value->Append(option);
  /external/chromium_org/chrome/browser/ui/webui/options/chromeos/
language_chewing_handler.cc 62 // For number of candidates per page, we use select-option UI.
73 ListValue* option = new ListValue(); local
74 option->Append(CreateValue(i));
75 option->Append(CreateValue(i));
76 list_value->Append(option);
language_hangul_handler.cc 38 ListValue* option = new ListValue(); local
39 option->Append(new base::StringValue(
41 option->Append(new base::StringValue(l10n_util::GetStringUTF16(
43 keyboard_layout_list->Append(option);
language_mozc_handler.cc 61 ListValue* option = new ListValue(); local
62 option->Append(CreateValue(j));
63 option->Append(CreateValue(j));
64 list_value->Append(option);
language_pinyin_handler.cc 53 ListValue* option = new ListValue(); local
54 option->Append(new base::FundamentalValue(
57 option->Append(new base::StringValue(l10n_util::GetStringUTF16(
60 list_value->Append(option);
  /external/chromium_org/sandbox/win/src/
unload_dll_test.cc 21 wchar_t option = (argv[0])[0]; local
22 if ((option == L'L') || (option == L'B')) {
27 if ((option == L'U') || (option == L'B')) {
  /external/chromium_org/third_party/icu/source/tools/toolutil/
uoptions.c 33 /* process an option */
34 UOption *option=NULL; local
37 /* process a long option */
42 /* search for the option string */
46 option=options+j;
50 if(option==NULL) {
51 /* no option matches */
54 option->doesOccur=1;
56 if(option->hasArg!=UOPT_NO_ARG) {
57 /* parse the argument for the option, if any *
    [all...]
  /external/chromium_org/third_party/mesa/src/src/getopt/
getopt.h 47 struct option { struct
48 /* name of long option */
52 * whether option takes an argument
55 /* if not NULL, set *flag to val when option found */
62 const struct option *, int *);
64 const struct option *, int *);
  /external/e2fsprogs/include/nonunix/
getopt.h 8 License, or (at your option) any later version.
32 When `getopt' finds an option that takes an argument,
35 each non-option ARGV-element is returned here. */
46 non-option elements that the caller should itself scan.
58 /* Set to an option character which was unrecognized. */
64 of `struct option' terminated by an element containing a name which is
68 no_argument (or 0) if the option does not take an argument,
69 required_argument (or 1) if the option requires an argument,
70 optional_argument (or 2) if the option takes an optional argument.
73 to the value given in the field `val' when the option is found, bu
83 struct option struct
    [all...]
  /external/grub/lib/
getopt.h 9 Free Software Foundation; either version 2, or (at your option) any
30 When `getopt' finds an option that takes an argument,
33 each non-option ARGV-element is returned here. */
44 non-option elements that the caller should itself scan.
56 /* Set to an option character which was unrecognized. */
62 of `struct option' terminated by an element containing a name which is
66 no_argument (or 0) if the option does not take an argument,
67 required_argument (or 1) if the option requires an argument,
68 optional_argument (or 2) if the option takes an optional argument.
71 to the value given in the field `val' when the option is found, bu
81 struct option struct
    [all...]
  /external/icu4c/tools/toolutil/
uoptions.c 33 /* process an option */
34 UOption *option=NULL; local
37 /* process a long option */
42 /* search for the option string */
46 option=options+j;
50 if(option==NULL) {
51 /* no option matches */
54 option->doesOccur=1;
56 if(option->hasArg!=UOPT_NO_ARG) {
57 /* parse the argument for the option, if any *
    [all...]
  /external/mesa3d/src/getopt/
getopt.h 47 struct option { struct
48 /* name of long option */
52 * whether option takes an argument
55 /* if not NULL, set *flag to val when option found */
62 const struct option *, int *);
64 const struct option *, int *);
  /ndk/sources/host-tools/make-3.81/
getopt.h 10 Free Software Foundation; either version 2, or (at your option) any
30 When `getopt' finds an option that takes an argument,
33 each non-option ARGV-element is returned here. */
44 non-option elements that the caller should itself scan.
56 /* Set to an option character which was unrecognized. */
62 of `struct option' terminated by an element containing a name which is
66 no_argument (or 0) if the option does not take an argument,
67 required_argument (or 1) if the option requires an argument,
68 optional_argument (or 2) if the option takes an optional argument.
71 to the value given in the field `val' when the option is found, bu
81 struct option struct
    [all...]
  /prebuilts/ndk/4/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/4/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/4/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/4/platforms/android-5/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/4/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 *);

Completed in 4579 milliseconds

1 2 3 4 5 6 7 8 91011>>