Home
last modified time | relevance | path

Searched refs:vp (Results 1 – 12 of 12) sorted by relevance

/frameworks/support/design/honeycomb/android/support/design/widget/
DViewGroupUtilsHoneycomb.java55 final View vp = (View) parent; in offsetDescendantMatrix() local
56 offsetDescendantMatrix(target, vp, m); in offsetDescendantMatrix()
57 m.preTranslate(-vp.getScrollX(), -vp.getScrollY()); in offsetDescendantMatrix()
/frameworks/support/design/src/android/support/design/widget/
DViewOffsetHelper.java61 final ViewParent vp = mView.getParent(); in updateOffsets() local
62 if (vp instanceof View) { in updateOffsets()
63 tickleInvalidationFlag((View) vp); in updateOffsets()
/frameworks/base/core/jni/android/opengl/
Dpoly_clip.cpp61 float *up, *vp, *wp; in poly_clip_to_halfspace() local
80 vp = (float *)v; in poly_clip_to_halfspace()
82 for(int i = 0; i < 4; i++, wp++, up++, vp++) { in poly_clip_to_halfspace()
83 *wp = *up+t*(*vp-*up); in poly_clip_to_halfspace()
/frameworks/native/cmds/flatland/
DComposers.cpp56 GLint vp[4]; in modBlit() local
57 glGetIntegerv(GL_VIEWPORT, vp); in modBlit()
59 2.0f/float(vp[2]), 0.0f, 0.0f, 0.0f, in modBlit()
60 0.0f, -2.0f/float(vp[3]), 0.0f, 0.0f, in modBlit()
/frameworks/av/cmds/screenrecord/
DProgram.cpp246 GLint vp[4]; in beforeDraw() local
247 glGetIntegerv(GL_VIEWPORT, vp); in beforeDraw()
249 2.0f/float(vp[2]), 0.0f, 0.0f, 0.0f, in beforeDraw()
250 0.0f, -2.0f/float(vp[3]), 0.0f, 0.0f, in beforeDraw()
/frameworks/base/media/java/android/media/session/
DMediaSession.java1204 VolumeProvider vp; in handleMessage() local
1257 vp = mVolumeProvider; in handleMessage()
1259 if (vp != null) { in handleMessage()
1260 vp.onAdjustVolume((int) msg.obj); in handleMessage()
1265 vp = mVolumeProvider; in handleMessage()
1267 if (vp != null) { in handleMessage()
1268 vp.onSetVolumeTo((int) msg.obj); in handleMessage()
/frameworks/rs/
DrsProgram.cpp215 void rsi_ProgramBindConstants(Context *rsc, RsProgram vp, uint32_t slot, RsAllocation constants) { in rsi_ProgramBindConstants() argument
216 Program *p = static_cast<Program *>(vp); in rsi_ProgramBindConstants()
Drsg.spec23 param RsProgram vp
/frameworks/support/v4/java/android/support/v4/media/session/
DMediaSessionCompat.java1586 VolumeProviderCompat vp = mVolumeProvider; in getVolumeAttributes() local
1588 controlType = vp.getVolumeControl(); in getVolumeAttributes()
1589 max = vp.getMaxVolume(); in getVolumeAttributes()
1590 current = vp.getCurrentVolume(); in getVolumeAttributes()
/frameworks/native/opengl/libagl/
Darray.cpp957 const GLubyte* vp = c->arrays.vertex.element(first); in compileElement__generic() local
960 c->arrays.vertex.fetch(c, v->obj.v, vp); in compileElement__generic()
968 const GLubyte* vp = c->arrays.vertex.element( in compileElements__generic() local
977 c->arrays.vertex.fetch(c, v->obj.v, vp); in compileElements__generic()
980 vp += stride; in compileElements__generic()
/frameworks/base/core/java/android/view/
DView.java18135 final View vp = (View) parent;
18136 vp.transformMatrixToGlobal(m);
18137 m.preTranslate(-vp.mScrollX, -vp.mScrollY);
18161 final View vp = (View) parent;
18162 vp.transformMatrixToLocal(m);
18163 m.postTranslate(vp.mScrollX, vp.mScrollY);
/frameworks/av/services/audioflinger/
DThreads.cpp3810 VolumeProvider *vp = track; in prepareTracks_l() local
3812 fastTrack->mVolumeProvider = vp; in prepareTracks_l()