Searched defs:option (Results 1 - 25 of 174) sorted by relevance

1234567

/external/oprofile/libopt++/
H A Dpopt_options.h3 * 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
79 class option { class in namespace:popt
[all...]
H A Dpopt_options.cpp3 * option parsing
25 * option_base - base class for implementation of a command line option
27 * Every command line option added before calling parse_options()
33 * option_base - construct an option with the given options.
34 * @param option_name name part of long form e.g. --option
36 * @param help_str short description of the option
125 * option<void> - a binary option
127 * Use this option type for constructing specified / not-specified
146 * option<in
213 option::option(bool & value, char const * name, char short_name, char const * help) function in class:popt::option
221 option::option(int & value, char const * name, char short_name, function in class:popt::option
231 option::option(string & value, char const * name, char short_name, function in class:popt::option
241 option::option(vector<string> & value, char const * name, char short_name, function in class:popt::option
[all...]
/external/libpcap/
H A Dbpf_dump.c34 bpf_dump(struct bpf_program *p, int option) argument
41 if (option > 2) {
49 if (option > 1) {
/external/tcpdump/
H A Dbpf_dump.c38 bpf_dump(struct bpf_program *p, int option) argument
45 if (option > 2) {
53 if (option > 1) {
/external/webkit/Tools/Scripts/
H A Dbuild-webkit128 { 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
456 sub option($$$) subroutine
[all...]
/external/chromium/chrome/browser/ui/webui/options/chromeos/
H A Dlanguage_chewing_handler.cc61 // 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);
H A Dlanguage_hangul_handler.cc37 ListValue* option = new ListValue(); local
38 option->Append(Value::CreateStringValue(
40 option->Append(Value::CreateStringValue(l10n_util::GetStringUTF16(
42 keyboard_layout_list->Append(option);
H A Dlanguage_mozc_handler.cc60 ListValue* option = new ListValue(); local
61 option->Append(CreateValue(j));
62 option->Append(CreateValue(j));
63 list_value->Append(option);
H A Dlanguage_pinyin_handler.cc52 ListValue* option = new ListValue(); local
53 option->Append(Value::CreateIntegerValue(
56 option->Append(Value::CreateStringValue(l10n_util::GetStringUTF16(
59 list_value->Append(option);
H A Dlanguage_customize_modifier_keys_handler.cc69 ListValue* option = new ListValue(); local
70 option->Append(Value::CreateIntegerValue(value));
71 option->Append(Value::CreateStringValue(l10n_util::GetStringUTF16(
73 list_value->Append(option);
H A Dlanguage_options_util.h69 ListValue* option = new ListValue(); local
70 option->Append(CreateValue(
72 option->Append(Value::CreateStringValue(l10n_util::GetStringUTF16(
74 list_value->Append(option);
/external/e2fsprogs/include/nonunix/
H A Dgetopt.h8 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 i
83 struct option struct
[all...]
/external/grub/lib/
H A Dgetopt.h9 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 i
81 struct option struct
[all...]
/external/jdiff/src/jdiff/
H A DOptions.java20 * Returns the "length" of a given option. If an option takes no
28 * are not case-sensitive, use toLowerCase() on the option string
32 * @param option a String containing an option
33 * @return an int telling how many components that option has
35 public static int optionLength(String option) { argument
36 String opt = option.toLowerCase();
110 * the first item in any array is the option, and subsequent items in
111 * that array are its arguments. So, if -print is an option tha
[all...]
/external/webkit/Source/WebCore/bindings/js/
H A DJSHTMLSelectElementCustom.cpp8 * 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/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
H A Dsignalbar.cpp27 const QStyleOptionViewItem &option,
34 QStyledItemDelegate::paint(painter, option, index);
54 opts.rect = option.rect;
26 paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const argument
/external/icu4c/test/intltest/
H A Didnaconf.h42 int option; // 0 UseSTD3ASCIIRules, 1 ALLOW_UNASSIGNED member in class:IdnaConfTest
/external/icu4c/tools/toolutil/
H A Duoptions.c33 /* 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, i
[all...]
/external/iptables/include/linux/netfilter/
H A Dxt_dccp.h21 __u8 option; member in struct:xt_dccp_info
/external/kernel-headers/original/linux/netfilter/
H A Dxt_dccp.h19 u_int8_t option; member in struct:xt_dccp_info
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8HTMLOptionElementConstructor.cpp78 RefPtr<HTMLOptionElement> option = HTMLOptionElement::createForJSConstructor(document, data, value, defaultSelected, selected, ec); local
83 V8DOMWrapper::setDOMWrapper(args.Holder(), &V8HTMLOptionElementConstructor::info, option.get());
84 option->ref();
85 V8DOMWrapper::setJSWrapperForDOMNode(option.get(), v8::Persistent<v8::Object>::New(args.Holder()));
/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DPlatformCanvas.cpp90 PlatformCanvas::Painter::Painter(PlatformCanvas* canvas, PlatformCanvas::Painter::TextOption option) argument
95 m_skiaContext->setDrawingToImageBuffer(option == GrayscaleText);
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebpluginfactory.cpp7 version 2 of the License, or (at your option) any later version.
232 This virtual function can be reimplemented in a QWebPluginFactory subclass to provide support for extensions. The \a option
245 bool QWebPluginFactory::extension(Extension extension, const ExtensionOption *option, ExtensionReturn *output) argument
248 Q_UNUSED(option)
/external/chromium/chrome/browser/ui/webui/options/
H A Dclear_browser_data_handler.cc85 ListValue* option = new ListValue(); local
86 option->Append(Value::CreateIntegerValue(i));
87 option->Append(Value::CreateStringValue(label_string));
88 time_list->Append(option);
/external/dbus/tools/
H A Ddbus-uuidgen.c9 * (at your option) any later version.
53 const char *option,
58 if (strlen(arg) < strlen(option))
61 fn = arg + strlen(option);
52 get_arg(const char *arg, const char *option, const char **value_p) argument

Completed in 447 milliseconds

1234567