Home
last modified time | relevance | path

Searched refs:ClauseType (Results 1 – 9 of 9) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/HLSL/
H A DHLSLRootSignature.h85 using ClauseType = llvm::dxil::ResourceClass; variable
87 ClauseType Type;
97 if (Type != ClauseType::Sampler) in setDefaultFlags()
105 case ClauseType::CBuffer: in setDefaultFlags()
106 case ClauseType::SRV: in setDefaultFlags()
109 case ClauseType::UAV: in setDefaultFlags()
112 case ClauseType::Sampler: in setDefaultFlags()
/freebsd/contrib/llvm-project/llvm/lib/Frontend/HLSL/
H A DHLSLRootSignature.cpp121 static raw_ostream &operator<<(raw_ostream &OS, const ClauseType &Type) { in operator <<()
182 ClauseType Type = ClauseType(llvm::to_underlying(Descriptor.Type)); in operator <<()
/freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/
H A DConstructDecompositionT.h82 template <typename ClauseType, typename HelperType>
84 using ClauseTy = ClauseType;
117 tomp::ListT<DirectiveWithClauses<ClauseType>> output;
257 template <typename ClauseType, typename HelperType>
259 llvm::ArrayRef<ClauseType>)
260 -> ConstructDecompositionT<ClauseType, HelperType>;
H A DClauseT.h1336 template <typename ClauseType> struct DirectiveWithClauses {
1338 tomp::type::ListT<ClauseType> clauses;
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseHLSLRootSignature.cpp364 Clause.Type = ClauseType::CBuffer; in parseDescriptorTableClause()
368 Clause.Type = ClauseType::SRV; in parseDescriptorTableClause()
372 Clause.Type = ClauseType::UAV; in parseDescriptorTableClause()
376 Clause.Type = ClauseType::Sampler; in parseDescriptorTableClause()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DInstructions.h2891 enum ClauseType { Catch, Filter };
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp6186 LandingPadInst::ClauseType CT = in parseFunctionBody()
6187 LandingPadInst::ClauseType(Record[Idx++]); (void)CT; in parseFunctionBody()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp667 template <typename ClauseType> bool hasRequiresDeclWithClause() const { in hasRequiresDeclWithClause()
670 return isa<ClauseType>(C); in hasRequiresDeclWithClause()
13238 template <typename ClauseType>
13242 auto ClauseItr = llvm::find_if(Clauses, llvm::IsaPred<ClauseType>); in checkNumExprsInClause()
13245 const auto *C = cast<ClauseType>(*ClauseItr); in checkNumExprsInClause()
/freebsd/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp8246 LandingPadInst::ClauseType CT; in parseLandingPad()