Home
last modified time | relevance | path

Searched refs:fixedColor (Results 1 – 8 of 8) sorted by relevance

/third_party/skia/src/core/
DSkLatticeIter.h38 SkColor* fixedColor = nullptr);
42 SkColor* fixedColor = nullptr) {
44 if (this->next(&isrcR, dst, isFixedColor, fixedColor)) {
DSkLatticeIter.cpp256 bool SkLatticeIter::next(SkIRect* src, SkRect* dst, bool* isFixedColor, SkColor* fixedColor) { in next() argument
274 return this->next(src, dst, isFixedColor, fixedColor); in next()
279 if (isFixedColor && fixedColor) { in next()
283 *fixedColor = fColors[currRect]; in next()
/third_party/flutter/skia/src/core/
DSkLatticeIter.h38 SkColor* fixedColor = nullptr);
42 SkColor* fixedColor = nullptr) {
44 if (this->next(&isrcR, dst, isFixedColor, fixedColor)) {
DSkLatticeIter.cpp256 bool SkLatticeIter::next(SkIRect* src, SkRect* dst, bool* isFixedColor, SkColor* fixedColor) { in next() argument
274 return this->next(src, dst, isFixedColor, fixedColor); in next()
279 if (isFixedColor && fixedColor) { in next()
283 *fixedColor = fColors[currRect]; in next()
/third_party/flutter/skia/gm/
Dlattice.cpp157 SkColor fixedColor[3] = {SK_ColorBLACK, SK_ColorBLACK, SK_ColorBLACK}; in onDrawHelper() local
163 image->readPixels(info, &fixedColor[rectNum], 4, srcX, srcY); in onDrawHelper()
190 = fixedColor[rectNum]; in onDrawHelper()
/third_party/skia/gm/
Dlattice.cpp159 SkColor fixedColor[3] = {SK_ColorBLACK, SK_ColorBLACK, SK_ColorBLACK}; in onDrawHelper() local
165 image->readPixels(dContext, info, &fixedColor[rectNum], 4, srcX, srcY); in onDrawHelper()
192 = fixedColor[rectNum]; in onDrawHelper()
/third_party/flutter/flutter/packages/flutter/lib/src/material/
Dbottom_navigation_bar.dart161 /// Only one of [selectedItemColor] and [fixedColor] can be specified. The
162 /// former is preferred, [fixedColor] only exists for the sake of
177 Color fixedColor,
200 selectedItemColor == null || fixedColor == null,
201 'Either selectedItemColor or fixedColor can be specified, but not both'
207 selectedItemColor = selectedItemColor ?? fixedColor,
242 Color get fixedColor => selectedItemColor;
811 end: widget.selectedItemColor ?? widget.fixedColor ?? themeColor,
/third_party/flutter/flutter/packages/flutter/test/material/
Dbottom_navigation_bar_test.dart602 …testWidgets('Specifying both selectedItemColor and fixedColor asserts', (WidgetTester tester) asyn…
607 fixedColor: Colors.black,
624 …testWidgets('Fixed BottomNavigationBar uses fixedColor when selectedItemColor not provided', (Widg…
625 const Color fixedColor = Colors.black;
632 fixedColor: fixedColor,
648 …expect(tester.renderObject<RenderParagraph>(find.text('AC')).text.style.color, equals(fixedColor));