Home
last modified time | relevance | path

Searched refs:IsStruct (Results 1 – 13 of 13) sorted by relevance

/third_party/vk-gl-cts/external/amber/src/src/amberscript/
Dparser_struct_test.cc39 ASSERT_TRUE(type->IsStruct()); in TEST_F()
99 ASSERT_TRUE(type->IsStruct()); in TEST_F()
269 ASSERT_TRUE(type->IsStruct()); in TEST_F()
278 EXPECT_TRUE(m[1].type->IsStruct()); in TEST_F()
307 ASSERT_TRUE(type->IsStruct()); in TEST_F()
357 ASSERT_TRUE(type->IsStruct()); in TEST_F()
419 ASSERT_TRUE(type->IsStruct()); in TEST_F()
Dparser_buffer_test.cc945 EXPECT_TRUE(buffer->GetFormat()->GetType()->IsStruct()); in TEST_F()
993 EXPECT_TRUE(buffer->GetFormat()->GetType()->IsStruct()); in TEST_F()
1038 EXPECT_TRUE(buffer->GetFormat()->GetType()->IsStruct()); in TEST_F()
1096 EXPECT_TRUE(buffer->GetFormat()->GetType()->IsStruct()); in TEST_F()
Dparser.cc1562 if (type->IsVec() || type->IsMatrix() || type->IsArray() || type->IsStruct()) in ParsePipelineSet()
/third_party/vk-gl-cts/external/amber/src/src/
Dformat.cc164 if (t->IsStruct()) { in CalcArrayBaseAlignmentInBytes()
225 if (t->IsStruct()) { in CalcTypeBaseAlignmentInBytes()
248 if (type->IsStruct() || type->IsVec() || type->IsMatrix() || in AddSegmentsForType()
257 if (type->IsStruct()) { in AddSegmentsForType()
Dtype.h100 virtual bool IsStruct() const { return false; } in IsStruct() function
248 bool IsStruct() const override { return true; } in IsStruct() function
251 if (!b->IsStruct()) in Equal()
Dtype_test.cc43 TEST_F(TypeTest, IsStruct) { in TEST_F() argument
44 EXPECT_FALSE(Number(FormatMode::kSInt).IsStruct()); in TEST_F()
45 EXPECT_TRUE(Struct().IsStruct()); in TEST_F()
46 EXPECT_FALSE(List().IsStruct()); in TEST_F()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/BPF/
DBTFDebug.h124 BTFTypeStruct(const DICompositeType *STy, bool IsStruct, bool HasBitField,
278 void visitStructType(const DICompositeType *STy, bool IsStruct,
DBTFDebug.cpp218 BTFTypeStruct::BTFTypeStruct(const DICompositeType *STy, bool IsStruct, in BTFTypeStruct() argument
221 Kind = IsStruct ? BTF::BTF_KIND_STRUCT : BTF::BTF_KIND_UNION; in BTFTypeStruct()
448 void BTFDebug::visitStructType(const DICompositeType *CTy, bool IsStruct, in visitStructType() argument
466 std::make_unique<BTFTypeStruct>(CTy, IsStruct, HasBitField, VLen); in visitStructType()
/third_party/protobuf/src/google/protobuf/util/internal/
Dprotostream_objectwriter.cc569 if (element() != nullptr && IsStruct(*element()->parent_field())) { in StartObject()
590 if (IsStruct(*field)) { in StartObject()
1344 bool ProtoStreamObjectWriter::IsStruct(const google::protobuf::Field& field) { in IsStruct() function in google::protobuf::util::converter::ProtoStreamObjectWriter
Dprotostream_objectwriter.h339 inline bool IsStruct(const google::protobuf::Field& field);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Bitcode/Reader/
DBitcodeReader.cpp4013 bool IsStruct = FullTy->isStructTy(); in parseFunctionBody() local
4016 if (!IsStruct && !IsArray) in parseFunctionBody()
4020 if (IsStruct && Index >= FullTy->getStructNumElements()) in parseFunctionBody()
4026 if (IsStruct) in parseFunctionBody()
4055 bool IsStruct = CurTy->isStructTy(); in parseFunctionBody() local
4058 if (!IsStruct && !IsArray) in parseFunctionBody()
4062 if (IsStruct && Index >= CurTy->getStructNumElements()) in parseFunctionBody()
4068 if (IsStruct) in parseFunctionBody()
/third_party/vk-gl-cts/external/openglcts/modules/gl/
Dgl4cEnhancedLayoutsTests.hpp490 bool IsStruct() const;
Dgl4cEnhancedLayoutsTests.cpp1148 else if (variable.IsStruct()) in checkVarying()
3891 bool Variable::IsStruct() const in IsStruct() function in gl4cts::EnhancedLayouts::Utils::Variable