HomeSort by relevance Sort by last modified time
    Searched defs:option (Results 201 - 225 of 306) sorted by null

1 2 3 4 5 6 7 891011>>

  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
params.h 10 Software Foundation; either version 3, or (at your option) any later
46 const char *const option; member in struct:param_info
57 /* A short description of the option. */
86 #define DEFPARAM(enumerator, option, msgid, default, min, max) \
105 option processing. */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/
Xresource.h 324 * Command line option mapping to resource entries
330 XrmoptionIsArg, /* Value is the option string itself */
331 XrmoptionStickyArg, /* Value is characters immediately following option */
334 XrmoptionSkipArg, /* Ignore this option and the next argument in argv */
335 XrmoptionSkipLine, /* Ignore this option and the rest of argv */
336 XrmoptionSkipNArgs /* Ignore this option and the next
341 char *option; /* Option abbreviation in argv */ member in struct:__anon25746
343 XrmOptionKind argKind; /* Which style of option it is */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xresource.h 324 * Command line option mapping to resource entries
330 XrmoptionIsArg, /* Value is the option string itself */
331 XrmoptionStickyArg, /* Value is characters immediately following option */
334 XrmoptionSkipArg, /* Ignore this option and the next argument in argv */
335 XrmoptionSkipLine, /* Ignore this option and the rest of argv */
336 XrmoptionSkipNArgs /* Ignore this option and the next
341 char *option; /* Option abbreviation in argv */ member in struct:__anon27336
343 XrmOptionKind argKind; /* Which style of option it is */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xresource.h 324 * Command line option mapping to resource entries
330 XrmoptionIsArg, /* Value is the option string itself */
331 XrmoptionStickyArg, /* Value is characters immediately following option */
334 XrmoptionSkipArg, /* Ignore this option and the next argument in argv */
335 XrmoptionSkipLine, /* Ignore this option and the rest of argv */
336 XrmoptionSkipNArgs /* Ignore this option and the next
341 char *option; /* Option abbreviation in argv */ member in struct:__anon28851
343 XrmOptionKind argKind; /* Which style of option it is */
  /external/dhcpcd/
dhcpcd.h 88 char *option; member in struct:ra_opt
dhcp.c 59 /* Our aggregate option buffer.
65 uint8_t option; member in struct:dhcp_opt
206 for (opt = dhcp_opts; opt->option; opt++)
208 printf("%03d %s\n", opt->option, opt->var);
221 for (opt = dhcp_opts; opt->option; opt++) {
231 if (opt->option == n)
242 opt->option);
245 opt->option);
249 if (!opt->option) {
260 valid_length(uint8_t option, int dl, int *type
    [all...]
  /external/ipsec-tools/src/racoon/
sockmisc.c 305 int option = (family == AF_INET) ? IP_IPSEC_POLICY : IPV6_IPSEC_POLICY; local
307 if (setsockopt(s, level, option, &p, len) == -1) {
312 if (setsockopt(s, level, option, &p, len) == -1) {
  /external/linux-tools-perf/util/
parse-options.h 53 struct option;
54 typedef int parse_opt_cb(const struct option *, const char *arg, int unset);
58 * holds the type of the option, you must have an OPTION_END last in your
62 * the character to use as a short option name, '\0' if none.
65 * the long option name, without the leading dashes, NULL if none.
71 * token to explain the kind of argument this option wants. Keep it
75 * the short help associated to what the option does.
82 * PARSE_OPT_NOARG: says that this option takes no argument, for CALLBACKs
83 * PARSE_OPT_NONEG: says that this option cannot be negated
84 * PARSE_OPT_HIDDEN this option is skipped in the default usage, showed i
96 struct option { struct
    [all...]
  /external/oprofile/libpopt/
popt.h 75 #define POPT_CBFLAG_SKIPOPTION 0x10000000 /*!< don't callback with option */
76 #define POPT_CBFLAG_CONTINUE 0x08000000 /*!< continue callbacks with option */
84 #define POPT_ERROR_BADOPT -11 /*!< unknown option */
145 struct poptOption option; /*!< alias/exec name(s) and description. */ member in struct:poptItem_s
217 * @param opt option that triggered callback
234 * @param options address of popt option table
255 * Return value of next option found.
257 * @return next option val, -1 on last item, POPT_ERROR_* on error
264 * Return next option argument (if any).
266 * @return option argument, NULL if no argument is availabl
    [all...]
  /external/oprofile/
popt.h 75 #define POPT_CBFLAG_SKIPOPTION 0x10000000 /*!< don't callback with option */
76 #define POPT_CBFLAG_CONTINUE 0x08000000 /*!< continue callbacks with option */
84 #define POPT_ERROR_BADOPT -11 /*!< unknown option */
145 struct poptOption option; /*!< alias/exec name(s) and description. */ member in struct:poptItem_s
217 * @param opt option that triggered callback
234 * @param options address of popt option table
255 * Return value of next option found.
257 * @return next option val, -1 on last item, POPT_ERROR_* on error
264 * Return next option argument (if any).
266 * @return option argument, NULL if no argument is availabl
    [all...]
  /external/qemu/
qemu-option.c 2 * Commandline option parsing functions
32 #include "qemu-option.h"
36 * Extracts the name of an option from the parameter string (p points at the
37 * first byte of the option name)
39 * The option name is delimited by delim (usually , or =) or the string end
40 * and is copied into buf. If the option name is longer than buf_size, it is
43 * The return value is the position of the delimiter/zero byte after the option
63 * Extracts the value of an option from the parameter string p (p points at the
64 * first byte of the option value)
67 * delimiter is fixed to be comma which starts a new option. To specify a
95 char option[128]; local
776 char option[128], value[1024]; local
    [all...]
  /external/smali/smali/src/main/java/org/jf/smali/
