Home
last modified time | relevance | path

Searched refs:normal (Results 1 – 25 of 28) sorted by relevance

12

/aosp14/frameworks/base/tests/Internal/src/com/android/internal/colorextraction/types/
H A DTonalTest.java47 GradientColors normal = new GradientColors(); in extractInto_usesFallback() local
49 tonal.extractInto(null, normal, new GradientColors(), in extractInto_usesFallback()
52 normal.getMainColor() == Tonal.MAIN_COLOR_LIGHT); in extractInto_usesFallback()
57 GradientColors normal = new GradientColors(); in extractInto_usesFallbackWhenTooLightOrDark() local
62 normal.getMainColor() == Tonal.MAIN_COLOR_DARK); in extractInto_usesFallbackWhenTooLightOrDark()
74 GradientColors normal = new GradientColors(); in extractInto_fromBitmap() local
81 tonal.extractInto(wallColors, normal, dark, extraDark); in extractInto_fromBitmap()
83 assertThat(normal.getMainColor()).isEqualTo(Color.RED); in extractInto_fromBitmap()
89 GradientColors normal = new GradientColors(); in extractInto_supportsDarkText() local
96 tonal.extractInto(wallColors, normal, dark, extraDark); in extractInto_supportsDarkText()
[all …]
/aosp14/frameworks/base/libs/hwui/tests/unit/
H A DTypefaceTests.cpp105 EXPECT_EQ(400, normal->fStyle.weight()); in TEST()
107 EXPECT_EQ(Typeface::kNormal, normal->fAPIStyle); in TEST()
134 EXPECT_EQ(700, normal->fStyle.weight()); in TEST()
136 EXPECT_EQ(Typeface::kNormal, normal->fAPIStyle); in TEST()
167 EXPECT_EQ(300, normal->fStyle.weight()); in TEST()
169 EXPECT_EQ(Typeface::kNormal, normal->fAPIStyle); in TEST()
200 EXPECT_EQ(400, normal->fStyle.weight()); in TEST()
202 EXPECT_EQ(Typeface::kNormal, normal->fAPIStyle); in TEST()
214 EXPECT_EQ(400, normal->fStyle.weight()); in TEST()
235 EXPECT_EQ(400, normal->fStyle.weight()); in TEST()
[all …]
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/assist/ui/
H A DCornerPathRenderer.java82 PointF normal = normalAt(input, i); in shiftBy() local
84 new PointF(point.x + (normal.x * delta), point.y + (normal.y * delta)); in shiftBy()
137 float normal = 1 / magnitude; in normalize() local
138 return new PointF((point.x * normal), (point.y * normal)); in normalize()
/aosp14/frameworks/base/docs/html/sdk/support_api_diff/25.0.0/
H A Dstylesheet-jdiff.css8 .diffspectable td {background-color:eee;border:0px;font-size:90%;font-weight:normal;padding:0px;pa…
9 td.diffvalueold {color:orange;background-color:white;border:0px;font-size:80%;font-style:normal;tex…
10 td.diffvaluenew {color:green;background-color:white;border:0px;font-size:80%;font-weight:normal;tex…
11 td.diffvalue {color:444;background-color:white;border:0px;font-size:80%;font-weight:normal;text-ali…
12 td.diffspec {background-color:white;border:0px;font-size:80%;font-weight:normal;padding:1px;color:4…
/aosp14/frameworks/base/docs/html/sdk/support_api_diff/25.1.0/
H A Dstylesheet-jdiff.css8 .diffspectable td {background-color:eee;border:0px;font-size:90%;font-weight:normal;padding:0px;pa…
9 td.diffvalueold {color:orange;background-color:white;border:0px;font-size:80%;font-style:normal;tex…
10 td.diffvaluenew {color:green;background-color:white;border:0px;font-size:80%;font-weight:normal;tex…
11 td.diffvalue {color:444;background-color:white;border:0px;font-size:80%;font-weight:normal;text-ali…
12 td.diffspec {background-color:white;border:0px;font-size:80%;font-weight:normal;padding:1px;color:4…
/aosp14/frameworks/base/tools/aapt2/integration-tests/DumpTest/
H A Dbuilt_with_aapt_expected.txt8 supports-screens: 'small' 'normal' 'large' 'xlarge'
H A Dmultiple_uses_sdk_expected.txt20 supports-screens: 'small' 'normal' 'large' 'xlarge'
H A Dcomponents_expected.txt49 supports-screens: 'normal' 'large' 'xlarge'
H A Dminimal_expected.txt89 supports-screens: 'small' 'normal' 'large' 'xlarge'
/aosp14/frameworks/base/core/res/
H A DAndroid.bp166 name: "permission-list-normal",
167 out: ["permission-list-normal.txt"],
/aosp14/frameworks/base/core/proto/android/server/
H A Dface.proto42 optional FaceActionStatsProto normal = 3; field
H A Dfingerprint.proto42 optional PerformanceStatsProto normal = 3; field
H A Djobscheduler.proto194 // normal memory state.
396 optional MaxJobCountsProto normal = 1; field
/aosp14/frameworks/base/core/java/android/provider/
H A DFontsContract.java701 final FontStyle normal = new FontStyle(FontStyle.FONT_WEIGHT_NORMAL, in buildTypeface() local
704 int bestScore = normal.getMatchScore(bestFont.getStyle()); in buildTypeface()
707 final int score = normal.getMatchScore(candidate.getStyle()); in buildTypeface()
/aosp14/frameworks/base/core/tests/coretests/
H A DREADME29 Next, install the resulting APK and run tests as you would normal JUnit tests:
/aosp14/frameworks/base/core/java/android/text/format/
H A DTimeFormatter.java523 private static String getFormat(int modifier, String normal, String underscore, String dash, in getFormat() argument
533 return normal; in getFormat()
/aosp14/frameworks/base/apex/jobscheduler/service/java/com/android/server/job/
H A DJobConcurrencyManager.java422 private WorkTypeConfig mWorkTypeConfig = CONFIG_LIMITS_SCREEN_OFF.normal;
755 mWorkTypeConfig = workConfigs.normal; in updateCounterConfigLocked()
2024 CONFIG_LIMITS_SCREEN_ON.normal.update(properties, mSteadyStateConcurrencyLimit); in updateConfigLocked()
2029 CONFIG_LIMITS_SCREEN_OFF.normal.update(properties, mSteadyStateConcurrencyLimit); in updateConfigLocked()
2070 CONFIG_LIMITS_SCREEN_ON.normal.dump(pw); in dumpLocked()
2078 CONFIG_LIMITS_SCREEN_OFF.normal.dump(pw); in dumpLocked()
2511 public final WorkTypeConfig normal; field in WorkConfigLimitsPerMemoryTrimLevel
2516 WorkConfigLimitsPerMemoryTrimLevel(WorkTypeConfig normal, WorkTypeConfig moderate, in WorkConfigLimitsPerMemoryTrimLevel() argument
2518 this.normal = normal; in WorkConfigLimitsPerMemoryTrimLevel()
/aosp14/frameworks/base/packages/SystemUI/docs/
H A Dphysics-animation-testing.md7 …imation to finish before we can assert anything about its end state. For normal animations, we can…
/aosp14/frameworks/base/tools/aapt2/
H A DConfiguration.proto161 // Whether the device screen is classified as small, normal, large, xlarge.
/aosp14/frameworks/base/graphics/java/android/graphics/
H A DTypeface.java365 final FontStyle normal = new FontStyle(FontStyle.FONT_WEIGHT_NORMAL, in createFromResources() local
368 int bestScore = normal.getMatchScore(bestFont.getStyle()); in createFromResources()
371 final int score = normal.getMatchScore(candidate.getStyle()); in createFromResources()
/aosp14/frameworks/base/services/core/java/com/android/server/am/
H A DBroadcastQueue.md94 prefer to dispatch before the normal `mPending` queue.
/aosp14/frameworks/base/services/core/java/com/android/server/wm/
H A DBLASTSync.md161 In normal operation, getSyncTransaction and getPendingTransaction both refer to the same
185 (as we do in normal time), then we could create ordering issues, since the pending
/aosp14/system/core/fastboot/
H A DREADME.md154 and should be booted according to the normal
157 continue Continue booting as normal (if possible)
/aosp14/frameworks/base/apex/jobscheduler/service/java/com/android/server/tare/
H A DREADME.md129 main account, but would help to make sure that normal actions don't interfere too much with more
/aosp14/frameworks/base/core/proto/android/os/
H A Dbatterystats.proto760 // process, though the system will try much harder than normal to avoid

12