Home
last modified time | relevance | path

Searched refs:fourth (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/tests/graphics/HwAccelerationTest/src/com/android/test/hwui/
DBitmapsRectActivity.java56 final float fourth = mBitmap1.getWidth() / 4.0f; in BitmapsView() local
58 mSrcRect = new Rect((int) fourth, (int) (half - half / 2.0f), in BitmapsView()
59 (int) (fourth + fourth), (int) (half + half / 2.0f)); in BitmapsView()
60 mDstRect = new RectF(fourth, half - half / 2.0f, fourth + fourth, half + half / 2.0f); in BitmapsView()
61 mDstRect2 = new RectF(fourth, half - half / 2.0f, in BitmapsView()
62 (fourth + fourth) * 3.0f, (half + half / 2.0f) * 3.0f); in BitmapsView()
/frameworks/base/packages/SystemUI/src/com/android/systemui/util/kotlin/
DUtils.kt41 Quint(a, bcde.first, bcde.second, bcde.third, bcde.fourth) in <lambda>()
44 Sextuple(a, bcdef.first, bcdef.second, bcdef.third, bcdef.fourth, bcdef.fifth) in <lambda>()
52 bcdefg.fourth, in <lambda>()
140 data class Quad<A, B, C, D>(val first: A, val second: B, val third: C, val fourth: D) constant in com.android.systemui.util.kotlin.Quad
146 val fourth: D, constant in com.android.systemui.util.kotlin.Quint
154 val fourth: D, constant in com.android.systemui.util.kotlin.Sextuple
163 val fourth: D, constant in com.android.systemui.util.kotlin.Septuple
/frameworks/base/core/tests/coretests/src/android/text/
DSpannableStringBuilderTest.java50 Object fourth = new QuoteSpan(); in testGetSpans_sortsByPriorityEvenWhenSortParamIsFalse() local
55 builder.setSpan(fourth, 0, text.length(), 2 << Spanned.SPAN_PRIORITY_SHIFT); in testGetSpans_sortsByPriorityEvenWhenSortParamIsFalse()
62 assertEquals(fourth, spans[0]); in testGetSpans_sortsByPriorityEvenWhenSortParamIsFalse()
/frameworks/opt/chips/tests/src/com/android/ex/chips/
DChipsTest.java268 String fourth = "FOURTH,"; in testCountTokens() local
271 mEditable.append(first+second+third+fourth+fifth); in testCountTokens()
364 String fourth = (String) mTokenizer.terminateToken("FOURTH"); in testMoreChipLotsOfUsers() local
372 mEditable.append(first+second+third+fourth+fifth+sixth+seventh+eigth+ninth+tenth); in testMoreChipLotsOfUsers()
380 int fourthStart = mEditable.toString().indexOf(fourth); in testMoreChipLotsOfUsers()
381 int fourthEnd = fourthStart + fourth.trim().length(); in testMoreChipLotsOfUsers()
406 assertEquals(mEditable.toString(), first + second + third + fourth + fifth + sixth in testMoreChipLotsOfUsers()
416 assertEquals(mEditable.toString(), first + second + third + fourth + fifth + sixth in testMoreChipLotsOfUsers()
/frameworks/minikin/libs/minikin/
DLocale.cpp123 const uint32_t fourth = (packedScript & FIVE_BITS) + REST_LETTER_BASE; in unpackScript() local
125 return first << 24 | second << 16 | third << 8 | fourth; in unpackScript()
/frameworks/libs/systemui/weathereffects/graphics/assets/shaders/
Dfog_effect.agsl127 /* Add fourth layer: foreground fog (far or 1, and close or 2). */
/frameworks/base/core/java/android/os/
DStrictMode.java1940 final int fourth = path.indexOf('/', third + 1);
1941 if (fourth == -1) return;
1944 final int userId = Integer.parseInt(path.substring(third + 1, fourth));