Home
last modified time | relevance | path

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

1234567891011

/external/angle/src/common/
DColor.h21 struct Color struct
29 static Color fromData(const T *data) { return Color(data[0], data[1], data[2], data[3]); } in fromData() argument
45 bool operator==(const Color<T> &a, const Color<T> &b); argument
99 using Color = angle::Color<T>; variable
/external/rust/crates/winnow/examples/css/
Dparser.rs6 pub struct Color { struct
12 impl std::str::FromStr for Color { argument
21 pub fn hex_color(input: &mut &str) -> PResult<Color> { in hex_color()
/external/flatbuffers/samples/rust_generated/my_game/sample/
Dcolor_generated.rs26 pub struct Color(pub i8); struct
28 impl Color { implementation
50 impl core::fmt::Debug for Color { implementation
59 impl<'a> flatbuffers::Follow<'a> for Color { implementation
70 impl flatbuffers::Push for Color { implementation
78 impl flatbuffers::EndianScalar for Color { implementation
92 impl<'a> flatbuffers::Verifiable for Color { implementation
102 impl flatbuffers::SimpleToVerifyInSlice for Color {} implementation
/external/skia/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
/external/rust/crates/nom/tests/
Dcss.rs7 pub struct Color { struct
25 fn hex_color(input: &str) -> IResult<&str, Color> { in hex_color() argument
/external/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
51 impl flatbuffers::Push for Color { implementation
59 impl flatbuffers::EndianScalar for Color { implementation
73 impl<'a> flatbuffers::Verifiable for Color { implementation
83 impl flatbuffers::SimpleToVerifyInSlice for Color {} implementation
/external/flatbuffers/tests/monster_test/my_game/example/
Dcolor_generated.rs29 impl<'a> flatbuffers::Follow<'a> for Color { implementation
40 impl flatbuffers::Push for Color { implementation
48 impl flatbuffers::EndianScalar for Color { implementation
62 impl<'a> flatbuffers::Verifiable for Color { implementation
72 impl flatbuffers::SimpleToVerifyInSlice for Color {} implementation
/external/skia/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
/external/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
/external/flatbuffers/tests/my-game/example/
Dcolor.js5 export var Color; variable
6 (function (Color) { argument
/external/pdfium/core/fxcrt/css/
Dcfx_cssdata.h34 struct Color { struct
43 static const Color* GetColorByName(WideStringView wsName); argument
/external/clang/lib/AST/
DASTDumper.cpp42 raw_ostream::Colors Color; member
157 ColorScope Color(*this, IndentColor); in dumpChild() local
192 ColorScope(ASTDumper &Dumper, TerminalColor Color) in ColorScope()
584 ColorScope Color(*this, AddressColor); in dumpPointer() local
592 ColorScope Color(*this, LocationColor); in dumpLocation() local
636 ColorScope Color(*this, TypeColor); in dumpBareType() local
672 ColorScope Color(*this, NullColor); in dumpTypeAsChild() local
678 ColorScope Color(*this, TypeColor); in dumpTypeAsChild() local
687 ColorScope Color(*this, TypeColor); in dumpTypeAsChild() local
718 ColorScope Color(*this, NullColor); in dumpBareDeclRef() local
[all …]
/external/flatbuffers/tests/MyGame/Example/
DColor.java9 public final class Color { class
10 private Color() { } in Color() method in Color
DTestSimpleTableWithEnum.go10 Color Color `json:"color"` member
58 func (rcv *TestSimpleTableWithEnum) Color() Color { func
73 func TestSimpleTableWithEnumAddColor(builder *flatbuffers.Builder, color Color) {
DColor.kt9 class Color private constructor() { class
/external/clang/test/SemaTemplate/
Dinstantiate-c99.cpp30 struct Color { struct
35 Color color; argument
/external/kotlinx.serialization/guide/example/
Dexample-serializer-02.kt8 class Color(val rgb: Int) class
Dexample-serializer-06.kt8 class Color(val rgb: Int) class
Dexample-serializer-01.kt8 class Color(val rgb: Int) class
Dexample-serializer-03.kt8 class Color(val rgb: Int) class
Dexample-serializer-07.kt24 class Color(val rgb: Int) class
Dexample-serializer-08.kt24 class Color(val rgb: Int) class
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/immutable/
DColor.java16 public class Color { class
20 public Color(String name) { in Color() method in Color
/external/clang/test/Index/
Dcomplete-type-factors.m26 + (void)method:(enum Color)color priority:(enum Priority)priority;
27 - (void)method:(enum Color)color priority:(enum Priority)priority;
/external/swiftshader/src/Device/
DBC_Decoder.cpp65 struct Color struct
67 Color() in Color() function
73 void extract565(const unsigned int c565) in extract565()
80 unsigned int pack8888() const in pack8888()
85 void clearAlpha() in clearAlpha()
90 Color operator*(int factor) const in operator *()
100 Color operator/(int factor) const in operator /()
110 Color operator>>(int shift) const in operator >>()
120 Color operator+(const Color &obj) const in operator +()
131 int c[4];
[all …]

1234567891011