HomeSort by relevance Sort by last modified time
    Searched defs:option (Results 51 - 75 of 1297) sorted by null

1 23 4 5 6 7 8 91011>>

  /test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/util/
OptionHelper.java 18 import com.android.tradefed.config.Option;
29 * Helper class for manipulating fields with @option annotations.
37 * that have the {@link Option} annotation.
39 * @param object An object with @option-annotated fields.
50 if (declaredField.isAnnotationPresent(Option.class)) {
58 * Retrieve a {@link Set} of {@link Option} names present on the given
61 * @param object An object with @option-annotated fields.
68 Option option = declaredField.getAnnotation(Option.class) local
85 Option option = declaredField.getAnnotation(Option.class); local
    [all...]
  /bionic/libc/kernel/uapi/linux/netfilter/
xt_tcpudp.h 25 __u8 option; member in struct:xt_tcp
  /device/generic/goldfish/wifi/ipv6proxy/
packet.cpp 77 nd_opt_hdr* option = reinterpret_cast<nd_opt_hdr*>(options); local
78 // Option length is in units of 8 bytes, multiply by 8 to get bytes
79 if (options + option->nd_opt_len * 8u <= data + size) {
80 mFirstOpt = option;
129 // The next option extends beyond the message data
  /device/linaro/bootloader/arm-trusted-firmware/tools/fiptool/
win_posix.h 60 /* Legitimate values for option.has_arg. */
67 /* Long option table entry for get_opt_long. */
68 struct option { struct
69 /* The name of the option. */
73 * Indicates whether the option takes an argument.
78 /* If not null, when option present, *flag is set to val. */
82 * The value associated with this option to return
89 * This variable is set by getopt to point at the value of the option
96 * if it encounters an unspecified option, or a missing argument.
103 * argv array to be processed. Once getopt has found all of the option
    [all...]
  /external/ImageMagick/utilities/
magick.c 163 *option;
165 option=GetImageOption(image_info,"compare:dissimilar");
166 exit_code=IsStringTrue(option) ? 1 : 0;
161 *option; local
  /external/autotest/frontend/client/src/autotest/common/ui/
ExtendedListBox.java 28 OptionElement option) /*-{
29 select.appendChild(option);
38 OptionElement option = Document.get().createOptionElement(); local
39 setOptionText(option, name, null);
40 option.setValue(value);
41 selectAppend(select, option);
  /external/iproute2/include/uapi/linux/netfilter/
xt_tcpudp.h 11 __u8 option; /* TCP Option iff non-zero*/ member in struct:xt_tcp
21 #define XT_TCP_INV_OPTION 0x08 /* Invert the sense of option test. */
  /external/iptables/include/linux/netfilter/
xt_tcpudp.h 10 __u8 option; /* TCP Option iff non-zero*/ member in struct:xt_tcp
20 #define XT_TCP_INV_OPTION 0x08 /* Invert the sense of option test. */
  /external/kernel-headers/original/uapi/linux/netfilter/
xt_tcpudp.h 11 __u8 option; /* TCP Option iff non-zero*/ member in struct:xt_tcp
21 #define XT_TCP_INV_OPTION 0x08 /* Invert the sense of option test. */
  /external/libcups/filter/
commandtops.c 131 ppd_option_t *option; /* Current option in PPD */ local
193 * Then loop through every option in the PPD file and ask for the current
199 for (option = ppdFirstOption(ppd); option; option = ppdNextOption(ppd))
202 * See if we have a query command for this option...
205 snprintf(buffer, sizeof(buffer), "?%s", option->keyword);
209 fprintf(stderr, "DEBUG: Skipping %s option...\n", option->keyword)
    [all...]
  /external/ltp/include/old/
test.h 98 * MAP_PRIVATE_EXCEPT_UCLINUX instead, which will skip the option on uClinux.
132 char *option; /* Valid option string (one option only) like "a:" */ member in struct:__anon28504
133 int *flag; /* Pointer to location to set true if option given */
218 * @extra_opt: extra mkfs option which is passed after the device name
  /external/protobuf/src/google/protobuf/util/
type_resolver_util_test.cc 58 using google::protobuf::Option;
131 bool HasBoolOption(const RepeatedPtrField<Option>& options,
134 const Option& option = options.Get(i); local
135 if (option.name() == name) {
137 if (option.value().UnpackTo(&bool_value) &&
  /external/swiftshader/src/Shader/
SamplerCore.hpp 41 SamplerFunction(SamplerMethod method, SamplerOption option = None) : method(method), option(option) {}
45 const SamplerOption option; member in struct:sw::SamplerFunction
  /external/syslinux/com32/lua/src/
dhcp.c 67 * The Options table returns the Option code as the key except where there
69 * is added to allow individual access to each Option value.
81 * Options that can have a list of values, but contain only one (like Option 6)
102 ip_address_list(lua_State *L, uint8_t* value, uint8_t len, uint8_t option )
111 sprintf(op_name, "%u", option);
118 sprintf(op_name, "%u.%d", option, done+1);
148 uint8_t option; local
153 option = *ptr++;
157 switch (option) {
194 ip_address_list(L, value, len, option);
    [all...]
  /external/syslinux/com32/modules/
whichsys.c 9 * (at your option) any later version; incorporated herein by reference.
35 bool option; member in struct:syslinux_parameter
93 isolinux.option = true;
98 pxelinux.option = true;
103 syslinux.option = true;
112 isolinux.option ? boot_args(isolinux.arg[0]) : fprintf(stderr, "No command specified for ISOLINUX.\n\n"); usage();
115 pxelinux.option ? boot_args(pxelinux.arg[0]) : fprintf(stderr, "No command specified for PXELINUX.\n\n"); usage();
118 syslinux.option ? boot_args(syslinux.arg[0]) : fprintf(stderr, "No command specified for SYSLINUX.\n\n"); usage();
  /external/syslinux/gpxe/src/core/
getopt.c 33 * Option argument
36 * option, if applicable.
41 * Current option index
44 * @c optind is the index to the first element that is not an option.
49 * Current option character index
56 * Unrecognised option
58 * When an unrecognised option is encountered, the actual option
64 * Get option argument from argv[] array
68 * @ret argument Option argument, or NUL
230 int option; local
    [all...]
  /external/tensorflow/tensorflow/core/util/
tensor_slice_writer.cc 39 table::Options option; local
40 option.compression = table::kNoCompression;
41 builder_.reset(new table::TableBuilder(option, f));
  /frameworks/base/services/accessibility/java/com/android/server/accessibility/
AccessibilityShellCommand.java 77 final String option = getNextOption(); local
78 if (option != null) {
79 if (option.equals("--user")) {
82 getErrPrintWriter().println("Unknown option: " + option);
  /frameworks/base/services/core/java/com/android/server/accounts/
AccountManagerServiceShellCommand.java 77 final String option = getNextOption(); local
78 if (option != null) {
79 if (option.equals("--user")) {
82 getErrPrintWriter().println("Unknown option: " + option);
  /frameworks/base/services/print/java/com/android/server/print/
PrintShellCommand.java 87 final String option = getNextOption(); local
88 if (option != null) {
89 if (option.equals("--user")) {
92 getErrPrintWriter().println("Unknown option: " + option);
  /frameworks/wilhelm/src/
entry.cpp 59 const SLEngineOption *option = pEngineOptions; local
61 for (i = 0; i < numOptions; ++i, ++option) {
62 switch (option->feature) {
64 threadSafe = SL_BOOLEAN_FALSE != (SLboolean) option->data; // normalize
67 lossOfControlGlobal = SL_BOOLEAN_FALSE != (SLboolean) option->data; // normalize
70 SL_LOGE("unknown engine option: feature=%u data=%u",
71 option->feature, option->data);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/netfilter/
xt_tcpudp.h 10 __u8 option; /* TCP Option iff non-zero*/ member in struct:xt_tcp
20 #define XT_TCP_INV_OPTION 0x08 /* Invert the sense of option test. */
  /system/libufdt/utils/src/
mkdtimg_create.c 41 static int parse_arg(char **option, char **value, char *arg) {
43 /* This is not a option */
44 *option = NULL;
48 /* An option must start with -- */
53 return parse_option(option, value, arg + 2);
64 char *option, *value; local
65 if (parse_arg(&option, &value, arg) != 0) {
70 if (option == NULL) {
80 set_entry_options(writer, option, value) :
81 set_global_options(writer, option, value)
    [all...]
  /external/ImageMagick/MagickWand/
magick-cli.c 65 3 - show option details (better to use -debug Command now)
66 5 - image counts (after option runs)
127 *option,
154 option = arg1 = arg2 = (char*) NULL;
168 /* save option details */
169 CloneString(&option,token_info->token);
171 /* get option, its argument count, and option type */
172 cli_wand->command = GetCommandOptionInfo(option);
177 cli_wand->line, cli_wand->line, option, cli_wand->command->mnemonic )
124 *option, local
359 *option, local
    [all...]
  /external/ImageMagick/coders/
caption.c 59 #include "MagickCore/option.h"
106 *option;
143 option=GetImageOption(image_info,"filename");
144 if (option == (const char *) NULL)
148 if (LocaleNCompare(option,"caption:",8) == 0)
149 property=InterpretImageProperties((ImageInfo *) image_info,image,option+8,
152 property=InterpretImageProperties((ImageInfo *) image_info,image,option,
104 *option; local

Completed in 462 milliseconds

1 23 4 5 6 7 8 91011>>