HomeSort by relevance Sort by last modified time
    Searched defs:option (Results 1 - 25 of 306) 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...]
  /external/webkit/Source/WebCore/bindings/js/
JSHTMLSelectElementCustom.cpp 8 * version 2 of the License, or (at your option) any later version.
39 // The remove function can take either an option object or the index of an option.
40 if (HTMLOptionElement* option = toHTMLOptionElement(exec->argument(0)))
41 select.remove(option);
54 HTMLOptionElement* option = toHTMLOptionElement(value); local
55 if (!option)
58 select->setOption(index, option, ec);
  /external/webkit/Tools/Scripts/
build-webkit 128 { option => "3d-canvas", desc => "Toggle 3D canvas (WebGL) support",
131 { option => "3d-rendering", desc => "Toggle 3D rendering support",
134 { option => "accelerated-2d-canvas", desc => "Toggle accelerated 2D canvas support",
137 { option => "blob", desc => "Toggle Blob support",
140 { option => "channel-messaging", desc => "Toggle MessageChannel and MessagePort support",
143 { option => "client-based-geolocation", desc => "Toggle client-based Geolocation support",
146 { option => "coverage", desc => "Toggle code coverage support",
149 { option => "database", desc => "Toggle Database Support",
152 { option => "datagrid", desc => "Toggle Datagrid Support",
155 { option => "datalist", desc => "Toggle HTML5 datalist support"
456 sub option($$$) subroutine
    [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);
  /bionic/libc/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 *);
  /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/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...]
  /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 *);
  /prebuilts/ndk/4/platforms/android-8/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/5/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/6/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/6/platforms/android-3/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/7/platforms/android-14/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 754 milliseconds

1 2 3 4 5 6 7 8 91011>>