/third_party/vk-gl-cts/data/gles31/shaders/gl45/ |
D | linkage_uniform.test | 2 # Struct linkage handling 14 struct Struct {mediump float a; mediump float b;}; 15 uniform Struct val; 26 struct Struct {mediump float a; mediump float b;}; 27 uniform Struct val; 51 struct Struct {mediump float a; mediump float b;}; 52 uniform Struct val; 63 struct Struct {mediump float a; mediump float b;}; 64 uniform Struct val; 86 struct Struct {mediump float a; mediump float b;}; [all …]
|
/third_party/flatbuffers/python/flatbuffers/ |
D | packer.py | 25 boolean = struct.Struct(compat.struct_bool_decl) 27 uint8 = struct.Struct("<B") 28 uint16 = struct.Struct("<H") 29 uint32 = struct.Struct("<I") 30 uint64 = struct.Struct("<Q") 32 int8 = struct.Struct("<b") 33 int16 = struct.Struct("<h") 34 int32 = struct.Struct("<i") 35 int64 = struct.Struct("<q") 37 float32 = struct.Struct("<f") [all …]
|
/third_party/skia/third_party/externals/tint/src/ast/ |
D | struct.cc | 22 TINT_INSTANTIATE_TYPEINFO(tint::ast::Struct); 27 Struct::Struct(ProgramID pid, in Struct() function in tint::ast::Struct 43 Struct::Struct(Struct&&) = default; 45 Struct::~Struct() = default; 47 bool Struct::IsBlockDecorated() const { in IsBlockDecorated() 51 const Struct* Struct::Clone(CloneContext* ctx) const { in Clone() 57 return ctx->dst->create<Struct>(src, n, mem, decos); in Clone()
|
D | struct.h | 29 class Struct : public Castable<Struct, TypeDecl> { 37 Struct(ProgramID pid, 43 Struct(Struct&&); 45 ~Struct() override; 54 const Struct* Clone(CloneContext* ctx) const override;
|
D | struct_test.cc | 39 auto* s = create<Struct>(name, StructMemberList{Member("a", ty.i32())}, in TEST_F() 56 create<Struct>(name, StructMemberList{Member("a", ty.i32())}, decos); in TEST_F() 69 auto* s = create<Struct>( in TEST_F() 87 b.create<Struct>(b.Sym("S"), in TEST_F() 98 b.create<Struct>(b.Sym("S"), in TEST_F() 110 b1.create<Struct>(b1.Sym("S"), in TEST_F() 122 b1.create<Struct>(b1.Sym("S"), in TEST_F()
|
/third_party/vk-gl-cts/data/gles31/shaders/es31/ |
D | linkage_uniform.test | 121 # Struct linkage handling 133 struct Struct {mediump float a; mediump float b;}; 134 uniform Struct val; 145 struct Struct {mediump float a; mediump float b;}; 146 uniform Struct val; 170 struct Struct {mediump float a; mediump float b;}; 171 uniform Struct val; 182 struct Struct {mediump float a; mediump float b;}; 183 uniform Struct val; 205 struct Struct {mediump float a; mediump float b;}; [all …]
|
/third_party/vk-gl-cts/data/gles31/shaders/es32/ |
D | linkage_uniform.test | 121 # Struct linkage handling 133 struct Struct {mediump float a; mediump float b;}; 134 uniform Struct val; 145 struct Struct {mediump float a; mediump float b;}; 146 uniform Struct val; 170 struct Struct {mediump float a; mediump float b;}; 171 uniform Struct val; 182 struct Struct {mediump float a; mediump float b;}; 183 uniform Struct val; 205 struct Struct {mediump float a; mediump float b;}; [all …]
|
/third_party/skia/third_party/externals/tint/src/sem/ |
D | struct.cc | 23 TINT_INSTANTIATE_TYPEINFO(tint::sem::Struct); 29 Struct::Struct(const ast::Struct* declaration, in Struct() function in tint::sem::Struct 50 Struct::~Struct() = default; 52 const StructMember* Struct::FindMember(Symbol name) const { in FindMember() 61 std::string Struct::type_name() const { in type_name() 65 uint32_t Struct::Align() const { in Align() 69 uint32_t Struct::Size() const { in Size() 73 std::string Struct::FriendlyName(const SymbolTable& symbols) const { in FriendlyName() 77 bool Struct::IsConstructible() const { in IsConstructible()
|
D | sem_struct_test.cc | 28 create<ast::Struct>(name, ast::StructMemberList{}, ast::DecorationList{}); in TEST_F() 31 create<sem::Struct>(impl, impl->name, StructMemberList{}, 4 /* align */, in TEST_F() 42 create<ast::Struct>(name, ast::StructMemberList{}, ast::DecorationList{}); in TEST_F() 44 create<sem::Struct>(impl, impl->name, StructMemberList{}, 4 /* align */, in TEST_F() 52 create<ast::Struct>(name, ast::StructMemberList{}, ast::DecorationList{}); in TEST_F() 54 create<sem::Struct>(impl, impl->name, StructMemberList{}, 4 /* align */, in TEST_F()
|
D | struct.h | 57 class Struct : public Castable<Struct, Type> { 67 Struct(const ast::Struct* declaration, 75 ~Struct() override; 78 const ast::Struct* Declaration() const { return declaration_; } in Declaration() 163 ast::Struct const* const declaration_;
|
/third_party/vk-gl-cts/data/gles2/shaders/ |
D | linkage.test | 645 # Struct linkage handling 655 struct Struct {mediump float a; mediump float b;}; 656 uniform Struct val; 666 struct Struct {mediump float a; mediump float b;}; 667 uniform Struct val; 689 struct Struct {mediump float a; mediump float b;}; 690 uniform Struct val; 700 struct Struct {mediump float a; mediump float b;}; 701 uniform Struct val; 721 struct Struct {mediump float a; mediump float b;}; [all …]
|
/third_party/flutter/skia/third_party/externals/wuffs/lang/ast/ |
D | sort.go | 21 func TopologicalSortStructs(ns []*Struct) (sorted []*Struct, ok bool) { argument 24 sorted = make([]*Struct, 0, len(ns)) 25 byQID := map[t.QID]*Struct{} 29 marks := map[*Struct]uint8{} 41 func tssVisit(dst []*Struct, n *Struct, byQID map[t.QID]*Struct, marks map[*Struct]uint8) ([]*Struc… argument
|
/third_party/boost/libs/fusion/example/extension/detail/ |
D | deref_impl.hpp | 21 template<typename Struct, int Pos> 38 template<typename Struct> 39 struct apply<example::example_struct_iterator<Struct, 0> > 42 is_const<Struct>, std::string const&, std::string&>::type type; 45 call(example::example_struct_iterator<Struct, 0> const& it) in call() 51 template<typename Struct> 52 struct apply<example::example_struct_iterator<Struct, 1> > 55 is_const<Struct>, int const&, int&>::type type; 58 call(example::example_struct_iterator<Struct, 1> const& it) in call()
|
D | value_of_impl.hpp | 17 template<typename Struct, int Pos> 34 template<typename Struct> 35 struct apply<example::example_struct_iterator<Struct, 0> > 40 template<typename Struct> 41 struct apply<example::example_struct_iterator<Struct, 1> >
|
/third_party/boost/libs/fusion/example/extension/ |
D | example_struct_iterator.hpp | 33 template<typename Struct, int Pos> 41 template<typename Struct, int Pos> 42 struct tag_of<example::example_struct_iterator<Struct, Pos> > 50 template<typename Struct, int Pos> 52 : boost::fusion::iterator_base<example_struct_iterator<Struct, Pos> > 55 typedef Struct struct_type; 63 example_struct_iterator(Struct& str) in example_struct_iterator() 66 Struct& struct_;
|
/third_party/protobuf/src/google/protobuf/ |
D | struct.pb.h | 65 class Struct; variable 77 …ate<> PROTOBUF_EXPORT PROTOBUF_NAMESPACE_ID::Struct* Arena::CreateMaybeMessage<PROTOBUF_NAMESPACE_… 141 class PROTOBUF_EXPORT Struct PROTOBUF_FINAL : 144 inline Struct() : Struct(nullptr) {} in Struct() function 145 virtual ~Struct(); 147 Struct(const Struct& from); 148 Struct(Struct&& from) noexcept in Struct() function 149 : Struct() { in Struct() 153 inline Struct& operator=(const Struct& from) { 157 inline Struct& operator=(Struct&& from) noexcept { [all …]
|
D | struct.pb.cc | 25 ::PROTOBUF_NAMESPACE_ID::internal::ExplicitlyConstructed<Struct> _instance; 34 const PROTOBUF_NAMESPACE_ID::Struct* struct_value_; 51 new (ptr) PROTOBUF_NAMESPACE_ID::Struct(); in InitDefaultsscc_info_ListValue_google_2fprotobuf_2fstruct_2eproto() 65 PROTOBUF_NAMESPACE_ID::Struct::InitAsDefaultInstance(); in InitDefaultsscc_info_ListValue_google_2fprotobuf_2fstruct_2eproto() 88 PROTOBUF_FIELD_OFFSET(PROTOBUF_NAMESPACE_ID::Struct, _internal_metadata_), 92 PROTOBUF_FIELD_OFFSET(PROTOBUF_NAMESPACE_ID::Struct, fields_), 114 { 9, -1, sizeof(PROTOBUF_NAMESPACE_ID::Struct)}, 194 void Struct::InitAsDefaultInstance() { in InitAsDefaultInstance() 196 class Struct::_Internal { 200 Struct::Struct(::PROTOBUF_NAMESPACE_ID::Arena* arena) in Struct() function in Struct [all …]
|
/third_party/protobuf/java/util/src/main/java/com/google/protobuf/util/ |
D | Structs.java | 33 import com.google.protobuf.Struct; 42 public static Struct of(String k1, Value v1) { in of() 43 return Struct.newBuilder().putFields(k1, v1).build(); in of() 51 public static Struct of(String k1, Value v1, String k2, Value v2) { in of() 52 return Struct.newBuilder().putFields(k1, v1).putFields(k2, v2).build(); in of() 60 public static Struct of(String k1, Value v1, String k2, Value v2, String k3, Value v3) { in of() 61 return Struct.newBuilder().putFields(k1, v1).putFields(k2, v2).putFields(k3, v3).build(); in of()
|
/third_party/protobuf/java/util/src/test/java/com/google/protobuf/util/ |
D | StructsTest.java | 35 import com.google.protobuf.Struct; 41 Struct.Builder expected = Struct.newBuilder(); in test1pair_constructsObject() 47 Struct.Builder expected = Struct.newBuilder(); in test2pair_constructsObject() 53 Struct.Builder expected = Struct.newBuilder(); in test3pair_constructsObject()
|
/third_party/skia/third_party/externals/tint/src/resolver/ |
D | struct_storage_class_use_test.cc | 35 auto* sem = TypeOf(s)->As<sem::Struct>(); in TEST_F() 47 auto* sem = TypeOf(s)->As<sem::Struct>(); in TEST_F() 60 auto* sem = TypeOf(s)->As<sem::Struct>(); in TEST_F() 73 auto* sem = TypeOf(s)->As<sem::Struct>(); in TEST_F() 86 auto* sem = TypeOf(s)->As<sem::Struct>(); in TEST_F() 99 auto* sem = TypeOf(s)->As<sem::Struct>(); in TEST_F() 112 auto* sem = TypeOf(s)->As<sem::Struct>(); in TEST_F() 125 auto* sem = TypeOf(s)->As<sem::Struct>(); in TEST_F() 138 auto* sem = TypeOf(s)->As<sem::Struct>(); in TEST_F() 151 auto* sem = TypeOf(s)->As<sem::Struct>(); in TEST_F() [all …]
|
D | struct_pipeline_stage_use_test.cc | 35 auto* sem = TypeOf(s)->As<sem::Struct>(); in TEST_F() 47 auto* sem = TypeOf(s)->As<sem::Struct>(); in TEST_F() 59 auto* sem = TypeOf(s)->As<sem::Struct>(); in TEST_F() 74 auto* sem = TypeOf(s)->As<sem::Struct>(); in TEST_F() 89 auto* sem = TypeOf(s)->As<sem::Struct>(); in TEST_F() 103 auto* sem = TypeOf(s)->As<sem::Struct>(); in TEST_F() 117 auto* sem = TypeOf(s)->As<sem::Struct>(); in TEST_F() 133 auto* sem = TypeOf(s)->As<sem::Struct>(); in TEST_F() 151 auto* sem = TypeOf(s)->As<sem::Struct>(); in TEST_F() 167 auto* sem = TypeOf(s)->As<sem::Struct>(); in TEST_F() [all …]
|
/third_party/vk-gl-cts/data/gles3/shaders/ |
D | linkage.test | 2465 # Struct linkage handling 2477 struct Struct {mediump float a; mediump float b;}; 2478 uniform Struct val; 2489 struct Struct {mediump float a; mediump float b;}; 2490 uniform Struct val; 2514 struct Struct {mediump float a; mediump float b;}; 2515 uniform Struct val; 2526 struct Struct {mediump float a; mediump float b;}; 2527 uniform Struct val; 2549 struct Struct {mediump float a; mediump float b;}; [all …]
|
/third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/ |
D | Struct.cs | 45 …fo(typeof(global::Google.Protobuf.WellKnownTypes.Struct), global::Google.Protobuf.WellKnownTypes.S… in StructReflection() 80 public sealed partial class Struct : pb::IMessage<Struct> class 85 …private static readonly pb::MessageParser<Struct> _parser = new pb::MessageParser<Struct>(() => ne… 88 public static pb::MessageParser<Struct> Parser { get { return _parser; } } 101 public Struct() { in Struct() method in Google.Protobuf.WellKnownTypes.Struct 108 public Struct(Struct other) : this() { in Struct() method in Google.Protobuf.WellKnownTypes.Struct 114 public Struct Clone() { in Clone() 115 return new Struct(this); in Clone() 133 return Equals(other as Struct); in Equals() 137 public bool Equals(Struct other) { in Equals() [all …]
|
/third_party/boost/libs/type_traits/test/ |
D | promote_basic_test.cpp | 14 struct Struct {}; struct 117 test_cv< Struct, Struct >(); in main() 145 typedef int (Struct::*mem_fun_ptr)(); in main() 146 typedef int Struct::*mem_ptr; in main()
|
/third_party/boost/libs/hana/test/concept/struct/ |
D | macro.adapt_struct.cpp | 41 static_assert(hana::Struct<ns::Data0>::value, ""); 42 static_assert(hana::Struct<ns::Data1>::value, ""); 43 static_assert(hana::Struct<ns::Data2>::value, ""); 44 static_assert(hana::Struct<ns::Data3>::value, ""); 45 static_assert(hana::Struct<ns::MemberArray>::value, "");
|