/external/clang/include/clang/Driver/ |
CC1AsOptions.h | 19 OPT_INVALID = 0, // This is not an option ID. 20 #define OPTION(NAME, ID, KIND, GROUP, ALIAS, FLAGS, PARAM, \ 24 #undef OPTION
|
CC1Options.h | 19 OPT_INVALID = 0, // This is not an option ID. 20 #define OPTION(NAME, ID, KIND, GROUP, ALIAS, FLAGS, PARAM, \ 24 #undef OPTION
|
Options.h | 1 //===--- Options.h - Option info & table ------------------------*- C++ -*-===// 19 OPT_INVALID = 0, // This is not an option ID. 20 #define OPTION(NAME, ID, KIND, GROUP, ALIAS, FLAGS, PARAM, \ 24 #undef OPTION
|
/system/core/init/ |
keywords.h | 39 KEYWORD(capability, OPTION, 0, 0) 42 KEYWORD(class, OPTION, 0, 0) 46 KEYWORD(console, OPTION, 0, 0) 47 KEYWORD(critical, OPTION, 0, 0) 48 KEYWORD(disabled, OPTION, 0, 0) 52 KEYWORD(group, OPTION, 0, 0) 57 KEYWORD(keycodes, OPTION, 0, 0) 61 KEYWORD(oneshot, OPTION, 0, 0) 62 KEYWORD(onrestart, OPTION, 0, 0) 67 KEYWORD(setenv, OPTION, 2, 0 [all...] |
/external/ppp/pppd/plugins/radius/ |
options.h | 14 /* ids for different option types */ 23 #define ST_UNDEF (1<<0) /* option is undefined */ 26 char name[OPTION_LEN]; /* name of the option */ 28 void *val; /* pointer to option value */ 29 } OPTION; 37 static OPTION config_options[] = {
|
config.c | 26 * Purpose: find an option in the option list 28 * Returns: pointer to option on success, NULL otherwise 31 static OPTION *find_option(char *optname, unsigned int type) 48 * Purpose: set a specific option doing type conversions 53 static int set_option_str(char *filename, int line, OPTION *option, char *p) 56 option->val = (void *) strdup(p); 58 option->val = NULL; 63 static int set_option_int(char *filename, int line, OPTION *option, char *p 190 OPTION *option; local 269 OPTION *option; local 280 OPTION *option; local 291 OPTION *option; local [all...] |
/external/chromium/webkit/glue/ |
webmenuitem.h | 17 OPTION = WebKit::WebMenuItemInfo::Option,
|
webmenuitem.cc | 8 : type(OPTION),
|
/external/clang/lib/Driver/ |
CC1AsOptions.cpp | 11 #include "clang/Driver/Option.h" 19 #define OPTION(NAME, ID, KIND, GROUP, ALIAS, FLAGS, PARAM, \ 21 { NAME, HELPTEXT, METAVAR, Option::KIND##Class, FLAGS, PARAM, \
|
CC1Options.cpp | 11 #include "clang/Driver/Option.h" 19 #define OPTION(NAME, ID, KIND, GROUP, ALIAS, FLAGS, PARAM, \ 21 { NAME, HELPTEXT, METAVAR, Option::KIND##Class, FLAGS, PARAM, \
|
DriverOptions.cpp | 12 #include "clang/Driver/Option.h" 18 #define OPTION(NAME, ID, KIND, GROUP, ALIAS, FLAGS, PARAM, \ 20 { NAME, HELPTEXT, METAVAR, Option::KIND##Class, FLAGS, PARAM, \
|
/external/libpng/scripts/ |
libpng-config.in | 31 Usage: $0 [OPTION] ... 33 Known values for OPTION are:
|
/external/grub/util/ |
grub-set-default | 9 # (at your option) any later version. 31 Usage: grub-set-default [OPTION] entry 45 for option in "$@"; do 46 case "$option" in 54 rootdir=`echo "$option" | sed 's/--root-directory=//'` ;; 56 echo "Unrecognized option \`$option'" 1>&2 67 entry="${option}" ;;
|
grub-set-default.in | 9 # (at your option) any later version. 31 Usage: grub-set-default [OPTION] entry 45 for option in "$@"; do 46 case "$option" in 54 rootdir=`echo "$option" | sed 's/--root-directory=//'` ;; 56 echo "Unrecognized option \`$option'" 1>&2 67 entry="${option}" ;;
|
grub-md5-crypt | 9 # (at your option) any later version. 30 for option in "$@"; do 31 case "$option" in 34 Usage: $progname [OPTION] 52 grub_shell=`echo "$option" | sed 's/--grub-shell=//'` 56 echo "$progname: unrecognized option \`$option'" 57 echo "Usage: $progname [OPTION]"
|
grub-md5-crypt.in | 9 # (at your option) any later version. 30 for option in "$@"; do 31 case "$option" in 34 Usage: $progname [OPTION] 52 grub_shell=`echo "$option" | sed 's/--grub-shell=//'` 56 echo "$progname: unrecognized option \`$option'" 57 echo "Usage: $progname [OPTION]"
|
/external/qemu/android/ |
cmdline-option.c | 1 #include "android/cmdline-option.h" 32 #define OPTION(_name,_type,_config) \ 37 #define OPT_FLAG(_name,_descr) OPTION(_name,OPTION_IS_FLAG,0) 38 #define OPT_PARAM(_name,_template,_descr) OPTION(_name,OPTION_IS_PARAM,0) 39 #define OPT_LIST(_name,_template,_descr) OPTION(_name,OPTION_IS_LIST,0) 40 #define CFG_FLAG(_name,_descr) OPTION(_name,OPTION_IS_FLAG,1) 41 #define CFG_PARAM(_name,_template,_descr) OPTION(_name,OPTION_IS_PARAM,1) 70 /* anything that isn't an option past this points 79 /* an option cannot contain an underscore */ 103 /* NOTE: variable tables map option names to value [all...] |
/external/webkit/LayoutTests/dom/html/level2/html/ |
HTMLOptionElement05.js | 49 docsLoaded += preload(docRef, "doc", "option"); 78 The index attribute indicates th index of this OPTION in ints parent 81 Retrieve the index attribute from the seventh OPTION element 100 doc = load(docRef, "doc", "option"); 101 nodeList = doc.getElementsByTagName("option");
|
HTMLOptionElement07.js | 49 docsLoaded += preload(docRef, "doc", "option"); 79 a shorter label for an option that the content of the OPTION element. 81 Retrieve the label attribute from the second OPTION element 100 doc = load(docRef, "doc", "option"); 101 nodeList = doc.getElementsByTagName("option");
|
HTMLOptionsCollection01.js | 78 An HTMLOptionsCollection is a list of nodes representing HTML option 83 of the OPTION elements. Check the size of the length of OPTION elements.
|
/external/webkit/LayoutTests/dom/xhtml/level2/html/ |
HTMLOptionElement05.js | 49 docsLoaded += preload(docRef, "doc", "option"); 78 The index attribute indicates th index of this OPTION in ints parent 81 Retrieve the index attribute from the seventh OPTION element 100 doc = load(docRef, "doc", "option"); 101 nodeList = doc.getElementsByTagName("option");
|
HTMLOptionElement07.js | 49 docsLoaded += preload(docRef, "doc", "option"); 79 a shorter label for an option that the content of the OPTION element. 81 Retrieve the label attribute from the second OPTION element 100 doc = load(docRef, "doc", "option"); 101 nodeList = doc.getElementsByTagName("option");
|
HTMLOptionsCollection01.js | 78 An HTMLOptionsCollection is a list of nodes representing HTML option 83 of the OPTION elements. Check the size of the length of OPTION elements.
|
/external/webkit/Tools/android/flex-2.5.4a/ |
scan.l | 68 %option caseless nodefault outfile="scan.c" stack noyy_top_state 69 %option nostdinit 73 %x OPTION LINEDIR 131 ^"%option" BEGIN(OPTION); return OPTION_OP; 210 <OPTION>{ 286 format_synerr( _( "unrecognized %%option: %s" ),
|
/frameworks/compile/slang/ |
llvm-rs-cc.cpp | 27 #include "clang/Driver/Option.h" 55 using clang::driver::Option; 73 OPT_INVALID = 0, // This is not an option ID. 74 #define OPTION(NAME, ID, KIND, GROUP, ALIAS, FLAGS, PARAM, \ 78 #undef OPTION 82 #define OPTION(NAME, ID, KIND, GROUP, ALIAS, FLAGS, PARAM, \ 84 { NAME, HELPTEXT, METAVAR, Option::KIND##Class, FLAGS, PARAM, \ 184 if (A->getOption().getKind() == Option::InputClass) 205 slangAssert(false && "Invalid option in M group!"); 229 slangAssert(false && "Invalid option in output type group!") [all...] |