Home
last modified time | relevance | path

Searched full:colour (Results 1 – 25 of 272) sorted by relevance

1234567891011

/third_party/typescript/tests/baselines/reference/
DnestedFreshLiteral.types17 >{ nested: { prop: { colour: 'red' } }} : { nested: { prop: { colour: string; }; }; }
19 nested: { prop: { colour: 'red' } }
20 >nested : { prop: { colour: string; }; }
21 >{ prop: { colour: 'red' } } : { prop: { colour: string; }; }
22 >prop : { colour: string; }
23 >{ colour: 'red' } : { colour: string; }
24 >colour : string
DobjectLiteralExcessProperties.types34 var b4: Book & Cover = { foreword: "hi", colour: "blue" };
36 >{ foreword: "hi", colour: "blue" } : { foreword: string; colour: string; }
39 >colour : string
93 var b11: Indexed = { 0: { colour: "blue" } }; // nested object literal still errors
95 >{ 0: { colour: "blue" } } : { 0: { colour: string; }; }
96 >0 : { colour: string; }
97 >{ colour: "blue" } : { colour: string; }
98 >colour : string
DnestedFreshLiteral.errors.txt1 tests/cases/compiler/nestedFreshLiteral.ts(12,21): error TS2322: Type '{ colour: string; }' is not …
2 …Object literal may only specify known properties, but 'colour' does not exist in type 'CSSProps'. …
17 nested: { prop: { colour: 'red' } }
19 !!! error TS2322: Type '{ colour: string; }' is not assignable to type 'CSSProps'.
20 !!! error TS2322: Object literal may only specify known properties, but 'colour' does not exist i…
DobjectLiteralExcessProperties.errors.txt7 …teralExcessProperties.ts(15,42): error TS2322: Type '{ foreword: string; colour: string; }' is not…
8 …Object literal may only specify known properties, but 'colour' does not exist in type 'Book & Cove…
19 tests/cases/compiler/objectLiteralExcessProperties.ts(33,27): error TS2322: Type '{ colour: string;…
20 …Object literal may only specify known properties, but 'colour' does not exist in type 'Cover'. Did…
59 var b4: Book & Cover = { foreword: "hi", colour: "blue" };
61 !!! error TS2322: Type '{ foreword: string; colour: string; }' is not assignable to type 'Book & Co…
62 !!! error TS2322: Object literal may only specify known properties, but 'colour' does not exist i…
95 var b11: Indexed = { 0: { colour: "blue" } }; // nested object literal still errors
97 !!! error TS2322: Type '{ colour: string; }' is not assignable to type 'Cover'.
98 !!! error TS2322: Object literal may only specify known properties, but 'colour' does not exist i…
DjsdocParamTagInvalid.errors.txt1 /a.js(1,21): error TS8024: JSDoc '@param' tag has name 'colour', but there is no parameter with tha…
5 /** @param {string} colour */
7 !!! error TS8024: JSDoc '@param' tag has name 'colour', but there is no parameter with that name.
DobjectLiteralExcessProperties.js16 var b4: Book & Cover = { foreword: "hi", colour: "blue" }; property
34 var b11: Indexed = { 0: { colour: "blue" } }; // nested object literal still errors property
58 var b4 = { foreword: "hi", colour: "blue" }; property
65 var b11 = { 0: { colour: "blue" } }; // nested object literal still errors property
DnestedFreshLiteral.symbols27 nested: { prop: { colour: 'red' } }
30 >colour : Symbol(colour, Decl(nestedFreshLiteral.ts, 11, 19))
DobjectLiteralExcessProperties.symbols33 var b4: Book & Cover = { foreword: "hi", colour: "blue" };
38 >colour : Symbol(colour, Decl(objectLiteralExcessProperties.ts, 14, 40))
87 var b11: Indexed = { 0: { colour: "blue" } }; // nested object literal still errors
91 >colour : Symbol(colour, Decl(objectLiteralExcessProperties.ts, 32, 25))
DnestedFreshLiteral.js13 nested: { prop: { colour: 'red' } } property
18 nested: { prop: { colour: 'red' } } property
/third_party/typescript/tests/cases/fourslash/server/
DquickinfoWrongComment.ts4 //// /** The colour */
5 //// readonly colour: string
8 //// readonly colour: "red" | "green";
11 //// readonly colour: "yellow" | "green";
14 //// const f: F = { colour: "green" }
15 //// f.colour/*1*/
18 verify.quickInfoIs("(property) colour: \"red\" | \"green\" | \"yellow\"", "The colour")
/third_party/cJSON/tests/unity/auto/
Dcolour_prompt.rb12 puts '"Win32API" is required for colour on a windows machine'
39 def win32_colour(colour) argument
40 case colour
62 def posix_colour(colour) argument
83 case colour
98 def out_c(mode, colour, str) argument
101 change_to(colour)
106 $stdout.puts("#{change_to(colour)}#{str}\033[0m") if mode == :puts
107 $stdout.print("#{change_to(colour)}#{str}\033[0m") if mode == :print
Dcolour_reporter.rb18 colour = case line
34 colour_puts(colour, line)
/third_party/unity/auto/
Dcolour_prompt.rb12 puts '"Win32API" is required for colour on a windows machine'
40 def win32_colour(colour) argument
41 case colour
63 def posix_colour(colour) argument
84 case colour
99 def out_c(mode, colour, str) argument
102 change_to(colour)
107 $stdout.puts("#{change_to(colour)}#{str}\033[0m") if mode == :puts
108 $stdout.print("#{change_to(colour)}#{str}\033[0m") if mode == :print
Dcolour_reporter.rb18 colour = case line
34 colour_puts(colour, line)
/third_party/mesa3d/src/nouveau/codegen/
Dnv50_ir_print.cpp60 static const char **colour; variable
65 colour = _nocolour; in init_colours()
67 colour = _colour; in init_colours()
440 PRINT("%s", colour[TXT_INSN]); in print()
509 PRINT("%s%c%c%i%s", colour[col], p, r, idx, postFix); in print()
518 PRINT("%s", colour[TXT_IMMD]); in print()
555 PRINT("%ssv[%s%s:%i%s", colour[TXT_MEM], in print()
556 colour[TXT_REGISTER], in print()
557 SemanticStr[reg.data.sv.sv], reg.data.sv.index, colour[TXT_MEM]); in print()
559 PRINT("%s+", colour[TXT_DEFAULT]); in print()
[all …]
/third_party/openssl/test/
Dproperty_test.c210 { "", "colour=blue", "colour=blue" },
211 { "colour=blue", "", "colour=blue" },
212 { "colour=red", "colour=blue", "colour=blue" },
213 { "clouds=pink, urn=red", "urn=blue, colour=green",
214 "urn=blue, colour=green, clouds=pink" },
239 && add_property_names("colour", "urn", "clouds", "pot", "day", "night", in test_property_merge()
396 { &fake_prov1, 1, "fast=no, colour=green", "a" }, in test_property()
397 { &fake_prov1, 1, "fast, colour=blue", "b" }, in test_property()
401 { &fake_prov2, 6, "sky.colour=blue, sky=green, old.data", "e" }, in test_property()
411 { &fake_prov1, 1, "fast=no, colour=green", "a" }, in test_property()
[all …]
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/4.3/template_string_type_improvements/
Dtemplate_string_type_improvements_1.ts26 type Figure = "three-colour" | "pure color";
30 type Cat2 = "one cat" | "two cat" | "three-colour cat" | "pure color cat";
35 cat1 = "three-colour cat";
/third_party/ffmpeg/libavfilter/
Dvf_scale_vaapi.c226 // These colour properties match the ones of the same name in vf_scale.
227 { "out_color_matrix", "Output colour matrix coefficient set",
229 { "out_range", "Output colour range",
244 // These colour properties are new here.
245 { "out_color_primaries", "Output colour primaries",
248 { "out_color_transfer", "Output colour transfer characteristics",
/third_party/libabigail/tests/lib/
Dcatch.hpp5991 struct Colour { struct
6029 Colour( Code _colourCode );
6030 Colour( Colour&& other ) noexcept;
6031 Colour& operator=( Colour&& other ) noexcept;
6032 ~Colour();
6041 std::ostream& operator << ( std::ostream& os, Colour const& );
9773 …return ParserResult::runtimeError( "colour mode must be one of: auto, yes or no. '" + useColour + … in makeCommandLineParser()
9885 ["--use-colour"] in makeCommandLineParser()
10087 virtual void use( Colour::Code _colourCode ) = 0;
10091 void use( Colour::Code ) override {} in use()
[all …]
/third_party/vk-gl-cts/external/amber/src/docs/
Dengines.md33 … | * +---------------------+ | +------>| Colour Attachments |-----…
63 * all colour attachments
78 Buffer data is stored depending on how it's used. For colour attachments use
146 The `DoClearColor` command provides the colour that is to be used for a given
161 The `DoClear` command instructs the engine to clear the various colour and
/third_party/pcre2/pcre2/doc/
Dpcre2grep.178 considered. However, if \fB--colour\fP (or \fB--color\fP) is used to colour the
221 \fB--colour\fP, \fB--color\fP
222 If this option is given without any data, it is equivalent to "--colour=auto".
226 \fB--colour=\fP\fIvalue\fP, \fB--color=\fP\fIvalue\fP
230 default, output is not coloured. The value for the \fB--colour\fP option (which
234 to search for all possible matches in a line, not just one, in order to colour
237 The colour that is used can be specified by setting one of the environment
248 other than semicolon or digits, the setting is ignored and the default colour
250 colour on a terminal, so it is your responsibility to ensure that the values
355 mode, \fB--colour\fP has no effect, and no context is shown. That is, the
[all …]
Dpcre2grep.txt78 are considered. However, if --colour (or --color) is used to colour the
233 --colour, --color
235 "--colour=auto". If data is required, it must be given in
238 --colour=value, --color=value
243 --colour option (which is optional, see above) may be
248 line, not just one, in order to colour them all.
250 The colour that is used can be specified by setting one of
264 ting is ignored and the default colour is used. The string is
265 copied directly into the control string for setting colour on
384 length, separated by a comma. In this mode, --colour has no
[all …]
/third_party/typescript/tests/cases/compiler/
DobjectLiteralExcessProperties.ts15 var b4: Book & Cover = { foreword: "hi", colour: "blue" };
33 var b11: Indexed = { 0: { colour: "blue" } }; // nested object literal still errors
/third_party/mesa3d/.gitlab-ci/lava/utils/
Dgitlab_section.py21 colour: str = f"{CONSOLE_LOG['BOLD']}{CONSOLE_LOG['FG_GREEN']}" variable in GitlabSection
52 colored_header = f"{self.colour}{header}\x1b[0m" if header else ""
/third_party/mesa3d/src/gallium/drivers/asahi/
Dagx_blit.c135 /* We need some fixed shaders for common rendering tasks. When colour buffer
136 * reload is not in use, a shader is used to clear a particular colour. At the
146 /* Clears the tilebuffer, where u6-u7 are preloaded with the FP16 clear colour

1234567891011