/external/llvm/tools/opt/ |
Makefile | 1 ##===- tools/opt/Makefile ----------------------------------*- Makefile -*-===## 11 TOOLNAME := opt
|
/external/llvm/utils/fpcmp/ |
fpcmp.cpp | 21 cl::opt<std::string> 23 cl::opt<std::string> 26 cl::opt<double> 28 cl::opt<double>
|
/art/compiler/llvm/ |
backend_options.h | 23 extern llvm::cl::opt<bool> EnableARMLongCalls; \ 24 extern llvm::cl::opt<bool> ReserveR9;
|
/external/clang/include/clang/Driver/ |
Options.h | 14 namespace opt { namespace in namespace:llvm 24 /// llvm::opt::DriverFlag. 46 llvm::opt::OptTable *createDriverOptTable();
|
/external/wpa_supplicant_8/wpa_supplicant/examples/ |
udhcpd-p2p.conf | 81 # keyword 'opt' or 'option'. If an option can take multiple items, such 86 opt dns 192.168.2.1 93 #opt subnet 94 #opt timezone 95 #opt router 96 #opt timesvr 97 #opt namesvr 98 #opt dns 99 #opt logsvr 100 #opt cookiesv [all...] |
/external/libvpx/libvpx/build/make/ |
rtcd.sh | 27 die "Option $opt requires argument" 30 for opt; do 31 optval="${opt#*=}" 32 case "$opt" in 35 --disable-*) eval "disable_${opt#--disable-}=true";; 36 --require-*) REQUIRES="${REQUIRES}${opt#--require-} ";; 44 die "Unrecognized option: ${opt%%=*}" 47 defs_file="$defs_file $opt" 79 for opt in "$@"; do 80 eval "${fn}_${opt}=${fn}_${opt} [all...] |
gen_asm_deps.sh | 26 for opt do 27 optval="${opt#*=}" 28 case "$opt" in 33 -I*) raw_inc_paths="${raw_inc_paths} ${opt}" 34 inc_path="${inc_path} ${opt#-I}" 38 *) [ -f "$opt" ] && srcfile="$opt"
|
/external/chromium_org/third_party/libxslt/win32/ |
configure.js | 70 function boolToStr(opt) 72 if (opt == false) 74 else if (opt == true) 82 function strToBool(opt) 84 if (opt == "0" || opt == "no") 86 else if (opt == "1" || opt == "yes") 328 var arg, opt; 330 opt = arg.substring(0, arg.indexOf("=")) [all...] |
/external/chromium_org/ppapi/generators/ |
idl_option.py | 61 for opt in sorted(OptionMap.keys()): 62 DumpOption(OptionMap[opt]) 98 for opt, val in opts: 99 if len(opt) == 2: opt = opt[1:] 100 if opt[0:2] == '--': opt = opt[2:] 101 OptionMap[opt].Set(val [all...] |
/development/tools/yuv420sp2rgb/ |
cmdline.c | 44 struct option *opt = long_options; local 46 while (opt->name) { 48 isprint(opt->val) ? opt->val : ' ', 49 opt->name, 50 (opt->has_arg ? " (argument)" : ""), 52 opt++;
|
/external/chromium_org/third_party/yasm/source/patched-yasm/frontends/tasm/ |
tasm-options.c | 58 if (argv[0][0] == '/' && argv[0][1]) { /* opt */ 62 size_t len = strlen(options[i].opt); 63 if (yasm__strncasecmp(cmd, options[i].opt, len) == 0) { 71 options[i].opt); 115 if (options[i].opt) 116 sprintf(optbuf, "/%s <%s>", options[i].opt, 120 if (options[i].opt) 121 sprintf(optbuf, "/%s", options[i].opt);
|
/frameworks/base/core/jni/ |
AndroidRuntime.cpp | 356 JavaVMOption opt; local 357 memset(&opt, 0, sizeof(opt)); 358 opt.optionString = (char*)argv[i]; 359 mOptions.add(opt); 403 JavaVMOption opt; local 407 memset(&opt, 0, sizeof(opt)); 421 opt.optionString = start; 422 mOptions.add(opt); 439 JavaVMOption opt; local [all...] |
/external/oprofile/libpopt/ |
popt.c | 64 static void invokeCallbacksPRE(poptContext con, const struct poptOption * opt) 68 if (opt != NULL) 69 for (; opt->longName || opt->shortName || opt->arg; opt++) { 70 if (opt->arg == NULL) continue; /* XXX program error. */ 71 if ((opt->argInfo & POPT_ARG_MASK) == POPT_ARG_INCLUDE_TABLE) { 72 void * arg = opt->arg; 79 } else if ((opt->argInfo & POPT_ARG_MASK) == POPT_ARG_CALLBACK & 708 const struct poptOption * opt = NULL; local [all...] |
/external/chromium_org/chrome/test/chromeos/autotest/files/client/deps/chrome_test/ |
setup_test_links.sh | 13 [ -f "$this_dir/chrome" ] || cp "/opt/google/chrome/chrome" "$this_dir/chrome" 14 [ -L "$this_dir/locales" ] || ln -f -s "/opt/google/chrome/locales" \ 16 [ -L "$this_dir/resources" ] || ln -f -s "/opt/google/chrome/resources" \ 18 ln -f -s /opt/google/chrome/*.pak "$this_dir/" 21 ln -f -s /opt/google/chrome/nacl_helper "$this_dir/" 22 ln -f -s /opt/google/chrome/nacl_helper_bootstrap "$this_dir/" 23 ln -f -s /opt/google/chrome/nacl_irt_*.nexe "$this_dir/" 24 ln -f -s /opt/google/chrome/libppGoogleNaClPluginChrome.so "$this_dir/"
|
/external/clang/include/clang/Frontend/ |
Utils.h | 26 namespace opt { namespace in namespace:llvm 114 int getLastArgIntValue(const llvm::opt::ArgList &Args, 115 llvm::opt::OptSpecifier Id, int Default, 118 inline int getLastArgIntValue(const llvm::opt::ArgList &Args, 119 llvm::opt::OptSpecifier Id, int Default,
|
/external/llvm/tools/llvm-symbolizer/ |
llvm-symbolizer.cpp | 33 static cl::opt<bool> 38 static cl::opt<bool> 43 static cl::opt<bool> 47 static cl::opt<bool> 50 static cl::opt<std::string> ClDefaultArch("default-arch", cl::init(""),
|
/ndk/tests/ |
check-release.sh | 40 for opt; do 41 optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'` 42 case $opt in 53 panic "Unknown option '$opt'. See --help for list of valid ones." 57 NDK_DIR=$opt
|
/frameworks/base/cmds/am/src/com/android/commands/am/ |
Am.java | 346 String opt; local 347 while ((opt=nextOption()) != null) { 348 if (opt.equals("-a")) { 353 } else if (opt.equals("-d")) { 358 } else if (opt.equals("-t")) { 363 } else if (opt.equals("-c")) { 368 } else if (opt.equals("-e") || opt.equals("--es")) { 372 } else if (opt.equals("--esn")) { 375 } else if (opt.equals("--ei")) 767 String opt; local 782 String opt; local 817 String opt; local 901 String opt; local 914 String opt; local 982 String opt; local 1022 String opt; local 1359 String opt; local 1375 String opt; local 1391 String opt; local 1402 String opt; local [all...] |
/external/dnsmasq/src/ |
rfc2131.c | 81 #define option_len(opt) ((int)(((unsigned char *)(opt))[1])) 82 #define option_ptr(opt, i) ((void *)&(((unsigned char *)(opt))[2u+(unsigned int)(i)])) 84 static int sanitise(unsigned char *opt, char *buf); 86 static unsigned int calc_time(struct dhcp_context *context, struct dhcp_config *config, unsigned char *opt); 87 static void option_put(struct dhcp_packet *mess, unsigned char *end, int opt, int len, unsigned int val); 89 int opt, char *string, int null_term); 90 static struct in_addr option_addr(unsigned char *opt); 91 static struct in_addr option_addr_arr(unsigned char *opt, int offset) 124 unsigned char *opt, *clid = NULL; local 1850 struct dhcp_opt *opt; local 2026 struct dhcp_opt *opt, *config_opts = daemon->dhcp_opts; local [all...] |
/external/libgsm/src/ |
gsm_option.c | 14 int gsm_option P3((r, opt, val), gsm r, int opt, int * val) 18 switch (opt) {
|
/packages/apps/Calendar/ |
Android.mk | 6 color_picker_dir := ../../../frameworks/opt/colorpicker/res 7 datetimepicker_dir := ../../../frameworks/opt/datetimepicker/res 8 timezonepicker_dir := ../../../frameworks/opt/timezonepicker/res 29 android-opt-datetimepicker \ 30 android-opt-timezonepicker \ 41 ../../../frameworks/opt/datetimepicker/proguard.flags
|
/system/extras/ext4_utils/ |
ext4fixup_main.c | 30 int opt; local 39 while ((opt = getopt(argc, argv, "vnd:")) != -1) { 40 switch (opt) {
|
/bionic/libdl/ |
dltest.c | 59 struct option *opt = long_options; local 61 while (opt->name) { 63 opt->val, 64 opt->name, 65 (opt->has_arg ? " (argument)" : ""), 67 opt++;
|
/external/llvm/tools/llvm-as/ |
llvm-as.cpp | 33 static cl::opt<std::string> 36 static cl::opt<std::string> 40 static cl::opt<bool> 43 static cl::opt<bool> 46 static cl::opt<bool> 49 static cl::opt<bool>
|
/system/extras/tests/bionic/libc/ |
run-test.sh | 30 opt="$1" 31 optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'` 32 case "$opt" in 47 echo "ERROR: Unknown option '$opt', use --help for list of valid ones." 52 PARAMETERS="$opt" 54 PARAMETERS="$PARAMETERS $opt"
|