HomeSort by relevance Sort by last modified time
    Searched refs:opt (Results 326 - 350 of 1235) sorted by null

<<11121314151617181920>>

  /external/libvpx/libvpx/build/make/
gen_msvs_sln.sh 247 for opt in "$@"; do
248 optval="${opt#*=}"
249 case "$opt" in
260 *) die Unrecognized Visual Studio Version in $opt
271 *) die "Unrecognized Visual Studio Version '$optval' in $opt"
277 -*) die_unknown $opt
279 *) file_list[${#file_list[@]}]="$opt"
  /external/linux-tools-perf/
builtin-probe.c 109 static int opt_add_probe_event(const struct option *opt __used,
119 static int opt_del_probe_event(const struct option *opt __used,
132 static int opt_show_lines(const struct option *opt __used,
145 static int opt_show_vars(const struct option *opt __used,
165 static int opt_set_filter(const struct option *opt __used,
  /external/llvm/utils/yaml-bench/
YAMLBench.cpp 28 static cl::opt<bool>
34 static cl::opt<bool>
40 static cl::opt<std::string>
43 static cl::opt<bool>
50 static cl::opt<unsigned>
  /frameworks/base/cmds/ime/src/com/android/commands/ime/
Ime.java 89 String opt; local
92 while ((opt=nextOption()) != null) {
93 if (opt.equals("-a")) {
95 } else if (opt.equals("-s")) {
98 System.err.println("Error: Unknown option: " + opt);
  /ndk/
ndk-build 68 for opt; do
70 PROJECT_PATH=$opt
73 case $opt in
93 NDK_TOOLCHAIN_VERSION=${opt#NDK_TOOLCHAIN_VERSION=}
96 APP_ABI=${opt#APP_ABI=}
  /ndk/tests/standalone/
run.sh 58 for opt; do
59 optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
60 case $opt in
86 panic "Unknown option '$opt'. See --help for list of valid ones."
89 TEST_SUBDIRS=$TEST_SUBDIRS" "$opt
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
dist.py 243 for (opt, val) in cmd_options.items():
244 opt_dict[opt] = ("setup script", val)
395 for opt in options:
396 if opt != '__name__':
397 val = parser.get(section,opt)
398 opt = opt.replace('-', '_')
399 opt_dict[opt] = (filename, val)
409 for (opt, (src, val)) in self.command_options['global'].items():
410 alias = self.negative_opt.get(opt)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
dist.py 243 for (opt, val) in cmd_options.items():
244 opt_dict[opt] = ("setup script", val)
395 for opt in options:
396 if opt != '__name__':
397 val = parser.get(section,opt)
398 opt = opt.replace('-', '_')
399 opt_dict[opt] = (filename, val)
409 for (opt, (src, val)) in self.command_options['global'].items():
410 alias = self.negative_opt.get(opt)
    [all...]
  /system/extras/tests/binder/benchmarks/
binderAddInts.cpp 113 int opt; local
114 while ((opt = getopt(argc, argv, "s:c:n:d:?")) != -1) {
117 switch (opt) {
123 cerr << "Invalid cpu specified for -" << (char) opt
136 *((opt == 'c') ? &options.clientCPU : &options.serverCPU) = cpu;
  /external/ppp/pppd/
ipcp.c 274 #define CILEN_COMPRESS 4 /* min length for compression protocol opt. */
275 #define CILEN_VJ 6 /* length for RFC1332 Van-Jacobson opt. */
475 printipaddr(opt, printer, arg)
476 option_t *opt;
757 #define ADDCIADDRS(opt, neg, val1, val2) \
761 PUTCHAR(opt, ucp); \
772 #define ADDCIVJ(opt, neg, val, old, maxslotindex, cflag) \
776 PUTCHAR(opt, ucp); \
788 #define ADDCIADDR(opt, neg, val) \
792 PUTCHAR(opt, ucp);
    [all...]
  /external/skia/tools/
filtermain.cpp 698 for (size_t opt = 0; opt < SK_ARRAY_COUNT(gOptTable); ++opt) {
699 if ((*gOptTable[opt].fCheck)(&debugCanvas, i)) {
700 (*gOptTable[opt].fApply)(&debugCanvas, i);
702 ++gOptTable[opt].fNumTimesApplied;
703 ++localCount[opt];
710 opt = 0; // try all the opts all over again
732 for (size_t opt = 0; opt < SK_ARRAY_COUNT(gOptTable); ++opt)
    [all...]
  /external/chromium_org/ppapi/generators/
idl_lint.py 109 for opt in options:
110 if wnone or GetOption(opt): ast.SetProperty(opt, True)
  /external/chromium_org/third_party/icu/source/tools/
icu-svnprops-check.py 197 for opt, arg in opts:
198 if opt in ("-h", "--help"):
201 if opt in ("-f", "--fix"):
  /external/icu4c/tools/
icu-svnprops-check.py 197 for opt, arg in opts:
198 if opt in ("-h", "--help"):
201 if opt in ("-f", "--fix"):
  /external/iproute2/tc/
f_fw.c 119 static int fw_print_opt(struct filter_util *qu, FILE *f, struct rtattr *opt, __u32 handle)
123 if (opt == NULL)
126 parse_rtattr_nested(tb, TCA_FW_MAX, opt);
f_route.c 134 static int route_print_opt(struct filter_util *qu, FILE *f, struct rtattr *opt, __u32 handle)
139 if (opt == NULL)
142 parse_rtattr_nested(tb, TCA_ROUTE4_MAX, opt);
f_tcindex.c 122 struct rtattr *opt, __u32 handle)
126 if (opt == NULL)
129 parse_rtattr_nested(tb, TCA_TCINDEX_MAX, opt);
  /external/llvm/lib/Target/Hexagon/
HexagonTargetMachine.cpp 29 static cl:: opt<bool> DisableHardwareLoops("disable-hexagon-hwloops",
32 static cl::opt<bool> DisableHexagonMISched("disable-hexagon-misched",
36 static cl::opt<bool> DisableHexagonCFGOpt("disable-hexagon-cfgopt",
  /external/valgrind/main/cachegrind/
cg-arch.c 78 static void parse_cache_opt ( cache_t* cache, Char* opt, Char* optval )
106 VG_(fmsg_bad_option)(opt, "");
109 VG_(fmsg_bad_option)(opt,
  /frameworks/base/core/jni/
android_net_LocalSocketImpl.cpp 205 java_opt_to_real(int optID, int* opt, int* level)
210 *opt = SO_RCVBUF;
214 *opt = SO_SNDBUF;
218 *opt = SO_SNDTIMEO;
222 *opt = SO_LINGER;
226 *opt = TCP_NODELAY;
230 *opt = SO_REUSEADDR;
242 int opt, level; local
247 if (!java_opt_to_real(optID, &opt, &level)) {
258 switch (opt)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/tools/
upgrade-upstream.sh 53 for opt; do
54 case $opt in
65 echo "ERROR: Unknown option '$opt'. See --help."
  /ndk/sources/host-tools/sed-4.2.1/sed/
sed.c 205 int opt; local
241 while ((opt = getopt_long(argc, argv, SHORTOPTS, longopts, NULL)) != EOF)
243 switch (opt)
  /sdk/emulator/qtools/
read_trace.cpp 30 int opt = getopt(argc, argv, "+s:"); local
31 if (opt == -1)
33 switch (opt) {
stack_dump.cpp 86 int opt = getopt(argc, argv, "+d:"); local
87 if (opt == -1)
89 switch (opt) {
  /system/extras/ext4_utils/
make_ext4fs_main.c 62 int opt; local
79 while ((opt = getopt(argc, argv, "l:j:b:g:i:I:L:a:S:fwzJsctv")) != -1) {
80 switch (opt) {

Completed in 405 milliseconds

<<11121314151617181920>>