Home
last modified time | relevance | path

Searched refs:highIndex (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/tools/split-select/
DRuleGenerator_test.cpp58 const ssize_t highIndex = densities.add(ConfigDescription::DENSITY_HIGH); in TEST() local
62 EXPECT_RULES_EQ(RuleGenerator::generateDensity(densities, highIndex), in TEST()
81 const ssize_t highIndex = densities.add(ConfigDescription::DENSITY_HIGH); in TEST() local
86 EXPECT_RULES_EQ(RuleGenerator::generateDensity(densities, highIndex), in TEST()
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
DAppCompatTextViewAutoSizeHelper.java632 int highIndex = sizesCount - 1; in findLargestTextSizeWhichFits() local
634 while (lowIndex <= highIndex) { in findLargestTextSizeWhichFits()
635 sizeToTryIndex = (lowIndex + highIndex) / 2; in findLargestTextSizeWhichFits()
640 highIndex = sizeToTryIndex - 1; in findLargestTextSizeWhichFits()
641 bestSizeIndex = highIndex; in findLargestTextSizeWhichFits()
/frameworks/base/core/java/android/widget/
DTextView.java8325 int highIndex = sizesCount - 1; in findLargestTextSizeWhichFits() local
8327 while (lowIndex <= highIndex) { in findLargestTextSizeWhichFits()
8328 sizeToTryIndex = (lowIndex + highIndex) / 2; in findLargestTextSizeWhichFits()
8333 highIndex = sizeToTryIndex - 1; in findLargestTextSizeWhichFits()
8334 bestSizeIndex = highIndex; in findLargestTextSizeWhichFits()