Home
last modified time | relevance | path

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

/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/skia/tools/fonts/
DTestSVGTypeface.cpp1317 constexpr SkColor currentColor = 0xFF2B0000; in onDrawPath() local
1320 if (color == currentColor) { in onDrawPath()
/third_party/vk-gl-cts/external/vulkan-docs/src/katex/
Dkatex.min.css1 …play:block;position:absolute;width:100%;height:inherit;fill:currentColor;stroke:currentColor;fill-…
Dkatex.css893 fill: currentColor;
894 stroke: currentColor;
/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/node/doc/api_assets/
Dstyle.css883 border-right: 1px currentColor solid;
/third_party/node/doc/api/assets/
Dstyle.css883 border-right: 1px currentColor solid;
/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()