Searched refs:args (Results 201 - 223 of 223) sorted by relevance

123456789

/art/runtime/
H A Dutils.cc1331 // Convert the args to char pointers.
1333 std::vector<char*> args; local
1338 args.push_back(arg_str);
1340 args.push_back(NULL);
1350 execv(program, &args[0]);
H A Dthread.cc1639 va_list args; local
1640 va_start(args, fmt);
1642 fmt, args);
1643 va_end(args);
H A Dclass_linker.cc81 va_list args; local
82 va_start(args, fmt);
85 self->ThrowNewExceptionV(throw_location, "Ljava/lang/NoClassDefFoundError;", fmt, args);
86 va_end(args);
/art/test/201-built-in-exception-detail-messages/src/
H A DMain.java22 public static void main(String[] args) throws Exception { argument
/art/compiler/dex/quick/mips/
H A Dint_mips.cc301 RegLocation rl_src_address = info->args[0]; // long address
302 rl_src_address = NarrowRegLoc(rl_src_address); // ignore high half in info->args[1]
317 RegLocation rl_src_address = info->args[0]; // long address
318 rl_src_address = NarrowRegLoc(rl_src_address); // ignore high half in info->args[1]
319 RegLocation rl_src_value = info->args[2]; // [size] value
/art/compiler/llvm/
H A Dgbc_expander.cc651 std::vector<llvm::Value*> args; local
653 args.push_back(inst.getArgOperand(i));
656 return irb_.CreateCall(irb_.GetRuntime(rt), args);
883 std::vector<llvm::Value*> args; local
885 args.push_back(callee_method_object_addr); // method object for callee
888 args.push_back(call_inst.getArgOperand(i));
907 llvm::Value* retval = irb_.CreateCall(code_addr, args);
1227 std::vector<llvm::Value*> args; local
1229 args.push_back(call_inst.getArgOperand(i));
1230 args_type.push_back(args[
[all...]
/art/compiler/dex/quick/x86/
H A Dint_x86.cc810 RegLocation rl_src1 = info->args[0];
811 RegLocation rl_src2 = (is_long) ? info->args[2] : info->args[1];
850 RegLocation rl_src_address = info->args[0]; // long address
853 rl_src_address = NarrowRegLoc(rl_src_address); // ignore high half in info->args[0]
872 RegLocation rl_src_address = info->args[0]; // long address
875 rl_src_address = NarrowRegLoc(rl_src_address); // ignore high half in info->args[0]
880 RegLocation rl_src_value = info->args[2]; // [size] value
925 // Unused - RegLocation rl_src_unsafe = info->args[0];
926 RegLocation rl_src_obj = info->args[
[all...]
/art/tools/
H A Dcpplint.py1853 args = Match(r'\s+(?:inline\s+)?%s\s*\(([^,()]+)\)'
1856 if (args and
1857 args.group(1) != 'void' and
1859 args.group(1).strip())):
3959 def ParseArguments(args):
3965 args: The command line arguments:
3971 (opts, filenames) = getopt.getopt(args, '', ['help', 'output=', 'verbose=',
/art/test/100-reflect2/src/
H A DMain.java269 public static void main(String[] args) throws Exception { argument
/art/test/122-npe/src/
H A DMain.java22 public static void main(String[] args) { argument
/art/runtime/mirror/
H A Dart_method.h235 void Invoke(Thread* self, uint32_t* args, uint32_t args_size, JValue* result, const char* shorty)
/art/test/700-LoadArgRegs/src/
H A DMain.java285 static public void main(String[] args) throws Exception { argument
/art/compiler/jni/
H A Djni_compiler_test.cc1500 jvalue args[254]; local
1504 args[i].l = nullptr;
1507 env_->CallNonvirtualVoidMethodA(jobj_, jklass_, jmethod_, args);
1512 args[i].l = tmp;
1513 EXPECT_NE(args[i].l, nullptr);
1516 env_->CallNonvirtualVoidMethodA(jobj_, jklass_, jmethod_, args);
/art/compiler/dex/quick/
H A Dgen_common.cc431 RegLocation loc = UpdateLoc(info->args[i]);
463 RegLocation rl_first = info->args[0];
490 RegLocation rl_arg = LoadValue(info->args[i], kCoreReg);
/art/dex2oat/
H A Ddex2oat.cc622 #define CHECK_WATCH_DOG_PTHREAD_CALL(call, args, what) \
624 int rc = call args; \
/art/compiler/dex/
H A Dmir_graph.h520 RegLocation* args; // One for each word of arguments. member in struct:art::CallInfo
H A Dmir_graph.cc1464 info->args = (info->num_arg_words == 0) ? NULL : static_cast<RegLocation*>
1467 info->args[i] = GetRawSrc(mir, i);
/art/test/107-int-math2/src/
H A DMain.java889 public static void main(String[] args) { argument
/art/test/701-easy-div-rem/src/
H A DMain.java485 public static void main(String[] args) { argument
/art/runtime/gc/
H A Dheap.cc3019 jvalue args[1]; local
3020 args[0].l = arg.get();
3021 InvokeWithJValues(soa, nullptr, WellKnownClasses::java_lang_ref_FinalizerReference_add, args);
/art/runtime/verifier/
H A Dmethod_verifier.cc754 uint32_t args[Instruction::kMaxVarArgRegs]; local
755 inst->GetVarArgs(args);
756 result = result && CheckVarArgRegs(inst->VRegA(), args);
1224 << " args, found more (" << descriptor << ")";
1265 << " args, found more (" << descriptor << ")";
1945 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "args to if-eq/if-ne (" << reg_type1 << ","
1957 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "args to 'if' (" << reg_type1 << ","
/art/test/082-inline-execute/src/
H A DMain.java22 public static void main(String args[]) throws Exception { argument
/art/test/083-compiler-regressions/src/
H A DMain.java32 public static void main(String args[]) throws Exception { argument
1249 // Repeatedly use some doubles from the middle of the pack to trigger promotion from frame-passed args.

Completed in 822 milliseconds

123456789