Home
last modified time | relevance | path

Searched refs:m (Results 226 – 250 of 377) sorted by relevance

12345678910>>...16

/art/test/048-reflect-v8/src/
DDefaultDeclared.java47 Method m; in printGetMethod() local
49 m = klass.getDeclaredMethod("sayHi"); in printGetMethod()
/art/test/691-hiddenapi-proxy/src/
DMain.java41 for (Method m : obj.getClass().getDeclaredMethods()) { in main()
42 System.out.println(m.getName()); in main()
/art/tools/checker/file_format/c1visualizer/
Dparser.py62 m = re.search("isa_features:([\w,-]+)", methodName)
63 if (m):
64 rawFeatures = m.group(1).split(",")
/art/test/1928-exception-event-exception/src/art/
DTest1928.java30 Executable m, long loc, Throwable exception, Executable catch_m, long catch_l); in exceptionOccurred() argument
87 Executable m, long loc, Throwable exception, Executable catch_m, long catch_l) { in exceptionOccurred() argument
95 Executable m, long loc, Throwable exception, Executable catch_m, long catch_l) { in exceptionOccurred() argument
98 throw new BaseTestException("ThrowBaseHandler during throw from " + m + " @ line = " + in exceptionOccurred()
99 Breakpoint.locationToLine(m, loc), exception); in exceptionOccurred()
/art/test/004-ReferenceMap/
Dstack_walk_refmap_jni.cc44 ArtMethod* m = GetMethod(); in VisitFrame() local
45 std::string m_name(m->GetName()); in VisitFrame()
/art/test/530-checker-loops4/src/
DMain.java296 int m = 1410065408; in main() local
298 expectEquals(m * i, geo1(i)); in main()
301 expectEquals( m * i, geo1( i)); in main()
302 expectEquals(-m * i, geo1(-i)); in main()
/art/test/529-checker-unresolved/src/
DMain.java179 Main m = new Main(); in main() local
183 callInvokeUnresolvedSuper(m); in main()
187 testInstanceOf(m); in main()
188 testCheckCast(m); in main()
/art/test/1339-dead-reference-safe/src/
DMain.java25 Method m = cls.getDeclaredMethod(methodName); in ensureCompiled() local
29 ensureMethodJitCompiled(m); in ensureCompiled()
/art/runtime/
Dreflective_handle_scope.h148 ALWAYS_INLINE MutableReflectiveHandle<ArtMethod> NewMethodHandle(ArtMethod* m) in NewMethodHandle() argument
153 mh.Assign(m); in NewMethodHandle()
156 ALWAYS_INLINE ReflectiveHandleWrapper<ArtMethod> NewReflectiveMethodHandleWrapper(ArtMethod** m) in NewReflectiveMethodHandleWrapper() argument
158 return ReflectiveHandleWrapper<ArtMethod>(m, NewMethodHandle(*m)); in NewReflectiveMethodHandleWrapper()
Dmonitor_objects_stack_visitor.h60 virtual VisitMethodResult StartMethod(ArtMethod* m, size_t frame_nr)
62 virtual VisitMethodResult EndMethod(ArtMethod* m)
Dinstrumentation.cc314 ArtMethod* m = GetMethod(); in InstrumentationInstallStack() local
315 if (m == nullptr) { in InstrumentationInstallStack()
325 m, in InstrumentationInstallStack()
344 if (m->IsRuntimeMethod()) { in InstrumentationInstallStack()
361 CHECK_EQ(m->GetNonObsoleteMethod(), frame.method_->GetNonObsoleteMethod()) in InstrumentationInstallStack()
362 << "Expected " << ArtMethod::PrettyMethod(m) in InstrumentationInstallStack()
370 if (UNLIKELY(reached_existing_instrumentation_frames_ && !m->IsRuntimeMethod())) { in InstrumentationInstallStack()
388 m->IsRuntimeMethod() ? nullptr : GetThisObject().Ptr(), in InstrumentationInstallStack()
389 m, in InstrumentationInstallStack()
478 ArtMethod* m = GetMethod(); in InstrumentationRestoreStack() local
[all …]
/art/test/613-inlining-dex-cache/src-art/
DMain.java49 Method m = cls.getDeclaredMethod("letMeInlineYou"); in main() local
52 m.invoke(null); in main()
/art/test/164-resolution-trampoline-dex-cache/src/
DMain.java35 Method m = tc.getDeclaredMethod("test", Class.class); in main() local
36 m.invoke(null, Main.class); in main()
/art/test/004-StackWalk/
Dstack_walk_jni.cc42 ArtMethod* m = GetMethod(); in VisitFrame() local
43 std::string_view m_name(m->GetName()); in VisitFrame()
/art/test/118-noimage-dex2oat/src/
DMain.java74 Method m = k.getDeclaredMethod("run"); in testB18485243() local
76 m.invoke(o); in testB18485243()
/art/test/618-checker-induction/src/
DMain.java104 int m = 0; in deadConditional() local
109 m = i; in deadConditional()
124 int m = 0; in deadConditionalCycle() local
129 m++; in deadConditionalCycle()
374 static int closedFormNestedMN(int m, int n) { in closedFormNestedMN() argument
376 for (int i = 0; i < m; i++) { in closedFormNestedMN()
385 static int closedFormNestedMNAlt(int m, int n) { in closedFormNestedMNAlt() argument
387 for (int i = 0; i < m; i++) { in closedFormNestedMNAlt()
/art/compiler/
Dcompiled_method.cc128 CompiledMethod* m) { in ReleaseSwapAllocatedCompiledMethod() argument
130 alloc.destroy(m); in ReleaseSwapAllocatedCompiledMethod()
131 alloc.deallocate(m, 1); in ReleaseSwapAllocatedCompiledMethod()
/art/runtime/native/
Djava_lang_Class.cc77 ArtMethod *m = GetMethod(); in GetReflectionCaller() local
78 if (m == nullptr) { in GetReflectionCaller()
82 } else if (m->IsRuntimeMethod()) { in GetReflectionCaller()
87 ObjPtr<mirror::Class> declaring_class = m->GetDeclaringClass(); in GetReflectionCaller()
99 && !m->IsClassInitializer()) { in GetReflectionCaller()
114 caller = m; in GetReflectionCaller()
554 ArtMethod* m, in MethodMatchesConstructor() argument
557 DCHECK(m != nullptr); in MethodMatchesConstructor()
558 return m->IsConstructor() && in MethodMatchesConstructor()
559 !m->IsStatic() && in MethodMatchesConstructor()
[all …]
/art/test/565-checker-doublenegbitwise/src/
DMain.java43 Method m = c.getMethod(name, klass, klass); in $noinline$runSmaliTest() local
44 return inputKlass.cast(m.invoke(null, input1, input2)); in $noinline$runSmaliTest()
/art/test/1925-self-frame-pop/src/art/
DTest1925.java33 public static void handleFramePop(Executable m, boolean exception, long location) { in handleFramePop() argument
35 m + " pop. Line=" + Breakpoint.locationToLine(m, location) + " exception:" + exception); in handleFramePop()
/art/test/1930-monitor-info/src/art/
DTest1930.java150 public native static void executeLockedNative(Runnable r, Object m); in executeLockedNative() argument
151 public static void printMonitorUsage(Object m) { in printMonitorUsage() argument
153 Thread.currentThread().getName(), Monitors.getObjectMonitorUsage(m))); in printMonitorUsage()
/art/test/586-checker-null-array-get/src/
DMain.java38 Method m = c.getMethod(name); in $noinline$runSmaliTest() local
39 m.invoke(null); in $noinline$runSmaliTest()
/art/test/1911-get-local-var-table/src/art/
DTest1911.java191 public static void CheckLocalVariableTable(Executable m, in CheckLocalVariableTable() argument
194 new HashSet<>(Arrays.asList(Locals.GetLocalVariableTable(m))); in CheckLocalVariableTable()
200 System.out.println("Unexpected variables for " + m); in CheckLocalVariableTable()
/art/test/952-invoke-custom/util-src/transformer/
DIndyTransformer.java174 for (Method m : inputClass.getDeclaredMethods()) {
175 CalledByIndy calledByIndy = m.getAnnotation(CalledByIndy.class);
183 if ((m.getModifiers() & PRIVATE_STATIC) != PRIVATE_STATIC) {
187 callsiteMap.put(m.getName(), calledByIndy);
/art/test/522-checker-regression-monitor-exit/src/
DMain.java43 Method m = c.getMethod("synchronizedHashCode", Object.class); in call() local
44 result = (Integer) m.invoke(null, m_obj); in call()

12345678910>>...16