Searched refs:option (Results 1 - 25 of 955) sorted by relevance

1234567891011>>

/external/dhcpcd/
H A Ddhcpcd.conf12 option domain_name_servers, domain_name, domain_search, host_name
13 option classless_static_routes
15 option ntp_servers
17 option interface_mtu
H A Dandroid.conf9 option subnet_mask, routers, domain_name_servers, domain_name, domain_search
/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/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/chromium_org/third_party/WebKit/Source/core/css/
H A DthemeChromiumSkia.css35 option {
/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/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/chromium_org/chrome/test/chromedriver/js/
H A Dis_option_element_toggleable.js5 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/chromium_org/third_party/cython/src/Cython/Compiler/
H A DCmdLine.py70 def get_param(option):
71 tail = option[2:]
81 option = pop_arg()
82 if option in ("-V", "--version"):
84 elif option in ("-l", "--create-listing"):
86 elif option in ("-+", "--cplus"):
88 elif option == "--embed":
90 elif option.startswith("--embed="):
91 Options.embed = option[8:]
92 elif option
[all...]
/external/wpa_supplicant_8/wpa_supplicant/examples/
H A Dudhcpd-p2p.conf81 # keyword 'opt' or 'option'. If an option can take multiple items, such
82 # as the dns option, they can be listed on the same line, or multiple
83 # lines. The only option with a default is 'lease'.
87 option subnet 255.255.255.0
88 option domain atherosowl.com
89 option lease 864000 # 10 days of seconds
/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/smack/src/org/xbill/DNS/
H A DOptions.java51 String option = token.substring(0, index);
53 set(option, value);
65 /** Sets an option to "true" */
67 set(String option) { argument
70 table.put(option.toLowerCase(), "true");
73 /** Sets an option to the the supplied value */
75 set(String option, String value) { argument
78 table.put(option.toLowerCase(), value.toLowerCase());
81 /** Removes an option */
83 unset(String option) { argument
91 check(String option) argument
99 value(String option) argument
109 intValue(String option) argument
[all...]
/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/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dcgroup.h4 struct option;
15 extern int parse_cgroups(const struct option *opt, const char *str, int unset);
/external/libnl/lib/route/
H A Dpktloc_grammar.l10 %option 8bit
11 %option reentrant
12 %option warn
13 %option noyywrap
14 %option nounput
15 %option bison-bridge
16 %option bison-locations
17 %option prefix="pktloc_"
/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/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/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
H A DTargetsComboBoxController.js31 var option = this._selectElement.createChild("option");
32 option.text = target.name();
33 option.__target = target;
34 this._targetToOption.set(target, option);
36 this._selectElement.selectedIndex = Array.prototype.indexOf.call(/** @type {?} */ (this._selectElement), option);
46 var option = this._targetToOption.remove(target);
47 this._selectElement.removeChild(option);
73 var option = /** @type {!Element} */ (this._targetToOption.get(target));
74 this._select(option);
[all...]
/external/chromium_org/chrome/browser/resources/print_preview/data/ticket_items/
H A Dduplex.js42 cap.option.forEach(function(option) {
43 hasLongEdgeOption = hasLongEdgeOption || option.type == 'LONG_EDGE';
44 hasSimplexOption = hasSimplexOption || option.type == 'NO_DUPLEX';
52 var defaultOptions = cap.option.filter(function(option) {
53 return option.is_default;
H A Dlandscape.js64 cap.option.forEach(function(option) {
66 option.type == 'AUTO' ||
67 option.type == 'PORTRAIT';
68 hasLandscapeOption = hasLandscapeOption || option.type == 'LANDSCAPE';
83 var defaultOptions = cap.option.filter(function(option) {
84 return option.is_default;
119 return cap.option.some(function(option) {
[all...]
H A Dcolor.js54 capability.option.forEach(function(option) {
55 hasColor = hasColor || (Color.COLOR_TYPES_.indexOf(option.type) >= 0);
57 (Color.MONOCHROME_TYPES_.indexOf(option.type) >= 0);
72 /** @return {Object} Color option corresponding to the current value. */
75 var options = capability ? capability.option : null;
80 var matchingOptions = options.filter(function(option) {
81 return option.type == typesToLookFor[i];
95 this.getDefaultColorOption_(capability.option) : null;
104 // option tha
[all...]
/external/stlport/stlport/stl/config/
H A D_warnings_off.h45 # 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
/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/oprofile/pp/
H A Dopannotate_options.cpp55 popt::option options_array[] = {
56 popt::option(demangle_option, "demangle", 'D',
59 popt::option(options::output_dir, "output-dir", 'o',
61 popt::option(options::search_dirs, "search-dirs", 'd',
63 popt::option(options::base_dirs, "base-dirs", 'b',
65 popt::option(include_file, "include-file", '\0',
67 popt::option(exclude_file, "exclude-file", '\0',
69 popt::option(include_symbols, "include-symbols", 'i',
71 popt::option(exclude_symbols, "exclude-symbols", 'e',
73 popt::option(option
[all...]
/external/valgrind/main/coregrind/m_mach/
H A Dmach_msg.c52 mach_msg_option_t option,
60 mach_msg(msg, option, send_size, rcv_size, rcv_name, timeout, notify)
62 mach_msg_option_t option;
78 * We refrain from passing the option bits that we implement
80 * the kernel's fast paths (when it checks the option value).
83 mr = mach_msg_trap(msg, option &~ LIBMACH_OPTIONS,
89 if ((option & MACH_SEND_INTERRUPT) == 0)
92 option &~ LIBMACH_OPTIONS,
96 if ((option & MACH_RCV_INTERRUPT) == 0)
99 option
[all...]

Completed in 2045 milliseconds

1234567891011>>