/aosp_15_r20/art/test/2242-checker-lse-acquire-release-operations/src/ |
H A D | Main.java | 193 Main m = new Main(); in $noinline$testSingletonVolatileAccessesCanBeRemoved() local 272 static int $noinline$testVolatileLoadRedundantStore(TestClass obj) { in $noinline$testVolatileLoadRedundantStore() 292 static int $noinline$testVolatileLoadRedundantStoreBlocking(TestClass obj) { in $noinline$testVolatileLoadRedundantStoreBlocking() 313 static int $noinline$testVolatileLoadRedundantStoreBlockingOnlyLoad(TestClass obj) { in $noinline$testVolatileLoadRedundantStoreBlockingOnlyLoad() 341 static int $noinline$testVolatileLoadSetAndMergeValues(TestClass obj, boolean b) { in $noinline$testVolatileLoadSetAndMergeValues() 369 static int $noinline$testVolatileLoadSetAndMergeValuesBlocking(TestClass obj, boolean b) { in $noinline$testVolatileLoadSetAndMergeValuesBlocking() 398 Main m = new Main(); in $noinline$testVolatileLoadDifferentFieldsRemovedSynchronization() local 424 static int $noinline$testVolatileLoadRedundantStoreRemovedSynchronization(TestClass obj) { in $noinline$testVolatileLoadRedundantStoreRemovedSynchronization() 425 Main m = new Main(); in $noinline$testVolatileLoadRedundantStoreRemovedSynchronization() local 457 TestClass obj, boolean b) { in $noinline$testVolatileLoadSetAndMergeValuesRemovedSynchronization() [all …]
|
/aosp_15_r20/external/javassist/src/test/javassist/ |
H A D | JvstTest2.java | 41 Object obj = make(cc.getName()); in testInsertAt() local 69 Object obj = make(cc.getName()); in testInsertLocal() local 77 CtMethod m = CtNewMethod.make( in testStaticMember() local 109 Object obj = make(cc.getName()); in testStaticMember() local 149 Object obj = make(cc.getName()); in testStaticMember2() local 165 Object obj = make(cc.getName()); in testSuperCall() local 197 CtMethod m = cc2.getDeclaredMethod("foo"); in testReplaceClassName() local 223 Object obj = make(cc.getName()); in testCodeGen() local 251 Object obj = make(cc.getName()); in testCodeGen2() local 420 Object obj = make(target.getName()); in testIncOp() local [all …]
|
H A D | JvstTest.java | 146 Object obj = make(cc.getName()); in testFieldInit() local 167 Object obj = make(cc.getName()); in testFieldInit2() local 210 Object obj = make(cc.getName()); in testCalleeBefore() local 228 Object obj = make(cc.getName()); in testCalleeAfter() local 256 Object obj = make(cc.getName()); in testCalleeAfter2() local 271 Object obj = make(cc.getName()); in testCalleeAfter3() local 283 Object obj = make(cc.getName()); in testCalleeCatch() local 311 Object obj = make(cc.getName()); in testProceed() local 355 Object obj = make(cc.getName()); in testProceed2() local 367 Object obj = make(cc.getName()); in testProceed3() local [all …]
|
H A D | JvstTest4.java | 34 Object obj = make(cc.getName()); in testInsertLocalVars() local 49 Object obj = make(cc.getName()); in testCodeConv() local 65 Object obj = make(cc.getName()); in testCodeConv2() local 96 Object obj = make(cc.getName()); in testInsGap() local 136 Object obj = make(cc.getName()); in testRename() local 146 Object obj = make(cc.getName()); in testRename2() local 153 CtMethod m = cc.getDeclaredMethod("foo"); in testJIRA93() local 164 Object obj = make(cc.getName()); in testJIRA93() local 177 Object obj = make(cc.getName()); in testNewRemover() local 234 Object obj = make("test4.WrittenFile"); in testClassFileWriter() local [all …]
|
H A D | JvstTest3.java | 159 Object obj = make(cc.getName()); in testInnerClassMethod() local 196 Object obj = make(cc.getName()); in testReplaceNew() local 273 Object obj = make(cc2.getName()); in testConstructorToMethod() local 378 Object obj = make(cc.getName()); in testRecursiveReplace() local 412 Object obj = make(cc.getName()); in testRecursiveReplace2() local 435 Object obj = make(cc.getName()); in testMethodLookup() local 565 Object obj = make(cc.getName()); in testMethodRedirect() local 585 Object obj = make(cc.getName()); in testMethodRedirect2() local 629 CtMethod m = cc.getDeclaredMethod("foo"); in testTransformRead() local 635 Object obj = make(cc.getName()); in testTransformRead() local [all …]
|
H A D | JvstTest5.java | 26 … CtMethod m = CtNewMethod.make("public static int run(){ return $class.getName().length(); }", cc); in testDollarClassInStaticMethod() local 31 Object obj = make(cc.getName()); in testDollarClassInStaticMethod() local 38 …CtMethod m = CtNewMethod.make("public int run(){ return test5.DefaultMethodIntf.super.foo(); }", c… in testSuperDefaultMethodCall() local 45 Object obj = make(cc.getName()); in testSuperDefaultMethodCall() local 55 Object obj = make(cc.getName()); in testTypeAnno() local 66 Object obj = make(cc.getName()); in testJIRA241() local 88 CtMethod m = cc.getDeclaredMethod("say"); in testJIRA242() local 104 Object obj = make(cc.getName()); in testJIRA242() local 113 Object obj = make(cc.getName()); in testJIRA249() local 135 Object obj = make(cc.getName()); in testInnerClassAttributeRemove() local [all …]
|
/aosp_15_r20/external/pytorch/torch/csrc/jit/python/ |
H A D | python_sugared_value.cpp | 27 std::optional<StrongFunctionPtr> as_function(const py::object& obj) { in as_function() 118 GraphFunction& m, in call() 172 GraphFunction& m, in asTuple() 182 GraphFunction& m, in attr() 210 GraphFunction& m, in attr() 221 GraphFunction& m, in attr() 261 Value* ModuleValue::asValue(const SourceRange& loc, GraphFunction& m) { in asValue() 267 GraphFunction& m) { in asTupleValue() 303 GraphFunction& m, in getitem() 386 GraphFunction& m, in checkInterface() [all …]
|
/aosp_15_r20/external/python/cpython3/Objects/ |
D | abstract.c | 19 type_error(const char *msg, PyObject *obj) in type_error() 60 PySequenceMethods *m = Py_TYPE(o)->tp_as_sequence; in PyObject_Size() local 155 PyMappingMethods *m = Py_TYPE(o)->tp_as_mapping; in PyObject_GetItem() local 210 PyMappingMethods *m = Py_TYPE(o)->tp_as_mapping; in PyObject_SetItem() local 244 PyMappingMethods *m = Py_TYPE(o)->tp_as_mapping; in PyObject_DelItem() local 291 PyObject_CheckBuffer(PyObject *obj) in PyObject_CheckBuffer() 302 PyObject_CheckReadBuffer(PyObject *obj) in PyObject_CheckReadBuffer() 319 as_read_buffer(PyObject *obj, const void **buffer, Py_ssize_t *buffer_len) in as_read_buffer() 337 PyObject_AsCharBuffer(PyObject *obj, in PyObject_AsCharBuffer() 344 int PyObject_AsReadBuffer(PyObject *obj, in PyObject_AsReadBuffer() [all …]
|
/aosp_15_r20/art/runtime/ |
H A D | monitor.cc | 97 Monitor::Monitor(Thread* self, Thread* owner, ObjPtr<mirror::Object> obj, int32_t hash_code) in Monitor() 129 ObjPtr<mirror::Object> obj, in Monitor() 192 ArtMethod* m = GetMethod(); in SetLockingMethod() local 334 void Monitor::AtraceMonitorLock(Thread* self, ObjPtr<mirror::Object> obj, bool is_wait) { in AtraceMonitorLock() 340 void Monitor::AtraceMonitorLockImpl(Thread* self, ObjPtr<mirror::Object> obj, bool is_wait) { in AtraceMonitorLockImpl() 488 ArtMethod* m = self->GetCurrentMethod(&pc); in Lock() local 589 ArtMethod* m = self->GetCurrentMethod(&pc); in Lock() local 603 ArtMethod* m = self->GetCurrentMethod(&pc); in Lock() local 996 bool Monitor::Deflate(Thread* self, ObjPtr<mirror::Object> obj) { in Deflate() 1038 void Monitor::Inflate(Thread* self, Thread* owner, ObjPtr<mirror::Object> obj, int32_t hash_code) { in Inflate() [all …]
|
H A D | reflection.cc | 82 void Append(ObjPtr<mirror::Object> obj) REQUIRES_SHARED(Locks::mutator_lock_) { in Append() 227 ArtMethod* m, in BuildArgArrayFromObjectArray() 369 void CheckMethodArguments(JavaVMExt* vm, ArtMethod* m, uint32_t* args) in CheckMethodArguments() 478 ArtMethod* m, in InvokeMethodImpl() 529 jobject obj, in InvokeWithVarArgs() 562 jobject obj, in InvokeWithVarArgs() 571 jobject obj, in InvokeWithJValues() 603 jobject obj, in InvokeWithJValues() 612 jobject obj, in InvokeVirtualOrInterfaceWithJValues() 646 jobject obj, in InvokeVirtualOrInterfaceWithJValues() [all …]
|
/aosp_15_r20/external/python/cpython2/Objects/ |
D | abstract.c | 15 type_error(const char *msg, PyObject *obj) in type_error() 63 PySequenceMethods *m; in PyObject_Size() local 137 PyMappingMethods *m; in PyObject_GetItem() local 165 PyMappingMethods *m; in PyObject_SetItem() local 197 PyMappingMethods *m; in PyObject_DelItem() local 245 PyObject_AsCharBuffer(PyObject *obj, in PyObject_AsCharBuffer() 279 PyObject_CheckReadBuffer(PyObject *obj) in PyObject_CheckReadBuffer() 291 int PyObject_AsReadBuffer(PyObject *obj, in PyObject_AsReadBuffer() 324 int PyObject_AsWriteBuffer(PyObject *obj, in PyObject_AsWriteBuffer() 360 PyObject_GetBuffer(PyObject *obj, Py_buffer *view, int flags) in PyObject_GetBuffer() [all …]
|
/aosp_15_r20/frameworks/base/core/java/android/os/ |
H A D | Message.java | 74 public Object obj; field in Message 165 Message m = sPool; in obtain() local 183 Message m = obtain(); in obtain() local 206 Message m = obtain(); in obtain() local 220 Message m = obtain(); in obtain() local 235 Message m = obtain(); in obtain() local 250 public static Message obtain(Handler h, int what, Object obj) { in obtain() 251 Message m = obtain(); in obtain() local 270 Message m = obtain(); in obtain() local 291 int arg1, int arg2, Object obj) { in obtain() [all …]
|
/aosp_15_r20/external/rust/android-crates-io/extra_versions/crates/jni/benches/ |
D | api_calls.rs | 95 fn jni_int_call_unchecked<'m, M>(env: &JNIEnv<'m>, obj: JObject<'m>, method_id: M) -> jint in jni_int_call_unchecked() 176 let obj = jni_local_date_time_of_safe(&env, 1, 1, 1, 1, 1, 1, 1); in jni_call_static_date_time_method_safe() localVariable 190 let obj = jni_object_call_static_unchecked( in jni_call_static_date_time_method_unchecked_jclass() localVariable 212 let obj = black_box(JObject::from(s)); in jni_call_object_hash_method_safe() localVariable 221 let obj = black_box(JObject::from(s)); in jni_call_object_hash_method_unchecked() localVariable 235 let obj = env.new_object(class, SIG_OBJECT_CTOR, &[]).unwrap(); in jni_new_object_str() localVariable 249 let obj = env.new_object_unchecked(class, ctor_id, &[]).unwrap(); in jni_new_object_by_id_str() localVariable 260 let obj = env.new_object(class, SIG_OBJECT_CTOR, &[]).unwrap(); in jni_new_object_jclass() localVariable 274 let obj = env.new_object_unchecked(class, ctor_id, &[]).unwrap(); in jni_new_object_by_id_jclass() localVariable 283 let obj = env.new_object(class, SIG_OBJECT_CTOR, &[]).unwrap(); in jni_new_global_ref() localVariable [all …]
|
/aosp_15_r20/art/test/639-checker-code-sinking/src/ |
H A D | Main.java | 154 Main m = new Main(); in testFieldStores() local 227 Main m = new Main(); in testOnlyStoreUses() local 238 Main m = new Main(); in testNoUse() local 304 Main m = new Main(); in testVolatileStore() local 333 private static int $noinline$testDontSinkToReturnBranch(int a, int b, boolean flag, Object obj) { in $noinline$testDontSinkToReturnBranch() 360 private static int $noinline$testSinkToThrowBranch(int a, int b, boolean flag, Object obj) { in $noinline$testSinkToThrowBranch() 430 Main m = new Main(); in testStoreStore() local 609 ObjectWithInt obj = new ObjectWithInt(); in DoNotSinkWithOOMThrow() local 756 static Object obj = new Object(); field in Main
|
/aosp_15_r20/external/robolectric/robolectric/src/test/java/org/robolectric/shadows/ |
H A D | ShadowLegacyMessageTest.java | 32 Message m = new Message(); in testGetData() local 42 Message m = new Message(); in testPeekData() local 50 Message m = new Message(); in testGetTarget() local 59 Message m = new Message(); in testCopyFrom() local 80 Message m = Message.obtain(); in testObtain() local 87 Message m = Message.obtain(h); in testObtainWithHandler() local 95 Message m = Message.obtain(h, what); in testObtainWithHandlerAndWhat() local 106 Object obj = "test"; in testObtainWithHandlerWhatAndObject() local 107 Message m = Message.obtain(h, what, obj); in testObtainWithHandlerWhatAndObject() local 121 Message m = Message.obtain(h, what, arg1, arg2); in testObtainWithHandlerWhatAndTwoArgs() local [all …]
|
/aosp_15_r20/external/protobuf/php/ext/google/protobuf/ |
H A D | message.c | 101 static void Message_dtor(zend_object* obj) { in Message_dtor() 114 const upb_MessageDef *m = msg->desc->msgdef; in get_field() local 127 static bool IsWrapper(const upb_MessageDef* m) { in IsWrapper() 220 static bool MessageEq(const upb_Message *m1, const upb_Message *m2, const upb_MessageDef *m) { in MessageEq() 259 const upb_MessageDef *m = intern1->desc->msgdef; in Message_compare_objects() local 284 static int Message_has_property(PROTO_VAL *obj, PROTO_STR *member, in Message_has_property() 319 static void Message_unset_property(PROTO_VAL *obj, PROTO_STR *member, in Message_unset_property() 356 static zval *Message_read_property(PROTO_VAL *obj, PROTO_STR *member, in Message_read_property() 388 PROTO_VAL *obj, PROTO_STR *member, zval *val, void **cache_slot) { in Message_write_property() 521 bool Message_InitFromPhp(upb_Message *msg, const upb_MessageDef *m, zval *init, in Message_InitFromPhp() [all …]
|
/aosp_15_r20/external/cronet/third_party/protobuf/php/ext/google/protobuf/ |
H A D | message.c | 101 static void Message_dtor(zend_object* obj) { in Message_dtor() 114 const upb_MessageDef *m = msg->desc->msgdef; in get_field() local 127 static bool IsWrapper(const upb_MessageDef* m) { in IsWrapper() 220 static bool MessageEq(const upb_Message *m1, const upb_Message *m2, const upb_MessageDef *m) { in MessageEq() 259 const upb_MessageDef *m = intern1->desc->msgdef; in Message_compare_objects() local 284 static int Message_has_property(PROTO_VAL *obj, PROTO_STR *member, in Message_has_property() 319 static void Message_unset_property(PROTO_VAL *obj, PROTO_STR *member, in Message_unset_property() 356 static zval *Message_read_property(PROTO_VAL *obj, PROTO_STR *member, in Message_read_property() 388 PROTO_VAL *obj, PROTO_STR *member, zval *val, void **cache_slot) { in Message_write_property() 521 bool Message_InitFromPhp(upb_Message *msg, const upb_MessageDef *m, zval *init, in Message_InitFromPhp() [all …]
|
/aosp_15_r20/external/apache-velocity-engine/velocity-engine-core/src/main/java/org/apache/velocity/util/introspection/ |
H A D | DeprecatedCheckUberspector.java | 46 public VelMethod getMethod(Object obj, String methodName, Object[] args, Info i) in getMethod() 50 Method m = this.introspector.getMethod(obj.getClass(), method.getMethodName(), args); in getMethod() local 63 public VelPropertyGet getPropertyGet(Object obj, String identifier, Info i) in getPropertyGet() 67 … Method m = this.introspector.getMethod(obj.getClass(), method.getMethodName(), new Object[] {}); in getPropertyGet() local 80 public VelPropertySet getPropertySet(Object obj, String identifier, Object arg, Info i) in getPropertySet() 85 …Method m = this.introspector.getMethod(obj.getClass(), method.getMethodName(), new Object[] { arg … in getPropertySet() local
|
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/third_party/upb/python/ |
D | protobuf.c | 47 PyObject* PyUpb_SetAllowOversizeProtos(PyObject* m, PyObject* arg) { in PyUpb_SetAllowOversizeProtos() 106 PyObject* m = PyState_FindModule(&module_def); in PyUpb_GetWktBases() local 172 bool PyUpb_WeakMap_Next(PyUpb_WeakMap* map, const void** key, PyObject** obj, in PyUpb_WeakMap_Next() 253 static bool PyUpb_InitArena(PyObject* m) { in PyUpb_InitArena() 263 PyTypeObject* AddObject(PyObject* m, const char* name, PyType_Spec* spec) { in AddObject() 279 PyTypeObject* PyUpb_AddClass(PyObject* m, PyType_Spec* spec) { in PyUpb_AddClass() 289 PyTypeObject* PyUpb_AddClassWithBases(PyObject* m, PyType_Spec* spec, in PyUpb_AddClassWithBases() 300 const char* PyUpb_GetStrData(PyObject* obj) { in PyUpb_GetStrData() 310 const char* PyUpb_VerifyStrData(PyObject* obj) { in PyUpb_VerifyStrData() 330 PyObject* m = PyModule_Create(&module_def); in PyInit__message() local
|
/aosp_15_r20/libcore/ojluni/src/test/java/util/Collection/ |
H A D | MOAT.java | 588 private static void testMapMutatorsAlwaysThrow(Map<Integer,Integer> m) { in testMapMutatorsAlwaysThrow() argument 606 private static void testEmptyMapMutatorsAlwaysThrow(Map<Integer,Integer> m) { in testEmptyMapMutatorsAlwaysThrow() argument 621 private static <K,V> void testEmptyMap(final Map<K,V> m) { in testEmptyMap() 646 private static void testImmutableMap(final Map<Integer,Integer> m) { in testImmutableMap() argument 662 private static void testImmutableSeqMap(final SequencedMap<Integer,Integer> m) { in testImmutableSeqMap() argument 690 private static void clear(Map<?,?> m) { in clear() 1157 …Method m = AbstractList.class.getDeclaredMethod("removeRange", new Class[] { int.class, int.class … in testList() local 1291 private static void checkFunctionalInvariants(Map<Integer,Integer> m) { in checkFunctionalInvariants() argument 1313 private static void testMap(Map<Integer,Integer> m) { in testMap() argument 1365 private static boolean supportsPut(Map<Integer,Integer> m) { in supportsPut() argument [all …]
|
/aosp_15_r20/external/kotlinx.serialization/formats/hocon/src/test/kotlin/kotlinx/serialization/hocon/ |
H A D | HoconObjectsTest.kt | 53 val m: Map<String, ConfigObjectInner> constant in kotlinx.serialization.hocon.ConfigParserObjectsTest.ComplexConfig 59 val m: Map<String, NestedObj?>? constant in kotlinx.serialization.hocon.ConfigParserObjectsTest.VeryComplexConfig 86 val obj = deserializeConfig(configString, ComplexConfig.serializer()) in complex config() constant 99 val obj = deserializeConfig(complexConfigString, VeryComplexConfig.serializer()) in very complex config() constant 131 val obj = Hocon.decodeFromConfig(ConfigObject.serializer(), conf) in config with object() constant 139 val obj = deserializeConfig("a: 42, b: [1,2,3,]", ConfWithList.serializer()) in config with list() constant 146 val obj = deserializeConfig("x: [{a: 42}, {a: 43}, {a: 44}]", NestedObj.serializer()) in config with nested object() constant 152 val obj = deserializeConfig("x: { a = 42, b = 43, c = 44 }", ConfWithMap.serializer()) in config with map() constant
|
/aosp_15_r20/art/runtime/jni/ |
H A D | check_jni.cc | 162 jmethodID m; member 193 VarArgs(jmethodID m, va_list var) : m_(m), type_(kTypeVaList), cnt_(0) { in VarArgs() 197 VarArgs(jmethodID m, const jvalue* vals) : m_(m), type_(kTypePtr), cnt_(0), ptr_(vals) {} in VarArgs() 280 VarArgs(jmethodID m, uint32_t cnt, va_list var) : m_(m), type_(kTypeVaList), cnt_(cnt) { in VarArgs() 284 …VarArgs(jmethodID m, uint32_t cnt, const jvalue* vals) : m_(m), type_(kTypePtr), cnt_(cnt), ptr_(v… in VarArgs() 410 ArtMethod* m = CheckMethodID(mid); in CheckMethodAndSig() local 482 ArtMethod* m = CheckMethodID(mid); in CheckStaticMethod() local 504 ArtMethod* m = CheckMethodID(mid); in CheckVirtualMethod() local 707 ObjPtr<mirror::Object> obj = soa.Decode<mirror::Object>(jobj); in CheckThrowable() local 727 bool CheckReferenceKind(IndirectRefKind expected_kind, Thread* self, jobject obj) in CheckReferenceKind() [all …]
|
/aosp_15_r20/external/igt-gpu-tools/tests/i915/ |
H A D | gem_exec_schedule.c | 91 struct drm_i915_gem_exec_object2 obj[3]; in __store_dword() local 358 struct drm_i915_gem_exec_object2 obj = { in semaphore_userlock() local 512 struct drm_i915_gem_exec_object2 obj[3]; in semaphore_resolve() local 628 struct drm_i915_gem_exec_object2 obj[3]; in semaphore_noskip() local 1154 for (int m = 0; m < XS; m ++) in deep() local 1159 struct drm_i915_gem_exec_object2 obj[XS + 2]; in deep() local 1187 struct drm_i915_gem_exec_object2 obj[3]; in deep() local 1229 for (int m = 0; m < XS; m++) { in deep() local 1244 for (int m = 0; m < XS; m++) { in deep() local 1260 for (int m = 0; m < XS; m++) { in deep() local [all …]
|
/aosp_15_r20/external/cronet/third_party/protobuf/php/tests/ |
H A D | test_util.php | 52 public static function setTestMessage(TestMessage $m) 132 public static function setTestMessage2(TestMessage $m) 213 public static function assertTestMessage(TestMessage $m) 382 public static function setTestPackedMessage($m) 414 public static function assertTestPackedMessage($m) 514 private static function appendHelper($obj, $func_suffix, $value) 524 private static function kvUpdateHelper($obj, $func_suffix, $key, $value)
|
/aosp_15_r20/external/protobuf/php/tests/ |
H A D | test_util.php | 52 public static function setTestMessage(TestMessage $m) 132 public static function setTestMessage2(TestMessage $m) 213 public static function assertTestMessage(TestMessage $m) 382 public static function setTestPackedMessage($m) 414 public static function assertTestPackedMessage($m) 514 private static function appendHelper($obj, $func_suffix, $value) 524 private static function kvUpdateHelper($obj, $func_suffix, $key, $value)
|