Searched defs: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
309 dirtyRect.left = env->GetIntField(dirtyRectObj, gRectClassInfo.left);
310 dirtyRect.top = env->GetIntField(dirtyRectObj, gRectClassInfo.top);
311 dirtyRect.right = env->GetIntField(dirtyRectObj, gRectClassInfo.right);
312 dirtyRect.bottom = env->GetIntField(dirtyRectObj, gRectClassInfo.bottom);
351 env->SetIntField(dirtyRectObj, gRectClassInfo.left, dirtyRect.left);
352 env->SetIntField(dirtyRectObj, gRectClassInfo.top, dirtyRect.top);
353 env->SetIntField(dirtyRectObj, gRectClassInfo.right, dirtyRect.right);
354 env->SetIntField(dirtyRectObj, gRectClassInfo.bottom, dirtyRect.bottom);
637 gRectClassInfo
[all...]
H A Dandroid_view_SurfaceControl.cpp70 } gRectClassInfo; member in namespace:android
136 int left = env->GetIntField(rectObj, gRectClassInfo.left);
137 int top = env->GetIntField(rectObj, gRectClassInfo.top);
138 int right = env->GetIntField(rectObj, gRectClassInfo.right);
139 int bottom = env->GetIntField(rectObj, gRectClassInfo.bottom);
253 int left = env->GetIntField(sourceCropObj, gRectClassInfo.left);
254 int top = env->GetIntField(sourceCropObj, gRectClassInfo.top);
255 int right = env->GetIntField(sourceCropObj, gRectClassInfo.right);
256 int bottom = env->GetIntField(sourceCropObj, gRectClassInfo.bottom);
884 gRectClassInfo
[all...]
/frameworks/base/core/jni/android/graphics/
H A DGraphicBuffer.cpp69 } gRectClassInfo; member in namespace:android
166 rect.left = GET_INT(dirtyRect, gRectClassInfo.left);
167 rect.top = GET_INT(dirtyRect, gRectClassInfo.top);
168 rect.right = GET_INT(dirtyRect, gRectClassInfo.right);
169 rect.bottom = GET_INT(dirtyRect, gRectClassInfo.bottom);
204 INVOKEV(dirtyRect, gRectClassInfo.set,
312 gRectClassInfo.set = GetMethodIDOrDie(env, clazz, "set", "(IIII)V");
313 gRectClassInfo.left = GetFieldIDOrDie(env, clazz, "left", "I");
314 gRectClassInfo.top = GetFieldIDOrDie(env, clazz, "top", "I");
315 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...]

Completed in 80 milliseconds