Home
last modified time | relevance | path

Searched defs:Color (Results 1 – 25 of 235) sorted by relevance

12345678910

/third_party/skia/third_party/externals/swiftshader/src/Renderer/
DColor.hpp24 struct Color struct
67 T r;
68 T g;
69 T b;
70 T a;
79 inline Color<T>::Color() in Color() function in sw::Color
84 inline Color<byte>::Color(const Color<byte> &c) in Color() function in sw::Color
93 inline Color<byte>::Color(const Color<short> &c) in Color() function in sw::Color
102 inline Color<byte>::Color(const Color<float> &c) in Color() function in sw::Color
111 inline Color<short>::Color(const Color<short> &c) in Color() function in sw::Color
[all …]
/third_party/rust/rust/tests/ui/associated-types/
Dassociated-type-projection-from-multiple-supertraits.rs5 type Color; typedef
11 type Color; typedef
19 fn dent<C:BoxCar>(c: C, color: C::Color) { in dent()
23 fn dent_object<COLOR>(c: dyn BoxCar<Color=COLOR>) { in dent_object()
28 fn paint<C:BoxCar>(c: C, d: C::Color) { in paint()
32 fn dent_object_2<COLOR>(c: dyn BoxCar) where <dyn BoxCar as Vehicle>::Color = COLOR { in dent_object_2()
39 X: Vehicle<Color = COLOR>, in dent_object_3()
40 X: Box<Color = COLOR> in dent_object_3()
Dassociated-types-binding-to-type-defined-in-supertrait.rs5 type Color; typedef
16 impl Vehicle for ModelT { type Color = Black; } typedef
21 impl Vehicle for ModelU { type Color = Blue; } typedef
24 fn black_car<C:Car<Color=Black>>(c: C) { in black_car()
27 fn blue_car<C:Car<Color=Blue>>(c: C) { in blue_car()
Dassociated-type-projection-from-supertrait.rs5 type Color; typedef
12 fn chip_paint(&self, c: Self::Color) { } in chip_paint()
17 impl Vehicle for ModelT { type Color = Black; } typedef
22 impl Vehicle for ModelU { type Color = Blue; } typedef
25 fn dent<C:Car>(c: C, color: C::Color) { c.chip_paint(color) } in dent()
/third_party/skia/third_party/externals/angle2/src/common/
DColor.h18 struct Color struct
26 static Color fromData(const T *data) { return Color(data[0], data[1], data[2], data[3]); } in fromData() argument
42 bool operator==(const Color<T> &a, const Color<T> &b); argument
94 using Color = angle::Color<T>; variable
/third_party/skia/src/gpu/
DGrDefaultGeoProcFactory.h18 struct Color { struct
24 explicit Color(const SkPMColor4f& color) in Color() argument
27 Color(Type type) in Color() function
34 SkPMColor4f fColor; argument
/third_party/rust/crates/nom/tests/
Dcss.rs7 pub struct Color { struct
25 fn hex_color(input: &str) -> IResult<&str, Color> { in hex_color() argument
/third_party/rust/rust/tests/ui/closures/2229_closure_analysis/
Dcapture-enum-field.rs5 pub enum Color { enum
12 let Color::RGB(ref mut r, _, _) = color; in main() localVariable
16 let Color::RGB(_, ref mut g, _) = color; in main() localVariable
20 let Color::RGB(_, _, ref mut b) = color; in main() localVariable
/third_party/flatbuffers/samples/rust_generated/my_game/sample/
Dcolor_generated.rs26 pub struct Color(pub i8); struct
28 impl Color { impl
50 impl core::fmt::Debug for Color { implementation
59 impl<'a> flatbuffers::Follow<'a> for Color { implementation
68 impl flatbuffers::Push for Color { implementation
76 impl flatbuffers::EndianScalar for Color { implementation
90 impl<'a> flatbuffers::Verifiable for Color { implementation
100 impl flatbuffers::SimpleToVerifyInSlice for Color {} implementation
/third_party/skia/m133/src/gpu/ganesh/
DGrDefaultGeoProcFactory.h25 struct Color { struct
31 explicit Color(const SkPMColor4f& color) in Color() function
34 Color(Type type) in Color() argument
41 SkPMColor4f fColor; argument
/third_party/rust/crates/bindgen/bindgen-tests/tests/headers/
Ddefault_visibility_crate.h8 struct Color { struct
9 char r :1;
10 char g :1;
11 char b :1;
Ddefault_visibility_private_respects_cxx_access_spec.h8 struct Color { struct
9 char r :1;
10 char g :1;
11 char b :1;
Ddefault_visibility_private.h8 struct Color { struct
9 char r :1;
10 char g :1;
11 char b :1;
/third_party/flatbuffers/tests/monster_test_serialize/my_game/example/
Dcolor_generated.rs31 impl Serialize for Color { implementation
40 impl<'a> flatbuffers::Follow<'a> for Color { implementation
53 impl flatbuffers::Push for Color { implementation
61 impl flatbuffers::EndianScalar for Color { implementation
79 impl<'a> flatbuffers::Verifiable for Color { implementation
89 impl flatbuffers::SimpleToVerifyInSlice for Color {} implementation
/third_party/rust/rust/tests/ui/const-generics/issues/
Dissue-99641.rs5 pub struct Color<const WHITE: (fn(),)>; in main() struct
8 impl<const WHITE: (fn(),)> Color<WHITE> { in main() impl
/third_party/flatbuffers/tests/monster_test/my_game/example/
Dcolor_generated.rs29 impl<'a> flatbuffers::Follow<'a> for Color { implementation
42 impl flatbuffers::Push for Color { implementation
50 impl flatbuffers::EndianScalar for Color { implementation
68 impl<'a> flatbuffers::Verifiable for Color { implementation
78 impl flatbuffers::SimpleToVerifyInSlice for Color {} implementation
/third_party/skia/platform_tools/android/apps/AndroidKit/src/main/java/org/skia/androidkit/
DColor.java10 public class Color { class
13 public Color(float r, float g, float b, float a) { in Color() method in Color
20 public Color() { in Color() method in Color
28 public Color(int color) { in Color() method in Color
/third_party/skia/m133/platform_tools/android/apps/jetski/src/main/java/org/skia/jetski/
DColor.java10 public class Color { class
13 public Color(float r, float g, float b, float a) { in Color() method in Color
20 public Color() { in Color() method in Color
28 public Color(int color) { in Color() method in Color
/third_party/rust/rust/src/tools/clippy/tests/ui/
Dpartial_pub_fields.rs13 pub struct Color { in main() struct
14 pub r: u8, in main()
15 pub g: u8, in main()
16 b: u8, in main()
Dwildcard_enum_match_arm.rs18 enum Color { enum
26 impl Color { implementation
/third_party/flatbuffers/tests/ts/my-game/example/
Dcolor.js6 export var Color; variable
7 (function (Color) { argument
/third_party/typescript/tests/baselines/reference/
DcommentOnExportEnumDeclaration.js16 var Color; variable
17 (function (Color) { argument
DcollisionCodeGenEnumWithEnumMemberConflict.js8 var Color; variable
9 (function (Color) { argument
/third_party/typescript/tests/cases/compiler/
DcollisionCodeGenEnumWithEnumMemberConflict.ts1 enum Color { enum
2 Color, enumerator
/third_party/skia/third_party/externals/swiftshader/third_party/marl/examples/
Dfractal.cpp30 struct Color { struct
33 inline Color<T>& operator+=(const Color<T>& rhs) { in operator +=() argument
40 inline Color<T>& operator/=(T rhs) { in operator /=() argument

12345678910