Lines Matching refs:method
140 jmethodID method = env->GetMethodID(cDeviceInfo, "getWidthPx", "()I"); in Java_com_android_framebufferizer_NativeRenderer_setDeviceInfo() local
142 device_info.width_ = env->CallIntMethod(jDeviceInfo, method); in Java_com_android_framebufferizer_NativeRenderer_setDeviceInfo()
143 method = env->GetMethodID(cDeviceInfo, "getHeightPx", "()I"); in Java_com_android_framebufferizer_NativeRenderer_setDeviceInfo()
144 device_info.height_ = env->CallIntMethod(jDeviceInfo, method); in Java_com_android_framebufferizer_NativeRenderer_setDeviceInfo()
145 method = env->GetMethodID(cDeviceInfo, "getDp2px", "()D"); in Java_com_android_framebufferizer_NativeRenderer_setDeviceInfo()
146 device_info.dp2px_ = env->CallDoubleMethod(jDeviceInfo, method); in Java_com_android_framebufferizer_NativeRenderer_setDeviceInfo()
147 method = env->GetMethodID(cDeviceInfo, "getMm2px", "()D"); in Java_com_android_framebufferizer_NativeRenderer_setDeviceInfo()
148 device_info.mm2px_ = env->CallDoubleMethod(jDeviceInfo, method); in Java_com_android_framebufferizer_NativeRenderer_setDeviceInfo()
149 method = env->GetMethodID(cDeviceInfo, "getPowerButtonTopMm", "()D"); in Java_com_android_framebufferizer_NativeRenderer_setDeviceInfo()
150 device_info.powerButtonTopMm_ = env->CallDoubleMethod(jDeviceInfo, method); in Java_com_android_framebufferizer_NativeRenderer_setDeviceInfo()
151 method = env->GetMethodID(cDeviceInfo, "getPowerButtonBottomMm", "()D"); in Java_com_android_framebufferizer_NativeRenderer_setDeviceInfo()
152 device_info.powerButtonBottomMm_ = env->CallDoubleMethod(jDeviceInfo, method); in Java_com_android_framebufferizer_NativeRenderer_setDeviceInfo()
153 method = env->GetMethodID(cDeviceInfo, "getVolUpButtonTopMm", "()D"); in Java_com_android_framebufferizer_NativeRenderer_setDeviceInfo()
154 device_info.volUpButtonTopMm_ = env->CallDoubleMethod(jDeviceInfo, method); in Java_com_android_framebufferizer_NativeRenderer_setDeviceInfo()
155 method = env->GetMethodID(cDeviceInfo, "getVolUpButtonBottomMm", "()D"); in Java_com_android_framebufferizer_NativeRenderer_setDeviceInfo()
156 device_info.volUpButtonBottomMm_ = env->CallDoubleMethod(jDeviceInfo, method); in Java_com_android_framebufferizer_NativeRenderer_setDeviceInfo()