/prebuilts/go/darwin-x86/misc/cgo/test/issue9026/ |
issue9026.go | 13 git_merge_file_options *opts) {} 23 var opts *C.git_merge_file_options 24 C.git_merge_file(&in, opts) 31 got := fmt.Sprintf("%T %T", in, opts)
|
/prebuilts/go/linux-x86/misc/cgo/test/issue9026/ |
issue9026.go | 13 git_merge_file_options *opts) {} 23 var opts *C.git_merge_file_options 24 C.git_merge_file(&in, opts) 31 got := fmt.Sprintf("%T %T", in, opts)
|
/hardware/qcom/msm8x27/ |
clean.sh | 6 OPTS=-k$ORIGINAL 12 $CLEAN_HEADER $OPTS $ORIGINAL/$HEADER > $NEW/$HEADER
|
/external/selinux/policycoreutils/secon/ |
secon.c | 72 } opts[1] = { { variable in typeref:struct:__anon22628 132 num += opts->disp_user; 133 num += opts->disp_role; 134 num += opts->disp_type; 135 num += opts->disp_sen; 136 num += opts->disp_clr; 137 num += opts->disp_mlsr; 215 opts->disp_user = !opts->disp_user; 219 opts->disp_role = !opts->disp_role [all...] |
/external/autotest/server/site_tests/platform_CryptohomeSyncStressServer/ |
control | 22 opts = dict([[k, v] for (k, e, v) in [x.partition('=') for x in args]]) 24 power_addr = opts.get('power_addr', None) 25 outlet = opts.get('outlet', None) 26 username = opts.get('user', None) 27 password = opts.get('pass', None) 28 iterations = opts.get('iter', '1000000')
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_getopt.py | 47 opts, args = getopt.do_shorts([], 'a', 'a', []) 48 self.assertEqual(opts, [('-a', '')]) 51 opts, args = getopt.do_shorts([], 'a1', 'a:', []) 52 self.assertEqual(opts, [('-a', '1')]) 55 #opts, args = getopt.do_shorts([], 'a=1', 'a:', []) 56 #self.assertEqual(opts, [('-a', '1')]) 59 opts, args = getopt.do_shorts([], 'a', 'a:', ['1']) 60 self.assertEqual(opts, [('-a', '1')]) 63 opts, args = getopt.do_shorts([], 'a', 'a:', ['1', '2']) 64 self.assertEqual(opts, [('-a', '1')] [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_getopt.py | 47 opts, args = getopt.do_shorts([], 'a', 'a', []) 48 self.assertEqual(opts, [('-a', '')]) 51 opts, args = getopt.do_shorts([], 'a1', 'a:', []) 52 self.assertEqual(opts, [('-a', '1')]) 55 #opts, args = getopt.do_shorts([], 'a=1', 'a:', []) 56 #self.assertEqual(opts, [('-a', '1')]) 59 opts, args = getopt.do_shorts([], 'a', 'a:', ['1']) 60 self.assertEqual(opts, [('-a', '1')]) 63 opts, args = getopt.do_shorts([], 'a', 'a:', ['1', '2']) 64 self.assertEqual(opts, [('-a', '1')] [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_getopt.py | 47 opts, args = getopt.do_shorts([], 'a', 'a', []) 48 self.assertEqual(opts, [('-a', '')]) 51 opts, args = getopt.do_shorts([], 'a1', 'a:', []) 52 self.assertEqual(opts, [('-a', '1')]) 55 #opts, args = getopt.do_shorts([], 'a=1', 'a:', []) 56 #self.assertEqual(opts, [('-a', '1')]) 59 opts, args = getopt.do_shorts([], 'a', 'a:', ['1']) 60 self.assertEqual(opts, [('-a', '1')]) 63 opts, args = getopt.do_shorts([], 'a', 'a:', ['1', '2']) 64 self.assertEqual(opts, [('-a', '1')] [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_getopt.py | 47 opts, args = getopt.do_shorts([], 'a', 'a', []) 48 self.assertEqual(opts, [('-a', '')]) 51 opts, args = getopt.do_shorts([], 'a1', 'a:', []) 52 self.assertEqual(opts, [('-a', '1')]) 55 #opts, args = getopt.do_shorts([], 'a=1', 'a:', []) 56 #self.assertEqual(opts, [('-a', '1')]) 59 opts, args = getopt.do_shorts([], 'a', 'a:', ['1']) 60 self.assertEqual(opts, [('-a', '1')]) 63 opts, args = getopt.do_shorts([], 'a', 'a:', ['1', '2']) 64 self.assertEqual(opts, [('-a', '1')] [all...] |
/external/clang/tools/driver/ |
cc1as_main.cpp | 159 bool AssemblerInvocation::CreateFromArgs(AssemblerInvocation &Opts, 188 Opts.Triple = llvm::Triple::normalize(Args.getLastArgValue(OPT_triple)); 189 Opts.CPU = Args.getLastArgValue(OPT_target_cpu); 190 Opts.Features = Args.getAllArgValues(OPT_target_feature); 193 if (Opts.Triple.empty()) 194 Opts.Triple = llvm::sys::getDefaultTargetTriple(); 197 Opts.IncludePaths = Args.getAllArgValues(OPT_I); 198 Opts.NoInitialTextSection = Args.hasArg(OPT_n); 199 Opts.SaveTemporaryLabels = Args.hasArg(OPT_msave_temp_labels); 201 Opts.GenDwarfForAssembly = Args.hasArg(OPT_debug_info_kind_EQ) [all...] |
/external/libnl/lib/route/sch/ |
htb.c | 75 struct tc_htb_glob opts; local 77 nla_memcpy(&opts, tb[TCA_HTB_INIT], sizeof(opts)); 78 d->qh_rate2quantum = opts.rate2quantum; 79 d->qh_defcls = opts.defcls; 113 struct tc_htb_opt opts; local 115 nla_memcpy(&opts, tb[TCA_HTB_PARMS], sizeof(opts)); 116 d->ch_prio = opts.prio; 117 rtnl_copy_ratespec(&d->ch_rate, &opts.rate) 232 struct tc_htb_glob opts; local 270 struct tc_htb_opt opts; local [all...] |
/external/nanopb-c/tests/buffer_only/ |
SConscript | 13 opts = env.Clone() 14 opts.Append(CPPDEFINES = {'PB_BUFFER_ONLY': 1}) 17 strict = opts.Clone() 23 enc = opts.Program(["encode_alltypes.c", "alltypes.pb.c", "pb_encode_bufonly.o"]) 24 dec = opts.Program(["decode_alltypes.c", "alltypes.pb.c", "pb_decode_bufonly.o"])
|
/external/nanopb-c/tests/field_size_16/ |
SConscript | 14 opts = env.Clone() 15 opts.Append(CPPDEFINES = {'PB_FIELD_16BIT': 1}) 18 strict = opts.Clone() 24 enc = opts.Program(["encode_alltypes.c", "alltypes.pb.c", "pb_encode_fields16.o"]) 25 dec = opts.Program(["decode_alltypes.c", "alltypes.pb.c", "pb_decode_fields16.o"])
|
/external/nanopb-c/tests/field_size_32/ |
SConscript | 14 opts = env.Clone() 15 opts.Append(CPPDEFINES = {'PB_FIELD_32BIT': 1}) 18 strict = opts.Clone() 24 enc = opts.Program(["encode_alltypes.c", "alltypes.pb.c", "pb_encode_fields32.o"]) 25 dec = opts.Program(["decode_alltypes.c", "alltypes.pb.c", "pb_decode_fields32.o"])
|
/external/nanopb-c/tests/no_errmsg/ |
SConscript | 13 opts = env.Clone() 14 opts.Append(CPPDEFINES = {'PB_NO_ERRMSG': 1}) 17 strict = opts.Clone() 23 enc = opts.Program(["encode_alltypes.c", "alltypes.pb.c", "pb_encode_noerr.o"]) 24 dec = opts.Program(["decode_alltypes.c", "alltypes.pb.c", "pb_decode_noerr.o"])
|
/external/skia/gyp/ |
skia_lib.gyp | 15 'opts.gyp:opts', 23 'opts.gyp:opts_ssse3', 24 'opts.gyp:opts_sse41', 29 'opts.gyp:opts_neon',
|
android_framework_lib.gyp | 17 'opts.gyp:opts',
|
/external/llvm/tools/llvm-pdbdump/ |
LinePrinter.cpp | 44 SetFilters(ExcludeTypeFilters, opts::ExcludeTypes.begin(), 45 opts::ExcludeTypes.end()); 46 SetFilters(ExcludeSymbolFilters, opts::ExcludeSymbols.begin(), 47 opts::ExcludeSymbols.end()); 48 SetFilters(ExcludeCompilandFilters, opts::ExcludeCompilands.begin(), 49 opts::ExcludeCompilands.end()); 51 SetFilters(IncludeTypeFilters, opts::IncludeTypes.begin(), 52 opts::IncludeTypes.end()); 53 SetFilters(IncludeSymbolFilters, opts::IncludeSymbols.begin(), 54 opts::IncludeSymbols.end()) [all...] |
/external/autotest/client/site_tests/power_Standby/ |
control | 33 opts = {} 41 opts[match.group(1)] = match.group(2) 43 if 'test_hours' in opts: 44 test_hours = float(opts['test_hours']) 46 if 'sample_hours' in opts: 47 sample_hours = float(opts['sample_hours'])
|
/frameworks/rs/java/tests/RsTest/src/com/android/rs/test/ |
single_source_script.rs | 79 rs_script_call_t opts = {0}; 80 opts.xStart = 0; 81 opts.xEnd = dimX; 82 opts.yStart = 0; 83 opts.yEnd = dimY / 2; 84 rsForEachWithOptions(foo, &opts, out, out);
|
/external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph/ |
__main__.py | 35 opts, args = parser.parse_args() 47 path = opts.addpath + path 48 if opts.debug > 1: 54 mf = ModuleGraph(path, excludes=opts.excludes, debug=opts.debug) 56 if opts.domods: 63 if opts.output == 'dot': 65 elif opts.output == 'html':
|
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/ |
BitmapFactory_Delegate.java | 52 @Nullable Rect padding, @Nullable Options opts) { 57 if (opts != null) { 58 density = Density.getEnum(opts.inDensity); 59 if (opts.inPremultiplied) { 62 opts.inScaled = false; 103 Rect padding, Options opts) { 104 opts.inBitmap = null; 109 /*package*/ static Bitmap nativeDecodeAsset(long asset, Rect padding, Options opts) { 110 opts.inBitmap = null; 116 int length, Options opts) { [all...] |
/prebuilts/go/darwin-x86/src/encoding/json/ |
tags_test.go | 12 name, opts := parseTag("field,foobar,foo") 24 if opts.Contains(tt.opt) != tt.want {
|
/prebuilts/go/linux-x86/src/encoding/json/ |
tags_test.go | 12 name, opts := parseTag("field,foobar,foo") 24 if opts.Contains(tt.opt) != tt.want {
|
/toolchain/binutils/binutils-2.25/gas/testsuite/lib/ |
gas-defs.exp | 456 set opts(addr2line) {} 457 set opts(as) {} 458 set opts(objdump) {} 459 set opts(nm) {} 460 set opts(objcopy) {} 461 set opts(readelf) {} 462 set opts(name) {} 463 set opts(PROG) {} 464 set opts(source) {} 465 set opts(dump) { [all...] |