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

123456789

/art/test/070-nio-buffer/src/
H A DMain.java28 public static void main(String[] args) { argument
/art/test/092-locale/src/
H A DMain.java33 public static void main(String[] args) { argument
/art/test/098-ddmc/src/
H A DMain.java21 public static void main(String[] args) throws Exception { argument
/art/test/099-vmdebug/src/
H A DMain.java22 public static void main(String[] args) throws Exception { argument
/art/test/106-exceptions2/src/
H A DMain.java198 public static void main(String[] args) { argument
/art/test/121-modifiers/src/
H A DMain.java77 public static void main(String args[]) throws Exception { argument
/art/test/401-optimizing-compiler/src/
H A DMain.java21 public static void main(String[] args) { argument
173 System.out.println("In static method with 2 args " + a + " " + b);
177 System.out.println("In static method with 5 args "
182 System.out.println("In static method with 7 args "
/art/test/405-optimizing-long-allocator/src/
H A DMain.java21 public static void main(String[] args) { argument
/art/runtime/base/
H A Dlogging.h60 #define CHECK_PTHREAD_CALL(call, args, what) \
62 int rc = call args; \
/art/compiler/dex/quick/arm/
H A Dint_arm.cc736 RegLocation rl_src1 = info->args[0];
737 RegLocation rl_src2 = info->args[1];
752 RegLocation rl_src_address = info->args[0]; // long address
753 rl_src_address = NarrowRegLoc(rl_src_address); // ignore high half in info->args[1]
777 RegLocation rl_src_address = info->args[0]; // long address
778 rl_src_address = NarrowRegLoc(rl_src_address); // ignore high half in info->args[1]
779 RegLocation rl_src_value = info->args[2]; // [size] value
798 // Unused - RegLocation rl_src_unsafe = info->args[0];
799 RegLocation rl_src_obj = info->args[1]; // Object - known non-null
800 RegLocation rl_src_offset = info->args[
[all...]
H A Dfp_arm.cc362 RegLocation rl_src = UpdateLoc(info->args[0]);
380 RegLocation rl_src = UpdateLocWide(info->args[0]);
404 RegLocation rl_src = info->args[0];
/art/runtime/arch/mips/
H A Dquick_entrypoints_mips.S32 * callee-save: $s0-$s8 + $gp + $ra, 11 total + 1 word padding + 4 open words for args
65 # 1 word for alignment, 4 open words for args $a0-$a3, bottom will hold Method*
72 * callee-save: $s2-$s8 + $gp + $ra, 9 total + 3 words padding + 4 open words for args
101 # 3 words for alignment and extra args, 4 open words for args $a0-$a3, bottom will hold Method*
443 addiu $sp, $sp, -32 # make space for extra args
449 addiu $sp, $sp, 32 # release out args
1058 addiu $sp, $sp, -32 # space for args, pad (3 words), arguments (5 words)
1067 addiu $sp, $sp, 32 # remove args
1082 addiu $sp, $sp, -48 # save return values and set up args
[all...]
/art/runtime/interpreter/
H A Dinterpreter_common.cc516 va_list args; local
517 va_start(args, fmt);
519 args);
520 va_end(args);
865 uint32_t args[1]; local
866 args[0] = StackReference<mirror::Object>::FromMirrorPtr(found).AsVRegValue();
867 EnterInterpreterFromInvoke(self, c, field.Get(), args, NULL);
/art/runtime/arch/arm/
H A Dquick_entrypoints_arm.S754 sub sp, #8 @ grow frame for alignment with stack args
762 add sp, #16 @ release out args
797 sub sp, #8 @ grow frame for alignment with stack args
806 add sp, #16 @ release out args
820 sub sp, #8 @ grow frame for alignment with stack args
828 add sp, #16 @ release out args
843 sub sp, #8 @ grow frame for alignment with stack args
851 add sp, #16 @ release out args
943 * frame size of the invoked proxy method agrees with a ref and args callee save frame.
1169 mov r0, r9 @ Set up args
[all...]
/art/runtime/entrypoints/quick/
H A Dquick_trampoline_entrypoints.cc225 // For the given quick ref and args quick frame, return the caller's PC.
534 // No need to restore the args since the method has already been run by the interpreter.
539 // Visits arguments on the stack placing them into the args vector, Object* arguments are converted
545 ScopedObjectAccessUnchecked* soa, std::vector<jvalue>* args) :
546 QuickArgumentVisitor(sp, is_static, shorty, shorty_len), soa_(soa), args_(args) {}
631 // Placing arguments into args vector and remove the receiver.
635 std::vector<jvalue> args; local
638 BuildQuickArgumentVisitor local_ref_visitor(sp, false, shorty, shorty_len, &soa, &args);
641 DCHECK_GT(args.size(), 0U) << PrettyMethod(proxy_method);
642 args
543 BuildQuickArgumentVisitor(StackReference<mirror::ArtMethod>* sp, bool is_static, const char* shorty, uint32_t shorty_len, ScopedObjectAccessUnchecked* soa, std::vector<jvalue>* args) argument
[all...]
/art/test/004-JniTest/
H A Djni_test.cc41 JavaVMAttachArgs args = { JNI_VERSION_1_6, __FUNCTION__, NULL }; local
42 int attach_result = jvm->AttachCurrentThread(&env, &args);
/art/runtime/entrypoints/
H A Dentrypoint_utils.h181 std::vector<jvalue>& args)
/art/test/004-ThreadStress/src/
H A DMain.java48 public static void main(String[] args) throws Exception { argument
/art/test/005-annotations/src/android/test/anno/
H A DTestAnnotations.java147 public static void main(String[] args) { argument
/art/test/045-reflect-array/src/
H A DMain.java11 public static void main(String[] args) { argument
/art/test/046-reflect/src/
H A DMain.java359 Object[] args;
362 args = new Object[] { new Integer(7), new Float(3.3333) };
364 targ = cons.newInstance(args);
696 public static void main(String[] args) throws Exception { argument
/art/test/068-classloader/src/
H A DMain.java24 public static void main(String[] args) { argument
/art/test/074-gc-thrash/src/
H A DMain.java30 public static void main(String[] args) { argument
/art/compiler/dex/quick/arm64/
H A Dtarget_arm64.cc844 // We covered 2 args, so skip the next one
1028 * Pass args 3-18 using vldm/vstm block copy
1031 * Pass args arg19+ using memcpy block copy
1048 in_to_reg_storage_mapping.Initialize(info->args, info->num_arg_words, &mapper);
1056 // Scan the rest of the args - if in phys_reg flush to memory
1058 RegLocation loc = info->args[next_arg];
1085 int start_offset = SRegOffset(info->args[last_mapped_in + 1].s_reg_low);
1122 RegLocation rl_arg = info->args[i];
1168 RegLocation rl_arg = info->args[i];
/art/test/064-field-access/src/
H A DMain.java25 public static void main(String[] args) { argument
216 public static void main(String[] args) { argument

Completed in 2090 milliseconds

123456789