Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DHLSL.h21 class LLVM_LIBRARY_VISIBILITY Validator : public Tool {
23 Validator(const ToolChain &TC) : Tool("hlsl::Validator", "dxv", TC) {} in Validator() function
59 mutable std::unique_ptr<tools::hlsl::Validator> Validator;
H A DHLSL.cpp178 void tools::hlsl::Validator::ConstructJob(Compilation &C, const JobAction &JA, in ConstructJob()
214 if (!Validator) in getTool()
215 Validator.reset(new tools::hlsl::Validator(*this)); in getTool()
216 return Validator.get(); in getTool()
/freebsd/contrib/llvm-project/lldb/utils/TableGen/
H A DLLDBOptionDefEmitter.cpp33 std::string Validator; member
64 if (Option->getValue("Validator")) in CommandOption()
65 Validator = std::string(Option->getValueAsString("Validator")); in CommandOption()
107 if (!O.Validator.empty()) in emitOption()
108 OS << O.Validator; in emitOption()
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DOptionsBase.td50 // - `Validator`: Sets the value to a given validator (which has to exist in
174 class Validator<string validator> {
175 string Validator = validator;
H A DOptions.td638 Arg<"UnsignedInteger">, Validator<"&posix_validator">,
641 Arg<"UnsignedInteger">, Validator<"&posix_validator">,
644 Arg<"UnsignedInteger">, Validator<"&posix_validator">,
647 Arg<"UnsignedInteger">, Validator<"&posix_validator">,
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIInstrInfo.td1024 string Validator = "[](int64_t V) { return true; }";
1025 string ConvertMethod = "[](int64_t &V) { return "#Validator#"(V); }";
1069 let Validator = "isUInt<8>" in {
1139 let Validator = "isUInt<3>";
1142 let Validator = "isUInt<4>";
1149 let Validator = "isUInt<4>";
1152 let Validator = "isUInt<3>";
1155 let Validator = "isUInt<4>";
1158 let Validator = "isUInt<1>";
1162 let Validator = "isUInt<2>";
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseExpr.cpp1331 CastExpressionIdValidator Validator( in ParseCastExpression() local
1335 Validator.IsAddressOfOperand = isAddressOfOperand; in ParseCastExpression()
1337 Validator.WantExpressionKeywords = false; in ParseCastExpression()
1338 Validator.WantRemainingKeywords = false; in ParseCastExpression()
1340 Validator.WantRemainingKeywords = Tok.isNot(tok::r_paren); in ParseCastExpression()
1345 isAddressOfOperand, &Validator, in ParseCastExpression()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaExprMember.cpp1413 DeclFilterCCC<ObjCIvarDecl> Validator{}; in LookupMemberExpr() local
1414 Validator.IsObjCIvarLookup = IsArrow; in LookupMemberExpr()
1417 Validator, Sema::CTK_ErrorRecovery, IDecl)) { in LookupMemberExpr()
H A DSemaLambda.cpp1242 DeclFilterCCC<VarDecl> Validator{}; in ActOnLambdaExpressionAfterIntroducer() local
1243 if (DiagnoseEmptyLookup(CurScope, ScopeSpec, R, Validator)) in ActOnLambdaExpressionAfterIntroducer()
H A DSemaOverload.cpp13753 CorrectionCandidateCallback &Validator = in BuildRecoveryCallExpr() local
13757 if (SemaRef.DiagnoseEmptyLookup(S, SS, R, Validator, ExplicitTemplateArgs, in BuildRecoveryCallExpr()
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DCompilerInstance.cpp247 SimpleASTReaderListener Validator(CI.getPreprocessor()); in collectIncludePCH() local
256 /*FindModuleFileExtensions=*/false, Validator, in collectIncludePCH()
/freebsd/contrib/unbound/doc/
H A Drequirements.txt29 The main components are the Validator that validates the security
/freebsd/contrib/llvm-project/llvm/lib/FileCheck/
H A DFileCheck.cpp2477 static const Regex Validator("^[a-zA-Z0-9_-]*$"); in ValidatePrefixes() local
2478 if (!Validator.match(Prefix)) { in ValidatePrefixes()