Home
last modified time | relevance | path

Searched refs:Validator (Results 1 – 14 of 14) 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
74 mutable std::unique_ptr<tools::hlsl::Validator> Validator;
H A DHLSL.cpp213 void tools::hlsl::Validator::ConstructJob(Compilation &C, const JobAction &JA, in ConstructJob()
263 if (!Validator) in getTool()
264 Validator.reset(new tools::hlsl::Validator(*this)); in getTool()
265 return Validator.get(); in getTool()
/freebsd/contrib/llvm-project/lldb/utils/TableGen/
H A DLLDBOptionDefEmitter.cpp33 std::string Validator; member
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/clang/utils/TableGen/
H A DClangASTPropertiesEmitter.cpp176 Validator(*this).validate(); in ASTPropsEmitter()
262 class Validator { class in __anon032faab90111::ASTPropsEmitter
267 Validator(ASTPropsEmitter &emitter) : Emitter(emitter) {} in Validator() function in __anon032faab90111::ASTPropsEmitter::Validator
278 void ASTPropsEmitter::Validator::validate() { in validate()
288 void ASTPropsEmitter::Validator::validateNode(HasProperties derivedNode, in validateNode()
318 void ASTPropsEmitter::Validator::validateType(PropertyType type, in validateType()
/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.td651 Arg<"UnsignedInteger">, Validator<"&posix_validator">,
654 Arg<"UnsignedInteger">, Validator<"&posix_validator">,
657 Arg<"UnsignedInteger">, Validator<"&posix_validator">,
660 Arg<"UnsignedInteger">, Validator<"&posix_validator">,
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseExpr.cpp1006 CastExpressionIdValidator Validator(Tok, CorrectionBehavior); in ParseCastExpression() local
1007 Validator.IsAddressOfOperand = isAddressOfOperand; in ParseCastExpression()
1009 Validator.WantExpressionKeywords = false; in ParseCastExpression()
1010 Validator.WantRemainingKeywords = false; in ParseCastExpression()
1012 Validator.WantRemainingKeywords = Tok.isNot(tok::r_paren); in ParseCastExpression()
1017 isAddressOfOperand, &Validator, in ParseCastExpression()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIInstrInfo.td1144 string Validator = "[](int64_t V) { return true; }";
1145 string ConvertMethod = "[](int64_t &V) { return "#Validator#"(V); }";
1198 let Validator = "isUInt<8>" in {
1273 let Validator = "isUInt<3>";
1276 let Validator = "isUInt<4>";
1284 let Validator = "isUInt<4>";
1287 let Validator = "isUInt<3>";
1290 let Validator = "isUInt<4>";
1293 let Validator = "isUInt<1>";
1298 let Validator = "isUInt<2>";
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaExprMember.cpp1348 DeclFilterCCC<ObjCIvarDecl> Validator{}; in LookupMemberExpr() local
1349 Validator.IsObjCIvarLookup = IsArrow; in LookupMemberExpr()
1352 Validator, CorrectTypoKind::ErrorRecovery, IDecl)) { in LookupMemberExpr()
H A DSemaLambda.cpp1268 DeclFilterCCC<VarDecl> Validator{}; in ActOnLambdaExpressionAfterIntroducer() local
1269 if (DiagnoseEmptyLookup(CurScope, ScopeSpec, R, Validator)) in ActOnLambdaExpressionAfterIntroducer()
H A DSemaOverload.cpp14518 CorrectionCandidateCallback &Validator = in BuildRecoveryCallExpr() local
14522 if (SemaRef.DiagnoseEmptyLookup(S, SS, R, Validator, ExplicitTemplateArgs, in BuildRecoveryCallExpr()
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DCompilerInstance.cpp246 SimpleASTReaderListener Validator(CI.getPreprocessor()); in collectIncludePCH() local
255 /*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.cpp2514 static const Regex Validator("^[a-zA-Z0-9_-]*$"); in ValidatePrefixes() local
2515 if (!Validator.match(Prefix)) { in ValidatePrefixes()