Home
last modified time | relevance | path

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

12345678

/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/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() function
27 Color(Type type) in Color() argument
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/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
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/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/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/typescript/tests/cases/compiler/
DcollisionCodeGenEnumWithEnumMemberConflict.ts1 enum Color { enum
2 Color, enumerator
/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
DTypeGuardWithEnumUnion.js40 var Color; variable
41 (function (Color) { argument
DpropertyNamesWithStringLiteral.js25 var Color; variable
26 (function (Color) { argument
DenumUsedBeforeDeclaration.js12 var Color; variable
13 (function (Color) { argument
DenumMerging.js132 (function (Color) { argument
141 (function (Color) { argument
152 (function (Color) { argument
163 (function (Color) { argument
/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
/third_party/flatbuffers/tests/MyGame/Example/
DColor.java9 public final class Color { class
10 private Color() { } in Color() method in Color
DColor.kt9 class Color private constructor() { class
DTestSimpleTableWithEnum.go10 Color Color `json:"color"` member
70 func (rcv *TestSimpleTableWithEnum) Color() Color { func
85 func TestSimpleTableWithEnumAddColor(builder *flatbuffers.Builder, color Color) {
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/scripts_and_modules/5_export_declarations/
Dexport_modifiers_0.ts49 export enum Color { enum
56 export interface Color { interface
60 export type ColorKey = keyof Color; alias
Dexport_member_set_0.ts49 enum Color { enum
56 export interface Color { interface
60 export type ColorKey = keyof Color; alias
Dexport_default_declarations_0.ts49 export enum Color { enum
56 export interface Color { interface
60 export type ColorKey = keyof Color; alias
/third_party/typescript/tests/cases/conformance/enums/
DenumMerging.ts50 export enum Color { Red, Green, Blue } enum
53 export enum Color { Red, Green, Blue } enum
57 export enum Color { Red, Green, Blue } enum
61 export enum Color { Yellow = 1 } enum
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/namespaces/declaration_merging/
Ddeclaration_merging_2.ts49 enum Color { enum
54 namespace Color { namespace
55 export interface Color { interface
/third_party/typescript/tests/cases/conformance/internalModules/moduleBody/
DinvalidModuleWithStatementsOfEveryKind.ts25 public enum Color { Blue, Red } enum
50 private enum Color { Blue, Red } enum
76 static enum Color { Blue, Red } enum

12345678