/third_party/skia/third_party/externals/tint/src/sem/ |
H A D | atomic_type.cc | 25 Atomic::Atomic(const sem::Type* subtype) : subtype_(subtype) { in Atomic() 31 out << "__atomic" << subtype_->type_name(); in type_name() 37 out << "atomic<" << subtype_->FriendlyName(symbols) << ">"; in FriendlyName() 42 return subtype_->Size(); in Size() 46 return subtype_->Align(); in Align()
|
H A D | pointer_type.cc | 28 : subtype_(subtype), storage_class_(storage_class), access_(access) { in Pointer() 35 out << "__ptr_" << storage_class_ << subtype_->type_name() << "__" << access_; in type_name() 45 out << subtype_->FriendlyName(symbols) << ", " << access_; in FriendlyName()
|
H A D | reference_type.cc | 27 : subtype_(subtype), storage_class_(storage_class), access_(access) { in Reference() 34 out << "__ref_" << storage_class_ << subtype_->type_name() << "__" << access_; in type_name() 44 out << subtype_->FriendlyName(symbols) << ", " << access_; in FriendlyName()
|
H A D | vector_type.cc | 25 : subtype_(subtype), width_(width) { in Vector() 35 return "__vec_" + std::to_string(width_) + subtype_->type_name(); in type_name() 40 out << "vec" << width_ << "<" << subtype_->FriendlyName(symbols) << ">"; in FriendlyName()
|
H A D | matrix_type.cc | 26 : subtype_(column_type->type()), in Matrix() 42 subtype_->type_name(); in type_name() 48 << subtype_->FriendlyName(symbols) << ">"; in FriendlyName()
|
H A D | atomic_type.h | 37 const sem::Type* Type() const { return subtype_; } in Type() 58 sem::Type const* const subtype_; member in tint::sem::Atomic::sem
|
H A D | pointer_type.h | 43 const Type* StoreType() const { return subtype_; } in StoreType() 60 Type const* const subtype_; member in tint::sem::Pointer
|
H A D | reference_type.h | 43 const Type* StoreType() const { return subtype_; } in StoreType() 60 Type const* const subtype_; member in tint::sem::Reference
|
H A D | vector_type.h | 37 const Type* type() const { return subtype_; } in type() 70 Type const* const subtype_; member in tint::sem::Vector
|
H A D | matrix_type.h | 40 const Type* type() const { return subtype_; } in type() 72 const Type* const subtype_; member in tint::sem::Matrix
|
H A D | storage_texture_type.h | 47 Type* type() const { return subtype_; } in type() 71 Type* const subtype_; member in tint::sem::StorageTexture
|
H A D | storage_texture_type.cc | 28 : Base(dim), image_format_(format), access_(access), subtype_(subtype) {} in StorageTexture()
|
/third_party/json/include/nlohmann/ |
H A D | byte_container_with_subtype.hpp | 44 byte_container_with_subtype(const container_type& b, subtype_type subtype_) noexcept(noexcept(container_type(b))) in noexcept() 46 , m_subtype(subtype_) in noexcept() 51 byte_container_with_subtype(container_type&& b, subtype_type subtype_) noexcept(noexcept(container_type(std::move(b)))) in noexcept() 53 , m_subtype(subtype_) in noexcept() 70 void set_subtype(subtype_type subtype_) noexcept 72 m_subtype = subtype_;
|
/third_party/skia/third_party/externals/libwebp/examples/ |
H A D | webpmux.c | 89 FeatureSubType subtype_; member 684 arg->subtype_ = SUBTYPE_ANMF; in ParseCommandLine() 701 arg->subtype_ = in ParseCommandLine() 955 switch (config->args_[i].subtype_) { in Process()
|
/third_party/json/tests/abi/include/nlohmann/ |
H A D | json_v3_10_5.hpp | 4994 byte_container_with_subtype(const container_type& b, subtype_type subtype_) noexcept(noexcept(container_type(b))) 4996 , m_subtype(subtype_) 5001 byte_container_with_subtype(container_type&& b, subtype_type subtype_) noexcept(noexcept(container_type(std::move(b)))) 5003 , m_subtype(subtype_) 5020 void set_subtype(subtype_type subtype_) noexcept 5022 m_subtype = subtype_;
|
/third_party/json/single_include/nlohmann/ |
H A D | json.hpp | 5841 byte_container_with_subtype(const container_type& b, subtype_type subtype_) noexcept(noexcept(container_type(b))) in noexcept() 5843 , m_subtype(subtype_) in noexcept() 5848 byte_container_with_subtype(container_type&& b, subtype_type subtype_) noexcept(noexcept(container_type(std::move(b)))) in noexcept() 5850 , m_subtype(subtype_) in noexcept() 5867 void set_subtype(subtype_type subtype_) noexcept 5869 m_subtype = subtype_;
|