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

1234567891011>>

/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...]
/external/libpcap/
H A Dbpf_dump.c34 bpf_dump(const struct bpf_program *p, int option) argument
41 if (option > 2) {
49 if (option > 1) {
/external/tcpdump/
H A Dbpf_dump.c38 bpf_dump(const struct bpf_program *p, int option) argument
45 if (option > 2) {
53 if (option > 1) {
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
H A DV8HTMLOptionsCollectionCustom.cpp53 HTMLOptionElement* option = V8HTMLOptionElement::toImpl(v8::Handle<v8::Object>(v8::Handle<v8::Object>::Cast(info[0]))); local
56 impl->add(option, exceptionState);
62 impl->add(option, index, exceptionState);
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLDataListOptionsCollection.h35 const HTMLOptionElement& option = toHTMLOptionElement(element); local
36 if (!option.isDisabledFormControl() && !option.value().isEmpty())
/external/chromium_org/third_party/mesa/src/src/getopt/
H A Dgetopt.h47 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/chromium_org/third_party/mesa/src/src/mesa/program/
H A Dprogram_parse_extra.c50 if (state->option.NV_fragment) {
72 if (state->option.NV_fragment) {
152 _mesa_ARBvp_parse_option(struct asm_parser_state *state, const char *option) argument
154 if (strcmp(option, "ARB_position_invariant") == 0) {
155 state->option.PositionInvariant = 1;
164 _mesa_ARBfp_parse_option(struct asm_parser_state *state, const char *option) argument
171 if (strncmp(option, "ARB_", 4) == 0) {
174 option += 4;
177 if (strncmp(option, "fog_", 4) == 0) {
178 option
[all...]
/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/f2fs-tools/mkfs/
H A Df2fs_format_main.c46 int32_t option=0; local
48 while ((option = getopt(argc,argv,option_string)) != EOF) {
49 switch (option) {
91 MSG(0, "\tError: Unknown option %c\n",option);
/external/fio/lib/
H A Dgetopt.h10 struct option { struct
23 int getopt_long_only(int, char *const *, const char *, const struct option *, int *);
/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/mesa3d/src/getopt/
H A Dgetopt.h47 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/mesa3d/src/mesa/program/
H A Dprogram_parse_extra.c50 if (state->option.NV_fragment) {
72 if (state->option.NV_fragment) {
152 _mesa_ARBvp_parse_option(struct asm_parser_state *state, const char *option) argument
154 if (strcmp(option, "ARB_position_invariant") == 0) {
155 state->option.PositionInvariant = 1;
164 _mesa_ARBfp_parse_option(struct asm_parser_state *state, const char *option) argument
171 if (strncmp(option, "ARB_", 4) == 0) {
174 option += 4;
177 if (strncmp(option, "fog_", 4) == 0) {
178 option
[all...]
/external/tcpdump/win32/Include/
H A Dgetopt.h9 License, or (at your option) any later version.
29 When `getopt' finds an option that takes an argument,
32 each non-option ARGV-element is returned here. */
45 non-option elements that the caller should itself scan.
61 /* Set to an option character which was unrecognized. */
67 of `struct option' terminated by an element containing a name which is
71 no_argument (or 0) if the option does not take an argument,
72 required_argument (or 1) if the option requires an argument,
73 optional_argument (or 2) if the option takes an optional argument.
76 to the value given in the field `val' when the option i
86 struct option struct
[all...]
/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/chromium_org/chrome/browser/chromeos/extensions/file_manager/
H A Dprivate_api_dialog.cc43 file_manager::util::GetSelectedFileInfoLocalPathOption option = local
46 option = params->for_opening ?
55 option, local
/external/chromium_org/chrome/browser/chromeos/fileapi/
H A Dfile_system_backend_unittest.cc222 const storage::FileSystemMountOption option = local
227 "b", type, option, base::FilePath(FPL("/a/b"))));
229 "y", type, option, base::FilePath(FPL("/z/y"))));
231 "n", type, option, base::FilePath(FPL("/m/n"))));
235 "gb", type, option, base::FilePath(FPL("/a/b"))));
238 "gz", type, option, base::FilePath(FPL("/z"))));
240 "gp", type, option, base::FilePath(FPL("/m/n/o/p"))));
/external/chromium_org/chrome/installer/util/
H A Dfake_product_state.h28 void AddUninstallSwitch(const std::string& option) { argument
29 uninstall_command_.AppendSwitch(option);
/external/chromium_org/sandbox/win/src/
H A Dunload_dll_test.cc21 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/test/intltest/
H A Didnaconf.h42 int option; // 0 UseSTD3ASCIIRules, 1 ALLOW_UNASSIGNED member in class:IdnaConfTest
/external/chromium_org/third_party/icu/source/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/chromium_org/third_party/npapi/npspy/extern/nspr/
H A Dplgetopt.h52 PL_OPT_OK, /* all's well with the option */
54 PL_OPT_BAD /* invalid option (and value) */
59 char option; /* the name of the option */ member in struct:PLOptState
60 const char *value; /* the value of that option | NULL */
/external/icu/icu4c/source/test/intltest/
H A Didnaconf.h42 int option; // 0 UseSTD3ASCIIRules, 1 ALLOW_UNASSIGNED member in class:IdnaConfTest
/external/icu/icu4c/source/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

Completed in 2022 milliseconds

1234567891011>>