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

/frameworks/native/include/ui/
H A DANativeObjectBase.h73 static inline TYPE* getSelf(NATIVE_TYPE* self) { function in class:android::ANativeObjectBase
76 static inline TYPE const* getSelf(NATIVE_TYPE const* self) { function in class:android::ANativeObjectBase
79 static inline TYPE* getSelf(android_native_base_t* base) { function in class:android::ANativeObjectBase
80 return getSelf(reinterpret_cast<NATIVE_TYPE*>(base));
82 static inline TYPE const * getSelf(android_native_base_t const* base) { function in class:android::ANativeObjectBase
83 return getSelf(reinterpret_cast<NATIVE_TYPE const*>(base));
86 ANativeObjectBase* self = getSelf(base);
90 ANativeObjectBase* self = getSelf(base);

Completed in 346 milliseconds