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

123456789

/art/test/029-assert/src/
H A DMain.java21 public static void main(String[] args) { argument
/art/test/116-nodex2oat/src/
H A DMain.java18 public static void main(String[] args) { argument
/art/test/108-check-cast/src/
H A DMain.java25 public static void main(String args[]) { argument
28 if (1 == args.length) {
/art/compiler/utils/
H A Dassembler_test.h398 std::vector<std::string> args; local
400 args.push_back(GetAssemblerCommand());
401 args.push_back("-o");
402 args.push_back(to_file);
403 args.push_back(from_file);
405 return Exec(args, error_msg);
418 std::vector<std::string> args; local
420 args.push_back(GetObjdumpCommand());
421 args.push_back(file);
422 args
494 std::vector<std::string> args; local
644 std::vector<std::string> args; local
[all...]
/art/runtime/native/
H A Djava_lang_DexCache.cc41 jvalue args[1]; local
42 args[0].l = byte_buffer;
45 args);
/art/disassembler/
H A Ddisassembler_mips.cc180 std::ostringstream args; local
193 args << sa;
200 args << FormatInstructionPointer(instr_ptr + offset)
204 case 'D': args << 'r' << rd; break;
205 case 'd': args << 'f' << rd; break;
221 args << reinterpret_cast<void*>((instruction & 0xffff) << 16);
224 args << static_cast<int16_t>(instruction & 0xffff);
232 args << reinterpret_cast<void*>(target);
238 args << StringPrintf("%+d(r%d)", offset, rs);
240 args << " ; ";
[all...]
/art/runtime/interpreter/
H A Dinterpreter.cc28 Object* receiver, uint32_t* args, JValue* result)
32 int32_t length = args[1];
34 mirror::Class* element_class = reinterpret_cast<Object*>(args[0])->AsClass();
49 value.SetJ((static_cast<uint64_t>(args[1]) << 32) | args[0]);
55 result->SetI(args[0]);
57 result->SetI(args[0]);
60 value.SetJ((static_cast<uint64_t>(args[1]) << 32) | args[0]);
67 String* rhs = reinterpret_cast<Object*>(args[
398 EnterInterpreterFromInvoke(Thread* self, ArtMethod* method, Object* receiver, uint32_t* args, JValue* result) argument
573 uint32_t* args = shadow_frame->GetVRegArgs(method->IsStatic() ? 0 : 1); local
[all...]
/art/runtime/arch/mips/
H A Dportable_entrypoints_mips.S25 # Fake callee save ref and args frame set up, note portable doesn't use callee save frames.
/art/test/013-math2/src/
H A DMain.java33 public static void main(String args[]) { argument
/art/test/017-float/src/
H A DMain.java33 public static void main(String args[]) { argument
/art/test/032-concrete-sub/src/
H A DMain.java21 public static void main(String[] args) { argument
/art/test/034-call-null/src/
H A DMain.java24 public static void main(String[] args) { argument
/art/test/038-inner-null/src/
H A DMain.java18 public static void main(String[] args) { argument
/art/test/044-proxy/src/
H A DMain.java21 public static void main(String[] args) { argument
/art/test/058-enum-order/src/
H A DMain.java25 public static void main(String args[]) { argument
/art/test/073-mismatched-field/src/
H A DMain.java18 public static void main(String[] args) { argument
/art/test/076-boolean-put/src/
H A DMain.java30 public static void main(String[] args) { argument
/art/test/103-string-append/src/
H A DMain.java21 public static void main(String [] args) { argument
/art/test/111-unresolvable-exception/src/
H A DMain.java18 static public void main(String[] args) throws Exception { argument
/art/test/112-double-math/src/
H A DMain.java22 public static void main(String args[]) { argument
/art/test/119-noimage-patchoat/src/
H A DMain.java18 public static void main(String[] args) { argument
/art/test/121-modifiers/src/
H A DNonInf.java65 public int varargsMethod(Object... args) { argument
/art/test/128-reg-spilling-on-implicit-nullcheck/src/
H A DMain.java19 public static void main(String[] args) { argument
/art/test/202-thread-oome/src/
H A DMain.java18 public static void main(String[] args) throws Exception { argument
/art/test/301-abstract-protected/src/
H A DMain.java18 public static void main(String args[]) throws Exception { argument

Completed in 720 milliseconds

123456789