Searched refs:gRectClassInfo (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/core/jni/
H A Dandroid_hardware_display_DisplayViewport.cpp50 } gRectClassInfo; member in namespace:android
69 viewport->logicalLeft = env->GetIntField(logicalFrameObj, gRectClassInfo.left);
70 viewport->logicalTop = env->GetIntField(logicalFrameObj, gRectClassInfo.top);
71 viewport->logicalRight = env->GetIntField(logicalFrameObj, gRectClassInfo.right);
72 viewport->logicalBottom = env->GetIntField(logicalFrameObj, gRectClassInfo.bottom);
76 viewport->physicalLeft = env->GetIntField(physicalFrameObj, gRectClassInfo.left);
77 viewport->physicalTop = env->GetIntField(physicalFrameObj, gRectClassInfo.top);
78 viewport->physicalRight = env->GetIntField(physicalFrameObj, gRectClassInfo.right);
79 viewport->physicalBottom = env->GetIntField(physicalFrameObj, gRectClassInfo.bottom);
112 gRectClassInfo
[all...]
H A Dandroid_view_TextureView.cpp48 } gRectClassInfo; member in namespace:android
148 rect.left = GET_INT(dirtyRect, gRectClassInfo.left);
149 rect.top = GET_INT(dirtyRect, gRectClassInfo.top);
150 rect.right = GET_INT(dirtyRect, gRectClassInfo.right);
151 rect.bottom = GET_INT(dirtyRect, gRectClassInfo.bottom);
177 INVOKEV(dirtyRect, gRectClassInfo.set,
216 gRectClassInfo.set = GetMethodIDOrDie(env, clazz, "set", "(IIII)V");
217 gRectClassInfo.left = GetFieldIDOrDie(env, clazz, "left", "I");
218 gRectClassInfo.top = GetFieldIDOrDie(env, clazz, "top", "I");
219 gRectClassInfo
[all...]
H A Dandroid_view_Surface.cpp76 } gRectClassInfo; member in namespace:android
315 dirtyRect.left = env->GetIntField(dirtyRectObj, gRectClassInfo.left);
316 dirtyRect.top = env->GetIntField(dirtyRectObj, gRectClassInfo.top);
317 dirtyRect.right = env->GetIntField(dirtyRectObj, gRectClassInfo.right);
318 dirtyRect.bottom = env->GetIntField(dirtyRectObj, gRectClassInfo.bottom);
357 env->SetIntField(dirtyRectObj, gRectClassInfo.left, dirtyRect.left);
358 env->SetIntField(dirtyRectObj, gRectClassInfo.top, dirtyRect.top);
359 env->SetIntField(dirtyRectObj, gRectClassInfo.right, dirtyRect.right);
360 env->SetIntField(dirtyRectObj, gRectClassInfo.bottom, dirtyRect.bottom);
659 gRectClassInfo
[all...]
H A Dandroid_view_SurfaceControl.cpp71 } gRectClassInfo; member in namespace:android
137 int left = env->GetIntField(rectObj, gRectClassInfo.left);
138 int top = env->GetIntField(rectObj, gRectClassInfo.top);
139 int right = env->GetIntField(rectObj, gRectClassInfo.right);
140 int bottom = env->GetIntField(rectObj, gRectClassInfo.bottom);
263 int left = env->GetIntField(sourceCropObj, gRectClassInfo.left);
264 int top = env->GetIntField(sourceCropObj, gRectClassInfo.top);
265 int right = env->GetIntField(sourceCropObj, gRectClassInfo.right);
266 int bottom = env->GetIntField(sourceCropObj, gRectClassInfo.bottom);
895 gRectClassInfo
[all...]
/frameworks/base/core/jni/android/graphics/pdf/
H A DPdfEditor.cpp57 } gRectClassInfo; member in namespace:android
250 env->SetIntField(outBox, gRectClassInfo.left, (int) left);
251 env->SetIntField(outBox, gRectClassInfo.top, (int) top);
252 env->SetIntField(outBox, gRectClassInfo.right, (int) right);
253 env->SetIntField(outBox, gRectClassInfo.bottom, (int) bottom);
284 const int left = env->GetIntField(box, gRectClassInfo.left);
285 const int top = env->GetIntField(box, gRectClassInfo.top);
286 const int right = env->GetIntField(box, gRectClassInfo.right);
287 const int bottom = env->GetIntField(box, gRectClassInfo.bottom);
339 gRectClassInfo
[all...]
/frameworks/base/core/jni/android/graphics/
H A DGraphicBuffer.cpp72 } gRectClassInfo; member in namespace:android
177 rect.left = GET_INT(dirtyRect, gRectClassInfo.left);
178 rect.top = GET_INT(dirtyRect, gRectClassInfo.top);
179 rect.right = GET_INT(dirtyRect, gRectClassInfo.right);
180 rect.bottom = GET_INT(dirtyRect, gRectClassInfo.bottom);
215 INVOKEV(dirtyRect, gRectClassInfo.set,
324 gRectClassInfo.set = GetMethodIDOrDie(env, clazz, "set", "(IIII)V");
325 gRectClassInfo.left = GetFieldIDOrDie(env, clazz, "left", "I");
326 gRectClassInfo.top = GetFieldIDOrDie(env, clazz, "top", "I");
327 gRectClassInfo
[all...]

Completed in 115 milliseconds