OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:modifierMapIndex
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/tests/CanvasCompare/src/com/android/test/hwuicompare/
DisplayModifier.java
440
int
modifierMapIndex
= gMaps.size() - 1;
441
while (
modifierMapIndex
>= 0) {
442
LinkedHashMap<String, DisplayModifier> map = getMapAtIndex(
modifierMapIndex
);
443
mIndices[
modifierMapIndex
] += (forward ? 1 : -1);
445
if (mIndices[
modifierMapIndex
] >= 0 && mIndices[
modifierMapIndex
] < map.size()) {
449
mIndices[
modifierMapIndex
] = (forward ? 0 : map.size() - 1);
450
modifierMapIndex
--;
452
return
modifierMapIndex
< 0; // true if resetting
/cts/tests/tests/uirendering/src/android/uirendering/cts/testinfrastructure/
DisplayModifier.java
476
int
modifierMapIndex
= mIndices.length - 1;
478
while (
modifierMapIndex
>= 0) {
479
LinkedHashMap<String, DisplayModifier> map = getMapAtIndex(
modifierMapIndex
);
480
mIndices[
modifierMapIndex
]++;
483
if (mIndices[
modifierMapIndex
] < map.size()) {
489
if (
modifierMapIndex
== 0) {
493
mIndices[
modifierMapIndex
] = 0;
495
modifierMapIndex
--;
Completed in 131 milliseconds