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

1 2 3 4 5 6 7 8 91011>>

  /device/google/marlin/dataservices/datatop/src/
datatop_opt.c 74 int option; local
81 while ((option = getopt(argc, argv, "phi:t:w:s:n:")) != -1) {
82 switch (option) {
  /external/capstone/arch/AArch64/
AArch64Module.c 36 static cs_err option(cs_struct *handle, cs_opt_type type, size_t value) function
52 arch_option[CS_ARCH_ARM64] = option;
  /external/capstone/arch/ARM/
ARMModule.c 42 static cs_err option(cs_struct *handle, cs_opt_type type, size_t value) function
73 arch_option[CS_ARCH_ARM] = option;
  /external/capstone/arch/Mips/
MipsModule.c 41 static cs_err option(cs_struct *handle, cs_opt_type type, size_t value) function
62 arch_option[CS_ARCH_MIPS] = option;
  /external/capstone/arch/PowerPC/
PPCModule.c 38 static cs_err option(cs_struct *handle, cs_opt_type type, size_t value) function
57 arch_option[CS_ARCH_PPC] = option;
  /external/capstone/arch/Sparc/
SparcModule.c 37 static cs_err option(cs_struct *handle, cs_opt_type type, size_t value) function
56 arch_option[CS_ARCH_SPARC] = option;
  /external/capstone/arch/SystemZ/
SystemZModule.c 33 static cs_err option(cs_struct *handle, cs_opt_type type, size_t value) function
48 arch_option[CS_ARCH_SYSZ] = option;
  /external/capstone/arch/X86/
X86Module.c 43 static cs_err option(cs_struct *handle, cs_opt_type type, size_t value) function
97 arch_option[CS_ARCH_X86] = option;
  /external/capstone/arch/XCore/
XCoreModule.c 33 static cs_err option(cs_struct *handle, cs_opt_type type, size_t value) function
45 arch_option[CS_ARCH_XCORE] = option;
  /external/eigen/lapack/
svd.cpp 51 int option = *jobz=='A' ? ComputeFullU|ComputeFullV local
56 BDCSVD<PlainMatrixType> svd(mat,option);
121 int option = (*jobu=='A' ? ComputeFullU : *jobu=='S' || *jobu=='O' ? ComputeThinU : 0) local
124 JacobiSVD<PlainMatrixType> svd(mat,option);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
getopt.c 45 int option; local
81 if ( (option = *opt_ptr++) == '\0')
84 if (option == 'J') {
89 if (option == 'X') {
95 if ((ptr = strchr(optstring, option)) == NULL) {
97 fprintf(stderr, "Unknown option: -%c\n", option);
112 "Argument expected for the -%c option\n", option);
120 return option;
    [all...]
  /bionic/libc/include/
getopt.h 47 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 int getopt_long(int __argc, char* const* __argv, const char* __options, const struct option* __long_options, int* __long_index);
63 int getopt_long_only(int __argc, char* const* __argv, const char* __options, const struct option* __long_options, int* __long_index);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
getopt.c 53 int option; local
89 if ((option = *opt_ptr++) == '\0')
92 if (option == 'J') {
98 if (option == 'X') {
105 if ((ptr = strchr(optstring, option)) == NULL) {
107 fprintf(stderr, "Unknown option: -%c\n", option);
122 "Argument expected for the -%c option\n", option);
130 return option;
    [all...]
  /external/e2fsprogs/include/nonunix/
getopt.h 8 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 is found, bu
83 struct option struct
    [all...]
  /external/fio/oslib/
getopt.h 10 struct option { struct
23 int getopt_long_only(int, char *const *, const char *, const struct option *, int *);
  /external/icu/icu4c/source/tools/toolutil/
uoptions.cpp 35 /* process an option */
36 UOption *option=NULL; local
39 /* process a long option */
44 /* search for the option string */
48 option=options+j;
52 if(option==NULL) {
53 /* no option matches */
56 option->doesOccur=1;
58 if(option->hasArg!=UOPT_NO_ARG) {
59 /* parse the argument for the option, if any *
    [all...]
  /external/libcups/cups/
testoptions.c 2 * Option unit test program for CUPS.
23 * 'main()' - Test option processing functions.
33 const char *value; /* Value of an option */
163 cups_option_t *option; /* Current option */ local
168 for (i = 0, option = options; i < num_options; i ++, option ++)
169 printf("options[%d].name=\"%s\", value=\"%s\"\n", i, option->name,
170 option->value);
  /external/libusb/examples/getopt/
getopt.h 8 version 2.1 of the License, or (at your option) any later version.
42 When `getopt' finds an option that takes an argument,
45 each non-option ARGV-element is returned here. */
56 non-option elements that the caller should itself scan.
68 /* Set to an option character which was unrecognized. */
75 of `struct option' terminated by an element containing a name which is
79 no_argument (or 0) if the option does not take an argument,
80 required_argument (or 1) if the option requires an argument,
81 optional_argument (or 2) if the option takes an optional argument.
84 to the value given in the field `val' when the option is found, bu
94 struct option struct
    [all...]
  /external/mesa3d/src/getopt/
getopt.h 47 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/python/cpython2/Python/
getopt.c 53 int option; local
89 if ((option = *opt_ptr++) == '\0')
92 if (option == 'J') {
98 if (option == 'X') {
105 if ((ptr = strchr(optstring, option)) == NULL) {
107 fprintf(stderr, "Unknown option: -%c\n", option);
122 "Argument expected for the -%c option\n", option);
130 return option;
    [all...]
  /external/python/cpython3/Python/
getopt.c 57 wchar_t option; local
93 if ((option = *opt_ptr++) == L'\0')
96 if (option == 'J') {
102 if ((ptr = wcschr(optstring, option)) == NULL) {
104 fprintf(stderr, "Unknown option: -%c\n", (char)option);
118 "Argument expected for the -%c option\n", (char)option);
126 return option;
  /external/syslinux/com32/include/
getopt.h 6 struct option { struct
20 const struct option *, int *);
  /external/syslinux/libinstaller/getopt/
getopt.h 6 struct option { struct
23 const struct option *, int *);
  /external/tcpdump/
getopt_long.h 44 struct option { struct
45 /* name of long option */
49 * whether option takes an argument
52 /* if not NULL, set *flag to val when option found */
59 const struct option *, int *);
61 const struct option *, int *);
  /prebuilts/go/darwin-x86/src/text/template/
option.go 20 type option struct { type
24 // Option sets options for the template. Options are described by
26 // most one equals sign in an option string. If the option string
27 // is unrecognized or otherwise invalid, Option panics.
42 func (t *Template) Option(opt ...string) *Template {
52 panic("empty option string")
62 t.option.missingKey = mapInvalid
65 t.option.missingKey = mapZeroValue
68 t.option.missingKey = mapErro
    [all...]

Completed in 287 milliseconds

1 2 3 4 5 6 7 8 91011>>