HomeSort by relevance Sort by last modified time
    Searched refs:args (Results 301 - 325 of 19863) sorted by null

<<11121314151617181920>>

  /external/python/cpython3/Lib/test/
ssltests.py 17 args = [
23 args.extend([
31 args.extend(extra_args)
32 args.extend(TESTS)
33 result = subprocess.call(args)
  /external/python/cpython3/Modules/_ctypes/libffi/testsuite/libffi.call/
cls_longdouble.c 36 void** args, void* userdata __UNUSED__)
38 long double a1 = *(long double*)args[0];
39 long double a2 = *(long double*)args[1];
40 long double a3 = *(long double*)args[2];
41 long double a4 = *(long double*)args[3];
42 long double a5 = *(long double*)args[4];
43 long double a6 = *(long double*)args[5];
44 long double a7 = *(long double*)args[6];
45 long double a8 = *(long double*)args[7];
56 void* args[9] local
    [all...]
closure_simple.c 11 closure_test(ffi_cif* cif __UNUSED__, void* resp, void** args, void* userdata)
14 (int)*(int *)args[0] + (int)(*(int *)args[1])
15 + (int)(*(int *)args[2]) + (int)(*(int *)args[3])
19 (int)*(int *)args[0], (int)(*(int *)args[1]),
20 (int)(*(int *)args[2]), (int)(*(int *)args[3]),
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/
icopen.py 47 def _open_with_typer(*args):
48 file = _builtin_open(*args)
49 filename = args[0]
51 if args[1:]:
52 mode = args[1]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
icopen.py 47 def _open_with_typer(*args):
48 file = _builtin_open(*args)
49 filename = args[0]
51 if args[1:]:
52 mode = args[1]
  /system/bt/vendor_libs/test_vendor_lib/src/
classic.cc 52 void Classic::Initialize(const vector<std::string>& args) {
53 if (args.size() < 2) return;
56 if (addr.FromString(args[1])) SetBtAddress(addr);
58 if (args.size() < 3) return;
60 SetClockOffset(std::stoi(args[2]));
  /frameworks/native/cmds/installd/tests/
installd_otapreopt_test.cpp 50 const char** args) {
58 ASSERT_STREQ(params.target_slot.c_str(), args[1]);
59 ASSERT_STREQ(params.apk_path, args[i++]);
60 ASSERT_EQ(params.uid, static_cast<uid_t>(atoi(args[i++])));
61 ASSERT_STREQ(params.pkgName, args[i++]);
62 ASSERT_STREQ(params.instruction_set, args[i++]);
63 ASSERT_EQ(params.dexopt_needed, atoi(args[i++]));
64 ASSERT_STREQ(params.oat_dir, args[i++]);
65 const int dexopt_flags = atoi(args[i++]);
66 ASSERT_STREQ(params.compiler_filter, args[i++])
122 std::vector<const char*> args; local
164 std::vector<const char*> args = getArgs(version, versioned); local
204 std::vector<const char*> args = getArgs(5, true); local
211 std::vector<const char*> args = getArgs(4, true); local
218 std::vector<const char*> args = getArgs(4, true); local
225 std::vector<const char*> args = getArgs(3, true); local
    [all...]
  /frameworks/base/telecomm/java/android/telecom/
ConnectionServiceAdapterServant.java 93 SomeArgs args = (SomeArgs) msg.obj;
96 (String) args.arg1,
97 (ConnectionRequest) args.arg2,
98 (ParcelableConnection) args.arg3,
101 args.recycle();
118 SomeArgs args = (SomeArgs) msg.obj;
120 mDelegate.setDisconnected((String) args.arg1, (DisconnectCause) args.arg2,
123 args.recycle();
143 SomeArgs args = (SomeArgs) msg.obj
    [all...]
  /development/tools/bugreport/src/com/android/bugreport/
Options.java 28 * The original raw args array.
30 public String[] args; field in class:Options
33 * If there was an error parsing, the index into the args array that
75 * with all the arguments, or one with nothing set except for the args, errorText
78 public static Options parseArgs(String[] args) {
79 final Options result = new Options(args);
82 final ArgParser argParser = new ArgParser(args);
86 return new Options(args, argParser.pos(),
92 return new Options(args, argParser.pos(),
98 return new Options(args, argParser.pos()
    [all...]
  /external/python/cpython2/PC/os2emx/
pythonpm.c 58 arglist args; local
66 args.Frame = WinCreateStdWindow(HWND_DESKTOP,
77 args.argc = argc;
78 args.argv = argv;
79 args.running = 0;
80 if (-1 == (python_tid = _beginthread(PythonThread, NULL, 1024 * 1024, &args)))
91 if (args.running > 0)
96 WinDestroyWindow(args.Frame);
106 arglist *args; local
112 args = (arglist *)argl
    [all...]
  /frameworks/base/core/java/android/content/
AsyncQueryHandler.java 70 WorkerArgs args = (WorkerArgs) msg.obj;
79 cursor = resolver.query(args.uri, args.projection,
80 args.selection, args.selectionArgs,
81 args.orderBy);
92 args.result = cursor;
96 args.result = resolver.insert(args.uri, args.values)
171 WorkerArgs args = new WorkerArgs(); local
213 WorkerArgs args = new WorkerArgs(); local
239 WorkerArgs args = new WorkerArgs(); local
267 WorkerArgs args = new WorkerArgs(); local
331 WorkerArgs args = (WorkerArgs) msg.obj; local
    [all...]
  /external/ltp/testcases/kernel/io/disktest/
childmain.c 99 void add_action(test_env_t * env, const child_args_t * args,
103 if (env->action_list_entry == args->t_kids) { /* we should never get here */
141 void decrement_io_count(const child_args_t * args, test_env_t * env,
144 if (args->flags & CLD_FLG_LBA_SYNC) {
179 void update_test_state(child_args_t * args, test_env_t * env,
185 if (args->flags & CLD_FLG_ALLDIE) {
187 PDBG4(DBUG, args,
191 args->test_state = SET_STS_FAIL(args->test_state);
196 PDBG4(DBUG, args,
584 child_args_t *args = test->args; local
    [all...]
  /external/icu/icu4c/source/common/
ucnv_cb.cpp 37 ucnv_cbFromUWriteBytes (UConverterFromUnicodeArgs *args,
48 args->converter,
50 &args->target, args->targetLimit,
51 &args->offsets, offsetIndex,
56 ucnv_cbFromUWriteUChars(UConverterFromUnicodeArgs *args,
81 oldTarget = args->target;
83 ucnv_fromUnicode(args->converter,
84 &args->target,
85 args->targetLimit
    [all...]
  /bionic/libc/bionic/
libc_init_dynamic.cpp 71 static void __libc_preinit_impl(KernelArgumentBlock& args) {
72 __libc_init_globals(args);
73 __libc_init_common(args);
91 KernelArgumentBlock* args = *args_slot; local
101 __libc_preinit_impl(*args);
117 KernelArgumentBlock args(raw_args);
129 exit(slingshot(args.argc, args.argv, args.envp));
  /device/linaro/bootloader/edk2/BaseTools/Scripts/
BinToPcd.py 92 args = parser.parse_args() variable
98 Buffer = args.InputFile.read()
99 args.InputFile.close()
107 if args.PcdName is None:
111 if args.Verbose:
113 elif args.PcdType is None:
119 if args.MaxSize is None:
124 Pcd = ' %s|%s' % (args.PcdName, ByteArray (Buffer))
125 elif args.MaxSize < len(Buffer):
129 Pcd = ' %s|%s|VOID*|%d' % (args.PcdName, ByteArray (Buffer), args.MaxSize)
    [all...]
  /external/autotest/client/cros/scripts/
destination 23 def main(args):
26 @param args arguments to the script, not including the script name.
31 if len(args) < 1:
33 command = args[0]
34 args = args[1:]
37 if len(args) < NUM_VERIFY_ARGS:
40 if shill.manager.VerifyDestination(*args[0:NUM_VERIFY_ARGS]):
45 if len(args) < NUM_ENCRYPT_ARGS:
48 print shill.manager.VerifyAndEncryptData(*args[0:NUM_ENCRYPT_ARGS]
    [all...]
  /external/caliper/caliper/src/main/java/com/google/caliper/options/
OptionsModule.java 36 private final String[] args; field in class:OptionsModule
44 * @param args the arguments from which the configuration options and the benchmark class name
47 public static OptionsModule withBenchmarkClass(String [] args) {
48 return new OptionsModule(args, true);
55 * @param args the arguments from which the configuration options are parsed; it must have no
58 public static OptionsModule withoutBenchmarkClass(String [] args) {
59 return new OptionsModule(args, false);
69 public OptionsModule(String[] args, boolean requireBenchmarkClassName) {
70 this.args = args.clone(); // defensive copy, just in cas
    [all...]
  /external/google-breakpad/src/build/
gyp_breakpad 41 def run_gyp(args):
42 rc = gyp.main(args)
49 args = sys.argv[1:]
50 args.append(os.path.join(script_dir, 'all.gyp'))
52 args.append('-I')
53 args.append(os.path.join(breakpad_root, 'build', 'common.gypi'))
55 args.extend(['-D', 'gyp_output_dir=out'])
58 args.append('--depth=' + os.path.relpath(breakpad_root))
63 run_gyp(args)
  /external/libffi/testsuite/libffi.call/
closure_simple.c 11 closure_test(ffi_cif* cif __UNUSED__, void* resp, void** args, void* userdata)
14 (int)*(int *)args[0] + (int)(*(int *)args[1])
15 + (int)(*(int *)args[2]) + (int)(*(int *)args[3])
19 (int)*(int *)args[0], (int)(*(int *)args[1]),
20 (int)(*(int *)args[2]), (int)(*(int *)args[3]),
  /external/python/cpython2/Modules/_ctypes/libffi/testsuite/libffi.call/
closure_simple.c 11 closure_test(ffi_cif* cif __UNUSED__, void* resp, void** args, void* userdata)
14 (int)*(int *)args[0] + (int)(*(int *)args[1])
15 + (int)(*(int *)args[2]) + (int)(*(int *)args[3])
19 (int)*(int *)args[0], (int)(*(int *)args[1]),
20 (int)(*(int *)args[2]), (int)(*(int *)args[3]),
  /external/skia/src/gpu/effects/
GrPremulInputFragmentProcessor.cpp 22 void emitCode(EmitArgs& args) override {
23 GrGLSLFPFragmentBuilder* fragBuilder = args.fFragBuilder;
25 args.fFp.cast<GrPremulInputFragmentProcessor>();
27 fragBuilder->codeAppendf("%s = %s;\n%s.xyz *= %s.w;\n", args.fOutputColor,
28 args.fInputColor ? args.fInputColor : "half4(1)",
29 args.fOutputColor,
30 args.fInputColor ? args.fInputColor : "half4(1)");
  /external/skqp/src/gpu/effects/
GrPremulInputFragmentProcessor.cpp 22 void emitCode(EmitArgs& args) override {
23 GrGLSLFPFragmentBuilder* fragBuilder = args.fFragBuilder;
25 args.fFp.cast<GrPremulInputFragmentProcessor>();
27 fragBuilder->codeAppendf("%s = %s;\n%s.xyz *= %s.w;\n", args.fOutputColor,
28 args.fInputColor ? args.fInputColor : "half4(1)",
29 args.fOutputColor,
30 args.fInputColor ? args.fInputColor : "half4(1)");
  /packages/apps/DeskClock/src/com/android/deskclock/
LogUtils.java 29 public static void v(String message, Object... args) {
30 DEFAULT_LOGGER.v(message, args);
33 public static void d(String message, Object... args) {
34 DEFAULT_LOGGER.d(message, args);
37 public static void i(String message, Object... args) {
38 DEFAULT_LOGGER.i(message, args);
41 public static void w(String message, Object... args) {
42 DEFAULT_LOGGER.w(message, args);
45 public static void e(String message, Object... args) {
46 DEFAULT_LOGGER.e(message, args);
    [all...]
  /test/vts-testcase/hal/script/
launch_hal_test.py 119 args = parser.parse_args()
122 result = re.match(regex, args.hal_package_name)
127 if not args.hal_package_name.startswith(args.package_root + '.'):
131 if args.test_type != 'target' and args.test_type != 'host':
134 elif args.test_type == 'host' and args.is_replay:
139 result = re.match(regex, args.time_out)
144 if not args.test_config_dir
    [all...]
  /device/generic/goldfish/wifi/ipv6proxy/
log.cpp 25 static void vlogf(FILE* stream, const char* fmt, va_list args) {
42 vfprintf(stream, fmt, args);
46 va_list args; local
47 va_start(args, fmt);
48 vlogf(stream, fmt, args);
49 va_end(args);
53 va_list args; local
54 va_start(args, fmt);
55 vlogf(stderr, fmt, args);
56 va_end(args);
60 va_list args; local
    [all...]

Completed in 993 milliseconds

<<11121314151617181920>>