main.java 116 Option[] options = commandLine.getOptions();
119 Option option = options[i]; local
120 String opt = option.getOpt();
365 Option versionOption = OptionBuilder.withLongOpt("version")
369 Option helpOption = OptionBuilder.withLongOpt("help")
373 Option outputOption = OptionBuilder.withLongOpt("output")
379 Option allowOdexOption = OptionBuilder.withLongOpt("allow-odex-instructions")
385 Option apiLevelOption = OptionBuilder.withLongOpt("api-level")
392 Option dumpOption = OptionBuilder.withLongOpt("dump-to"
    [all...]
  /external/webkit/Source/WebCore/bindings/js/
JSDOMWindowCustom.cpp 7 * version 2 of the License, or (at your option) any later version.
509 JSValue JSDOMWindow::option(ExecState* exec) const function in class:WebCore::JSDOMWindow
  /external/webkit/Source/WebCore/html/
HTMLSelectElement.cpp 13 * version 2 of the License, or (at your option) any later version.
115 // The select element has no placeholder label option if it has an attribute "multiple" specified or a display size of non-1.
133 HTMLOptionElement* option = static_cast<HTMLOptionElement*>(listItems()[listIndex]);
134 return !option->disabled() && !listIndex && option->value().isEmpty();
144 // If a non-placeholer label option is selected (firstSelectionIndex > 0), it's not value-missing.
200 void HTMLSelectElement::remove(HTMLOptionElement* option)
202 if (option->ownerSelectElement() != this)
206 option->remove(ec);
223 // find the option with value() matching the given paramete
492 RefPtr<Element> option = document()->createElement(optionTag, false); local
    [all...]
  /system/extras/tests/memtest/
memtest.cpp 139 int option = 0; local
141 if (!strcmp(argv[1], "perf")) option = 0;
142 else if (!strcmp(argv[1], "test")) option = 1;
154 if (option == 0) {
210 } else if (option == 1) {
268 int option = 0; local
270 if (!strcmp(argv[1], "perf")) option = 0;
271 else if (!strcmp(argv[1], "test")) option = 1;
280 if (option == 0) {
326 } else if (option == 1)
405 int option = 0; local
518 int option = 0; local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.ecf.identity_3.1.0.v20100529-0735.jar 
  /external/icu4c/test/intltest/
convtest.cpp 90 const char *option; local
182 option=callback==NULL ? cbopt : cbopt+1;
183 if(*option==0) {
184 option=NULL;
195 ToUnicodeCase(cc, callback, option);
211 const char *option; local
342 option=callback==NULL ? cbopt : cbopt+1;
343 if(*option==0) {
344 option=NULL;
357 FromUnicodeCase(cc, callback, option);
    [all...]
  /external/webkit/Source/WebCore/dom/
SelectElement.cpp 7 * version 2 of the License, or (at your option) any later version.
81 // Valid means that it is enabled and an option element.
134 // If there is a valid option item one page away, the index is chosen.
135 // If there is no exact one page away valid option, returns startIndex or the most far index.
332 // In conforming HTML code, only <optgroup> and <option> will be found
346 // return the number of the first option selected
432 int optionIndex = 0; // actual index of option not counting OPTGROUP entries that may be in list
529 // option as fallback. This behavior matches to other browsers.
721 OptionElement* option = toOptionElement(clickedElement); local
722 if (option) {
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
ScriptsPanel.js 266 // Option we just added is the only option in files select.
280 var option = document.createElement("option"); variable
281 option.text = sourceFile.url ? WebInspector.displayNameForURL(sourceFile.url) : WebInspector.UIString("(program)");
283 option.addStyleClass("extension-script");
290 var insertionIndex = insertionIndexForObjectInListSortedByFunction(option, select.childNodes, optionCompare);
292 select.appendChild(option);
294 select.insertBefore(option, select.childNodes.item(insertionIndex));
296 option._sourceFileId = sourceFileId
    [all...]
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
ChromeClientQt.cpp 576 QWebPage::ChooseMultipleFilesExtensionOption option; local
577 option.parentFrame = QWebFramePrivate::kit(frame);
581 option.suggestedFileNames += fileChooser->filenames()[i];
584 m_webPage->extension(QWebPage::ChooseMultipleFilesExtension, &option, &output);
  /libcore/luni/src/test/java/libcore/java/net/
SocketTest.java 144 public int option; field in class:SocketTest.MySocketImpl
169 public void setOption(int option, Object value) throws SocketException {
170 this.option = option;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
scc.h 153 char option; /* command for function port */ member in struct:scc_hw_config
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
scc.h 153 char option; /* command for function port */ member in struct:scc_hw_config
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
scc.h 153 char option; /* command for function port */ member in struct:scc_hw_config
  /external/icu4c/i18n/
ucol_tok.cpp 271 /* I'd surely be lenient with the option arguments */
591 * Reads an option and matches the option name with the predefined options. (Case-insensitive.)
593 * @param end Pointer to the last valid pointer beyond which the option will not extend.
594 * @param optionArg Address of the pointer at which the options start (after the option name)
595 * @return The index of the option, or -1 if the option is not valid.
608 *optionArg = start+rulesOptions[i].optionLen; /* End of option name; start of the options */
618 i = -1; // didn't find an option
2225 char option[50]; local
    [all...]

Completed in 1999 milliseconds

1 2 3 4 5 6 7 891011>>