Home
last modified time | relevance | path

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

/frameworks/base/core/tests/coretests/src/android/view/
DCreateViewTest.java46 LinearLayout vert = new LinearLayout(mContext); in testLayout2() local
47 vert.addView(new CreateViewTest.ViewOne(mContext), in testLayout2()
53 LinearLayout vert = new LinearLayout(mContext); in testLayout3() local
56 vert.addView(one, new LinearLayout.LayoutParams(MATCH_PARENT, MATCH_PARENT, 0)); in testLayout3()
59 vert.addView(two, new LinearLayout.LayoutParams(MATCH_PARENT, MATCH_PARENT, 0)); in testLayout3()
62 vert.addView(three, new LinearLayout.LayoutParams(MATCH_PARENT, MATCH_PARENT, 0)); in testLayout3()
65 vert.addView(four, new LinearLayout.LayoutParams(MATCH_PARENT, MATCH_PARENT, 0)); in testLayout3()
68 vert.addView(five, new LinearLayout.LayoutParams(MATCH_PARENT, MATCH_PARENT, 0)); in testLayout3()
71 vert.addView(six, new LinearLayout.LayoutParams(MATCH_PARENT, MATCH_PARENT, 0)); in testLayout3()
85 LinearLayout vert = new LinearLayout(mContext); in testLayout5() local
[all …]
/frameworks/base/core/jni/android/opengl/
Dpoly_clip.cpp39 #define COORD(vert, i) ((float *)(vert))[i] argument
70 u = &p->vert[p->n-1]; in poly_clip_to_halfspace()
72 for (v= &p->vert[0], i=p->n; i>0; i--, u=v, tu=tv, v++) { in poly_clip_to_halfspace()
81 wp = (float *)&q->vert[q->n].sx; in poly_clip_to_halfspace()
88 q->vert[q->n++] = *v; in poly_clip_to_halfspace()
114 for (v=p1->vert, i=p1->n; i>0; i--, v++) { in poly_clip_to_frustum()
Dpoly.h40 Poly_vert vert[POLY_NMAX]; /* vertices */ member
Dutil.cpp60 Poly_vert* pV = & pPoly->vert[i];
117 float* pDest = & poly.vert[0].sx; in visibilityTest()
/frameworks/rs/tests/java_api/VrDemo/src/com/example/android/rs/vr/engine/
Drasterize.rs23 float vert[3 * 8];
85 f1.x = vert[p1];
86 f1.y = vert[p1 + 1];
87 f1.z = vert[p1 + 2];
88 f2.x = vert[p2];
89 f2.y = vert[p2 + 1];
90 f2.z = vert[p2 + 2];
91 f3.x = vert[p3];
92 f3.y = vert[p3 + 1];
93 f3.z = vert[p3 + 2];
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationGuts.java266 double vert = Math.max(getHeight() - y, y); in animateOpen() local
267 float r = (float) Math.hypot(horz, vert); in animateOpen()
301 double vert = Math.max(getHeight() - y, y); in animateClose() local
302 float r = (float) Math.hypot(horz, vert); in animateClose()
/frameworks/rs/tests/java_api/ImageProcessing/src/com/android/rs/image/
Dthreshold.rs77 uchar4 RS_KERNEL vert(uint32_t x, uint32_t y) {
/frameworks/rs/tests/java_api/ImageProcessing2/src/com/android/rs/image/
Dthreshold.rs77 uchar4 RS_KERNEL vert(uint32_t x, uint32_t y) {
/frameworks/rs/tests/java_api/ImageProcessing_jb/src/com/android/rs/image/
Dthreshold.rs77 uchar4 RS_KERNEL vert(uint32_t x, uint32_t y) {
Dthreshold_half.rs77 uchar4 RS_KERNEL vert(uint32_t x, uint32_t y) {
/frameworks/base/media/java/android/media/
DMediaCodec.java3709 int vert = info.getInt(); in MediaImage() local
3710 if (horiz != vert || horiz != (ix == 0 ? 1 : 2)) { in MediaImage()
3712 + horiz + "x" + vert + " on plane " + ix); in MediaImage()
3721 + (xOffset / horiz) * colInc + (yOffset / vert) * rowInc); in MediaImage()
3723 + (mHeight / vert - 1) * rowInc + (mWidth / horiz - 1) * colInc); in MediaImage()
/frameworks/base/core/java/android/widget/
DTextView.java11366 protected void onScrollChanged(int horiz, int vert, int oldHoriz, int oldVert) { in onScrollChanged() argument
11367 super.onScrollChanged(horiz, vert, oldHoriz, oldVert); in onScrollChanged()