Home
last modified time | relevance | path

Searched refs:currentColor (Results 1 – 20 of 20) sorted by relevance

/third_party/freetype/docs/reference/assets/images/icons/
Dgitlab.6dd19c00.svg1currentColor" d="M93.667 473.347l90.684-279.097H2.983l90.684 279.097z" transform="translate(156.19…
Dgithub.f0b8504a.svg1 …th="416" height="448" viewBox="0 0 416 448" id="__github"><path fill="currentColor" d="M160 304q0 …
Dbitbucket.1b09e088.svg1 …"352" height="448" viewBox="0 0 352 448" id="__bitbucket"><path fill="currentColor" d="M203.75 214…
/third_party/typescript/tests/baselines/reference/
DassignmentCompatWithDiscriminatedUnion.js118 function drawWithColor(currentColor: 'blue' | 'yellow' | undefined) {
119 return draw({ color: currentColor });
256 function drawWithColor(currentColor) { argument
257 return draw({ color: currentColor });
DassignmentCompatWithDiscriminatedUnion.types301 function drawWithColor(currentColor: 'blue' | 'yellow' | undefined) {
302 >drawWithColor : (currentColor: 'blue' | 'yellow' | undefined) => void
303 >currentColor : "blue" | "yellow"
305 return draw({ color: currentColor });
306 >draw({ color: currentColor }) : void
308 >{ color: currentColor } : { color: "blue" | "yellow"; }
310 >currentColor : "blue" | "yellow"
DassignmentCompatWithDiscriminatedUnion.symbols329 function drawWithColor(currentColor: 'blue' | 'yellow' | undefined) {
331 >currentColor : Symbol(currentColor, Decl(assignmentCompatWithDiscriminatedUnion.ts, 116, 27))
333 return draw({ color: currentColor });
336 >currentColor : Symbol(currentColor, Decl(assignmentCompatWithDiscriminatedUnion.ts, 116, 27))
DassignmentCompatWithDiscriminatedUnion.errors.txt148 function drawWithColor(currentColor: 'blue' | 'yellow' | undefined) {
149 return draw({ color: currentColor });
/third_party/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/
DassignmentCompatWithDiscriminatedUnion.ts117 function drawWithColor(currentColor: 'blue' | 'yellow' | undefined) {
118 return draw({ color: currentColor });
/third_party/skia/src/shaders/gradients/
DSk4fLinearGradient.cpp241 DstTraits<premul>::store(proc.currentColor(), dst, n); in shadeSpanInternal()
243 ramp<premul>(proc.currentColor(), proc.currentColorGrad(), dst, n, in shadeSpanInternal()
303 const Sk4f& currentColor() const { return fCc; } in currentColor() function in SkLinearGradient::LinearGradient4fContext::LinearIntervalProcessor
/third_party/flutter/skia/src/shaders/gradients/
DSk4fLinearGradient.cpp240 DstTraits<premul>::store(proc.currentColor(), dst, n); in shadeSpanInternal()
242 ramp<premul>(proc.currentColor(), proc.currentColorGrad(), dst, n, in shadeSpanInternal()
302 const Sk4f& currentColor() const { return fCc; } in currentColor() function in SkLinearGradient::LinearGradient4fContext::LinearIntervalProcessor
/third_party/flutter/flutter/packages/flutter/lib/src/material/
Dicon_button.dart276 Color currentColor;
278 currentColor = color;
280 currentColor = disabledColor ?? Theme.of(context).disabledColor;
294 color: currentColor,
Dtoggle_buttons.dart728 Color currentColor;
737 currentColor = selectedColor
752 currentColor = color
766 currentColor = disabledColor
776 color: currentColor,
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/
Dqueryutils.cpp2182 const ColorF &currentColor = state->getCurrentColor(); in GetMaterialParameters() local
2191 currentColor.writeData(params); in GetMaterialParameters()
2201 currentColor.writeData(params); in GetMaterialParameters()
/third_party/flutter/skia/tools/fonts/
DTestSVGTypeface.cpp1321 constexpr SkColor currentColor = 0xFF2B0000; in onDrawPath() local
1324 if (color == currentColor) { in onDrawPath()
/third_party/skia/tools/fonts/
DTestSVGTypeface.cpp1317 constexpr SkColor currentColor = 0xFF2B0000; in onDrawPath() local
1320 if (color == currentColor) { in onDrawPath()
/third_party/flutter/skia/third_party/externals/sdl/src/render/psp/
DSDL_render_psp.c138 unsigned int currentColor; member
/third_party/node/doc/api/assets/
Dstyle.css170 border-right: 1px currentColor solid;
/third_party/node/doc/api_assets/
Dstyle.css170 border-right: 1px currentColor solid;
/third_party/skia/third_party/externals/angle2/src/libANGLE/
Dqueryutils.cpp2455 const ColorF &currentColor = state->getCurrentColor(); in GetMaterialParameters() local
2464 currentColor.writeData(params); in GetMaterialParameters()
2474 currentColor.writeData(params); in GetMaterialParameters()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/multiview/
DvktMultiViewRenderTests.cpp1345 const tcu::Vec4 currentColor = pixelBuffer.getPixel(x, y, layerNdx); in fillQuarter() local
1346 const tcu::Vec4& newColor = (currentColor[0] < color[0]) ? currentColor : color; in fillQuarter()