Searched refs:option (Results 101 - 125 of 936) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
H A DV8HTMLOptionsCollectionCustom.cpp54 HTMLOptionElement* option = V8HTMLOptionElement::toNative(v8::Handle<v8::Object>(v8::Handle<v8::Object>::Cast(info[0]))); local
57 impl->add(option, exceptionState);
63 impl->add(option, index, exceptionState);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
H A DDropDownMenu.js41 var option = new Option(title);
42 option.id = id;
43 this.element.appendChild(option);
/external/oprofile/libabi/tests/
H A Dabi_test.cpp32 popt::option options_array[] = {
33 popt::option(db_filename, "db", 'd', "output db to file", "filename"),
34 popt::option(abi_filename, "abi", 'a', "output abi to file", "filename")
/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/llvm/include/llvm/CodeGen/
H A DRegAllocPBQP.h38 /// and the PBQP option <--> storage location map).
72 /// Returns true if the given PBQP option represents a physical register,
74 bool isPRegOption(unsigned vreg, unsigned option) const {
77 return !isSpillOption(vreg, option);
80 /// Returns true if the given PBQP option represents spilling, false
82 bool isSpillOption(unsigned vreg, unsigned option) const {
83 // We hardcode option zero as the spill option.
84 return option == 0;
90 /// Get PReg for option
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
H A Dconfig.py132 for option in cp.options('paths'):
133 self.paths[option] = self.get_list(cp, 'paths', option)
135 def get_list(self, cp, section, option):
138 The value of `section` and `option` is treated as a comma- and newline-
144 value_list = cp.get(section, option)
153 def get_line_list(self, cp, section, option):
156 The value of `section` and `option` is treated as a newline-separated
162 value_list = cp.get(section, option)
/external/eigen/bench/
H A DbenchGeometry.cpp79 #define run_vec( op, scalar, mode, option, vsize ) \
80 std::cout << #scalar << "\t " << #mode << "\t " << #option << " " << #vsize " "; \
82 typedef Transform<scalar, 3, mode, option> Trans;\
83 typedef Matrix<scalar, vsize, 1, option> Vec;\
88 #define run_trans( op, scalar, mode, option ) \
89 std::cout << #scalar << "\t " << #mode << "\t " << #option << " "; \
91 typedef Transform<scalar, 3, mode, option> Trans;\
/external/f2fs-tools/fsck/
H A Dmain.c41 int option = 0; local
48 while ((option = getopt(argc, argv, option_string)) != EOF) {
49 switch (option) {
58 MSG(0, "\tError: Unknown option %c\n",option);
75 while ((option = getopt(argc, argv, option_string)) != EOF) {
76 switch (option) {
100 MSG(0, "\tError: Unknown option %c\n", option);
/external/deqp/framework/delibs/decpp/
H A DdeCommandLine.hpp68 //! Construct generic option (string, int, boolean).
252 void addOption (const Option<OptType>& option);
299 void addOption (const OptInfo& option);
308 inline Parser& operator<< (Parser& parser, const Option<OptType>& option) argument
310 parser.addOption(option);
373 void Parser::addOption (const Option<OptType>& option) argument
377 opt.shortName = option.shortName;
378 opt.longName = option.longName;
379 opt.description = option.description;
380 opt.defaultValue = option
[all...]
/external/chromium_org/chrome/test/chromedriver/
H A Dcapabilities.cc31 const base::Value& option,
33 if (!option.GetAsBoolean(to_set))
39 const base::Value& option,
42 if (!option.GetAsString(&str))
51 const base::Value& option,
54 if (!option.GetAsString(&str))
61 const base::Value& option,
64 if (!option.GetAsDictionary(&dict))
72 const base::Value& option,
74 LOG(WARNING) << "Deprecated chrome option i
29 ParseBoolean( bool* to_set, const base::Value& option, Capabilities* capabilities) argument
38 ParseString(std::string* to_set, const base::Value& option, Capabilities* capabilities) argument
50 ParseFilePath(base::FilePath* to_set, const base::Value& option, Capabilities* capabilities) argument
60 ParseDict(scoped_ptr<base::DictionaryValue>* to_set, const base::Value& option, Capabilities* capabilities) argument
70 IgnoreDeprecatedOption( const char* option_name, const base::Value& option, Capabilities* capabilities) argument
78 IgnoreCapability(const base::Value& option, Capabilities* capabilities) argument
82 ParseLogPath(const base::Value& option, Capabilities* capabilities) argument
104 ParseMobileEmulation(const base::Value& option, Capabilities* capabilities) argument
152 ParseSwitches(const base::Value& option, Capabilities* capabilities) argument
166 ParseExtensions(const base::Value& option, Capabilities* capabilities) argument
181 ParseProxy(const base::Value& option, Capabilities* capabilities) argument
249 ParseExcludeSwitches(const base::Value& option, Capabilities* capabilities) argument
265 ParseUseRemoteBrowser(const base::Value& option, Capabilities* capabilities) argument
285 ParseLoggingPrefs(const base::Value& option, Capabilities* capabilities) argument
[all...]
/external/bison/doc/
H A Dbison.x47 option names. Long option names are indicated with
51 Abbreviations for option names are allowed as long as they
52 are unique. When a long option takes an argument, like
54 connect the option name and the argument with
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dparse-options.h43 struct option;
44 typedef int parse_opt_cb(const struct option *, const char *arg, int unset);
48 * holds the type of the option, you must have an OPTION_END last in your
52 * the character to use as a short option name, '\0' if none.
55 * the long option name, without the leading dashes, NULL if none.
61 * token to explain the kind of argument this option wants. Keep it
65 * the short help associated to what the option does.
72 * PARSE_OPT_NOARG: says that this option takes no argument, for CALLBACKs
73 * PARSE_OPT_NONEG: says that this option cannot be negated
74 * PARSE_OPT_HIDDEN this option i
86 struct option { struct
[all...]
/external/oprofile/libopt++/
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/oprofile/pp/
H A Dcommon_option.cpp42 popt::option common_options_array[] = {
43 popt::option(verbose_strings, "verbose", 'V',
46 popt::option(options::session_dir, "session-dir", '\0',
48 popt::option(options::image_path, "image-path", 'p',
50 popt::option(options::root_path, "root", 'R',
223 demangle_type handle_demangle_option(string const & option) argument
225 if (option == "none")
227 if (option == "smart")
229 if (option == "normal")
232 throw op_runtime_error("invalid option
[all...]
H A Dopgprof_options.cpp41 popt::option options_array[] = {
42 popt::option(options::gmon_filename, "output-filename", 'o',
45 popt::option(options::threshold_opt, "threshold", 't',
/external/iproute2/tc/
H A Dm_xt_old.c8 * 2 of the License, or (at your option) any later version.
60 static struct option original_opts[] = {
65 static struct option *opts = original_opts;
82 static void free_opts(struct option *local_opts)
92 static struct option *
93 merge_options(struct option *oldopts, const struct option *newopts,
96 struct option *merge;
104 merge = malloc(sizeof (struct option) * (num_new + num_old + 1));
105 memcpy(merge, oldopts, num_old * sizeof (struct option));
126 check_inverse(const char option[], int *invert, int *my_optind, int argc) argument
[all...]
/external/glide/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/external/chromium_org/chrome/browser/resources/chromeos/login/
H A Doobe_screen_network.js99 option = $('keyboard-select').querySelector(
100 'option[value="' + inputMethodId + '"]');
101 if (option)
102 option.selected = true;
/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/components/cloud_devices/common/
H A Ddescription_items_inl.h51 Option option;
52 if (!Traits::Load(*option_value, &option))
54 AddOption(option);
107 Option option;
108 if (!Traits::Load(*option_value, &option))
115 AddDefaultOption(option, is_default);
201 Option option;
202 if (!Traits::Load(*option_value, &option))
204 set_value(option);
237 Option option;
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLKeygenElement.cpp11 * version 2 of the License, or (at your option) any later version.
65 // Create a select element with one option element for each key size.
69 RefPtrWillBeRawPtr<HTMLOptionElement> option = HTMLOptionElement::create(document()); local
70 option->appendChild(Text::create(document(), keys[i]));
71 select->appendChild(option);
/external/chromium_org/third_party/mesa/src/src/mesa/program/
H A Dprogram_parser.h213 } option; member in struct:asm_parser_state
258 * Parses and processes an option string to an ARB vertex program
264 const char *option);
267 * Parses and processes an option string to an ARB fragment program
273 const char *option);
/external/chromium_org/tools/telemetry/third_party/pyserial/serial/
H A Drfc2217.py51 # rfc2217://<host>:<port>[/option[/option...]]
57 # Without this option it expects that the server sends notifications
226 """Manage a single telnet option, keeps track of DO/DONT WILL/WONT."""
228 def __init__(self, connection, name, option, send_yes, send_no, ack_yes, ack_no, initial_state, activation_callback=None):
230 Initialize option.
233 :param send_yes: what to send when option is to be enabled.
234 :param send_no: what to send when option is to be disabled.
235 :param ack_yes: what to expect when remote agrees on option.
236 :param ack_no: what to expect when remote disagrees on option
[all...]
/external/mesa3d/src/mesa/program/
H A Dprogram_parser.h213 } option; member in struct:asm_parser_state
258 * Parses and processes an option string to an ARB vertex program
264 const char *option);
267 * Parses and processes an option string to an ARB fragment program
273 const char *option);
/external/chromium_org/chrome/browser/ui/webui/options/chromeos/
H A Dkeyboard_handler.cc102 base::ListValue* option = new base::ListValue(); local
103 option->Append(new base::FundamentalValue(value));
104 option->Append(new base::StringValue(l10n_util::GetStringUTF16(
106 list_value->Append(option);

Completed in 1116 milliseconds

1234567891011>>