Searched defs:getSelf (Results 1 - 1 of 1) sorted by relevance

/frameworks/native/include/ui/
H A DANativeObjectBase.h75 static inline TYPE* getSelf(NATIVE_TYPE* self) { function in class:android::ANativeObjectBase
78 static inline TYPE const* getSelf(NATIVE_TYPE const* self) { function in class:android::ANativeObjectBase
81 static inline TYPE* getSelf(android_native_base_t* base) { function in class:android::ANativeObjectBase
82 return getSelf(reinterpret_cast<NATIVE_TYPE*>(base));
84 static inline TYPE const * getSelf(android_native_base_t const* base) { function in class:android::ANativeObjectBase
85 return getSelf(reinterpret_cast<NATIVE_TYPE const*>(base));
88 ANativeObjectBase* self = getSelf(base);
92 ANativeObjectBase* self = getSelf(base);

Completed in 5 milliseconds