/external/compiler-rt/lib/esan/ |
D | cache_frag.cpp | 48 StructInfo *Struct; member 83 StructInfo *Struct = Handle->Struct; in reportStructCounter() local 87 if (strncmp(Struct->StructName, "union.", 6) == 0) in reportStructCounter() 90 if (strncmp(Struct->StructName, "class.", 6) == 0) { in reportStructCounter() 92 start = &Struct->StructName[6]; in reportStructCounter() 95 start = &Struct->StructName[7]; in reportStructCounter() 102 Struct->Size, Handle->Count, Handle->Ratio, *Struct->ArrayCounter); in reportStructCounter() 103 if (Struct->hasAuxFieldInfo()) { in reportStructCounter() 104 for (u32 i = 0; i < Struct->NumFields; ++i) { in reportStructCounter() 107 i, Struct->FieldOffset[i], Struct->FieldSize[i], in reportStructCounter() [all …]
|
/external/clang/test/SemaCXX/ |
D | constant-expression.cpp | 15 struct Struct { struct 26 v5 = Struct::sval, argument 27 v6 = Struct::seval, 31 v10 = sizeof(Struct), 32 v11 = true? 1 + cval * Struct::sval ^ itval / (int)1.5 - sizeof(Struct) : 0 39 b5 : Struct::sval, 40 b6 : Struct::seval, 44 b10 : sizeof(Struct), 45 b11 : true? 1 + cval * Struct::sval ^ itval / (int)1.5 - sizeof(Struct) : 0 52 i5 = Struct::sval, [all …]
|
D | altivec.cpp | 71 struct Struct { struct 76 vector float initFloat = (vector float)(Struct().f); // expected-error {{did you mean to call it}} 77 vector int initInt = (vector int)(Struct().n); // expected-error {{did you mean to call it}}
|
/external/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 …]
|
/external/deqp/data/gles31/shaders/ |
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 …]
|
/external/deqp/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 …]
|
/external/libmojo/mojo/public/cpp/bindings/ |
D | struct_ptr.h | 17 template <typename Struct> 32 using Struct = S; 64 Struct& operator*() const { 68 Struct* operator->() const { 72 Struct* get() const { return ptr_; } in get() 89 typedef Struct* StructPtr::*Testable; 95 friend class internal::StructHelper<Struct>; 106 ptr_ = new Struct(); in Initialize() 114 Struct* ptr_; 123 using Struct = S; [all …]
|
/external/protobuf/src/google/protobuf/ |
D | struct.pb.cc | 37 const ::google::protobuf::Struct* struct_value_; 56 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Struct, fields_), in protobuf_AssignDesc_google_2fprotobuf_2fstruct_2eproto() 61 Struct::default_instance_, in protobuf_AssignDesc_google_2fprotobuf_2fstruct_2eproto() 66 sizeof(Struct), in protobuf_AssignDesc_google_2fprotobuf_2fstruct_2eproto() 67 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Struct, _internal_metadata_), in protobuf_AssignDesc_google_2fprotobuf_2fstruct_2eproto() 68 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Struct, _is_default_instance_)); in protobuf_AssignDesc_google_2fprotobuf_2fstruct_2eproto() 122 Struct_descriptor_, &Struct::default_instance()); in protobuf_RegisterTypes() 141 delete Struct::default_instance_; in protobuf_ShutdownFile_google_2fprotobuf_2fstruct_2eproto() 176 Struct::default_instance_ = new Struct(); in protobuf_AddDesc_google_2fprotobuf_2fstruct_2eproto() 180 Struct::default_instance_->InitAsDefaultInstance(); in protobuf_AddDesc_google_2fprotobuf_2fstruct_2eproto() [all …]
|
D | struct.pb.h | 44 class Struct; variable 69 class LIBPROTOBUF_EXPORT Struct : public ::google::protobuf::Message { 71 Struct(); 72 virtual ~Struct(); 74 Struct(const Struct& from); 76 inline Struct& operator=(const Struct& from) { 82 static const Struct& default_instance(); 84 void Swap(Struct* other); 88 inline Struct* New() const { return New(NULL); } in New() 90 Struct* New(::google::protobuf::Arena* arena) const; [all …]
|
D | struct.proto | 44 // `Struct` represents a structured data value, consisting of fields 45 // which map to dynamically typed values. In some languages, `Struct` 51 // The JSON representation for `Struct` is JSON object. 52 message Struct { message 75 Struct struct_value = 5;
|
/external/llvm/unittests/IR/ |
D | TypesTest.cpp | 21 StructType *Struct = StructType::create(C, "FooBar"); in TEST() local 22 EXPECT_EQ("FooBar", Struct->getName()); in TEST() 23 Struct->setName(Struct->getName().substr(0, 3)); in TEST() 24 EXPECT_EQ("Foo", Struct->getName()); in TEST() 25 Struct->setName(""); in TEST() 26 EXPECT_TRUE(Struct->getName().empty()); in TEST() 27 EXPECT_FALSE(Struct->hasName()); in TEST()
|
/external/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/ |
D | Struct.cs | 44 …fo(typeof(global::Google.Protobuf.WellKnownTypes.Struct), global::Google.Protobuf.WellKnownTypes.S… in StructReflection() 80 public sealed partial class Struct : pb::IMessage<Struct> { class 81 …private static readonly pb::MessageParser<Struct> _parser = new pb::MessageParser<Struct>(() => ne… 82 public static pb::MessageParser<Struct> Parser { get { return _parser; } } 92 public Struct() { in Struct() method in Google.Protobuf.WellKnownTypes.Struct 98 public Struct(Struct other) : this() { in Struct() method in Google.Protobuf.WellKnownTypes.Struct 102 public Struct Clone() { in Clone() 103 return new Struct(this); in Clone() 119 return Equals(other as Struct); in Equals() 122 public bool Equals(Struct other) { in Equals() [all …]
|
/external/deqp/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 …]
|
/external/libmojo/mojo/public/tools/bindings/pylib/mojom/generate/ |
D | pack_tests.py | 19 struct = mojom.Struct('test') 32 struct = mojom.Struct('test') 40 struct = mojom.Struct('test') 54 struct = mojom.Struct('test') 94 mojom.Struct('test_struct').MakeNullableKind(), 114 mojom.UINT64, mojom.Struct('test'), mojom.Array(), 122 struct = mojom.Struct('test') 144 struct = mojom.Struct('test')
|
/external/llvm/test/TableGen/ |
D | ClassInstanceValue.td | 4 class Struct<int i> { 9 class Class<Struct s> { 14 def Def : Class<Struct<i>>;
|
/external/flatbuffers/include/flatbuffers/ |
D | reflection.h | 109 inline const Struct *GetFieldStruct(const Table &table, in GetFieldStruct() 114 return table.GetStruct<const Struct *>(field.offset()); in GetFieldStruct() 118 inline const Struct *GetFieldStruct(const Struct &structure, in GetFieldStruct() 121 return structure.GetStruct<const Struct *>(field.offset()); in GetFieldStruct() 168 inline int64_t GetAnyFieldI(const Struct &st, in GetAnyFieldI() 175 inline double GetAnyFieldF(const Struct &st, in GetAnyFieldF() 182 inline std::string GetAnyFieldS(const Struct &st, in GetAnyFieldS() 235 template<typename T> T *GetAnyFieldAddressOf(const Struct &st, in GetAnyFieldAddressOf() 285 inline void SetAnyFieldI(Struct *st, const reflection::Field &field, in SetAnyFieldI() 292 inline void SetAnyFieldF(Struct *st, const reflection::Field &field, in SetAnyFieldF() [all …]
|
/external/clang/test/Modules/ |
D | no-linkage.cpp | 11 typedef int Struct; // expected-note {{candidate}} typedef 36 use(Struct(0)); in use_things() 51 use(Struct(0)); // expected-error {{ambiguous}} in use_things_again()
|
D | ExtDebugInfo.cpp | 27 using DebugCXX::Struct; 29 Struct s; 38 int Struct::static_member = -1;
|
/external/libmojo/mojo/public/tools/bindings/pylib/mojom_tests/parse/ |
D | parser_unittest.py | 145 [ast.Struct( 165 [ast.Struct( 187 [ast.Struct( 409 [ast.Struct( 455 [ast.Struct( 546 [ast.Struct( 569 [ast.Struct( 631 [ast.Struct( 674 [ast.Struct( 694 [ast.Struct( [all …]
|
/external/llvm/test/DebugInfo/COFF/ |
D | types-data-members.ll | 5 ; struct Struct { 24 ; struct DerivedClass : Struct, virtual Class { 31 ; Struct s; 63 ; CHECK: Struct (0x1003) { 74 ; CHECK: Name: Struct 110 ; CHECK: Struct (0x1006) { 120 ; CHECK: Name: Struct 130 ; CHECK: UDT: Struct (0x1006) 233 ; CHECK: Struct (0x1011) { 296 ; CHECK: BaseType: Struct (0x1003) [all …]
|
/external/clang/test/CodeGenCUDA/ |
D | printf-aggregate.cu | 10 struct Struct { struct 16 printf("%d", Struct()); in PrintfNonScalar() argument
|
/external/libmojo/mojo/public/tools/bindings/pylib/mojom_tests/generate/ |
D | pack_unittest.py | 42 struct = mojom.Struct('test') 56 struct = mojom.Struct('test') 81 struct = mojom.Struct('test') 94 struct = mojom.Struct('test')
|
/external/clang/test/CodeGen/ |
D | global-with-initialiser.c | 19 struct Struct { struct 25 struct Struct globalStruct = { 1, 2.0f, "foobar"}; argument
|
/external/clang/test/Index/ |
D | print-type.c | 16 struct Struct{}; struct Struct elaboratedStructType(); struct
|
/external/libmojo/mojo/public/java/bindings/src/org/chromium/mojo/bindings/ |
D | Struct.java | 12 public abstract class Struct { class 26 protected Struct(int encodedBaseSize, int version) { in Struct() method in Struct
|