| /llvm-project-15.0.7/llvm/tools/llvm-pdbutil/ |
| H A D | PrettyVariableDumper.cpp | 45 auto VarType = Var.getType(); in start() local 47 uint64_t Length = VarType->getRawSymbol().getLength(); in start() 57 dumpSymbolTypeAndName(*VarType, Var.getName()); in start() 60 if (isa<PDBSymbolTypeEnum>(*VarType)) in start() 64 dumpSymbolTypeAndName(*VarType, Var.getName()); in start() 74 dumpSymbolTypeAndName(*VarType, Var.getName()); in start() 82 dumpSymbolTypeAndName(*VarType, Var.getName()); in start()
|
| /llvm-project-15.0.7/mlir/examples/toy/Ch1/include/toy/ |
| H A D | Parser.h | 291 std::unique_ptr<VarType> parseType() { in parseType() 293 return parseError<VarType>("<", "to begin type"); in parseType() 296 auto type = std::make_unique<VarType>(); in parseType() 306 return parseError<VarType>(">", "to end type"); in parseType() 327 std::unique_ptr<VarType> type; // Type is optional, it can be inferred in parseDeclaration() 335 type = std::make_unique<VarType>(); in parseDeclaration()
|
| H A D | AST.h | 29 struct VarType { struct 112 VarType type; 116 VarDeclExprAST(Location loc, llvm::StringRef name, VarType type, in VarDeclExprAST() 123 const VarType &getType() { return type; } in getType()
|
| /llvm-project-15.0.7/mlir/examples/toy/Ch2/include/toy/ |
| H A D | Parser.h | 291 std::unique_ptr<VarType> parseType() { in parseType() 293 return parseError<VarType>("<", "to begin type"); in parseType() 296 auto type = std::make_unique<VarType>(); in parseType() 306 return parseError<VarType>(">", "to end type"); in parseType() 327 std::unique_ptr<VarType> type; // Type is optional, it can be inferred in parseDeclaration() 335 type = std::make_unique<VarType>(); in parseDeclaration()
|
| H A D | AST.h | 29 struct VarType { struct 112 VarType type; 116 VarDeclExprAST(Location loc, llvm::StringRef name, VarType type, in VarDeclExprAST() 123 const VarType &getType() { return type; } in getType()
|
| /llvm-project-15.0.7/mlir/examples/toy/Ch3/include/toy/ |
| H A D | Parser.h | 291 std::unique_ptr<VarType> parseType() { in parseType() 293 return parseError<VarType>("<", "to begin type"); in parseType() 296 auto type = std::make_unique<VarType>(); in parseType() 306 return parseError<VarType>(">", "to end type"); in parseType() 327 std::unique_ptr<VarType> type; // Type is optional, it can be inferred in parseDeclaration() 335 type = std::make_unique<VarType>(); in parseDeclaration()
|
| H A D | AST.h | 29 struct VarType { struct 112 VarType type; 116 VarDeclExprAST(Location loc, llvm::StringRef name, VarType type, in VarDeclExprAST() 123 const VarType &getType() { return type; } in getType()
|
| /llvm-project-15.0.7/mlir/examples/toy/Ch5/include/toy/ |
| H A D | Parser.h | 291 std::unique_ptr<VarType> parseType() { in parseType() 293 return parseError<VarType>("<", "to begin type"); in parseType() 296 auto type = std::make_unique<VarType>(); in parseType() 306 return parseError<VarType>(">", "to end type"); in parseType() 327 std::unique_ptr<VarType> type; // Type is optional, it can be inferred in parseDeclaration() 335 type = std::make_unique<VarType>(); in parseDeclaration()
|
| H A D | AST.h | 29 struct VarType { struct 112 VarType type; 116 VarDeclExprAST(Location loc, llvm::StringRef name, VarType type, in VarDeclExprAST() 123 const VarType &getType() { return type; } in getType()
|
| /llvm-project-15.0.7/mlir/examples/toy/Ch6/include/toy/ |
| H A D | Parser.h | 291 std::unique_ptr<VarType> parseType() { in parseType() 293 return parseError<VarType>("<", "to begin type"); in parseType() 296 auto type = std::make_unique<VarType>(); in parseType() 306 return parseError<VarType>(">", "to end type"); in parseType() 327 std::unique_ptr<VarType> type; // Type is optional, it can be inferred in parseDeclaration() 335 type = std::make_unique<VarType>(); in parseDeclaration()
|
| H A D | AST.h | 29 struct VarType { struct 112 VarType type; 116 VarDeclExprAST(Location loc, llvm::StringRef name, VarType type, in VarDeclExprAST() 123 const VarType &getType() { return type; } in getType()
|
| /llvm-project-15.0.7/mlir/examples/toy/Ch4/include/toy/ |
| H A D | Parser.h | 291 std::unique_ptr<VarType> parseType() { in parseType() 293 return parseError<VarType>("<", "to begin type"); in parseType() 296 auto type = std::make_unique<VarType>(); in parseType() 306 return parseError<VarType>(">", "to end type"); in parseType() 327 std::unique_ptr<VarType> type; // Type is optional, it can be inferred in parseDeclaration() 335 type = std::make_unique<VarType>(); in parseDeclaration()
|
| H A D | AST.h | 29 struct VarType { struct 112 VarType type; 116 VarDeclExprAST(Location loc, llvm::StringRef name, VarType type, in VarDeclExprAST() 123 const VarType &getType() { return type; } in getType()
|
| /llvm-project-15.0.7/mlir/examples/toy/Ch7/include/toy/ |
| H A D | Parser.h | 359 std::unique_ptr<VarType> parseType() { in parseType() 361 return parseError<VarType>("<", "to begin type"); in parseType() 364 auto type = std::make_unique<VarType>(); in parseType() 374 return parseError<VarType>(">", "to end type"); in parseType() 413 VarType type; in parseTypedDeclaration() 456 std::unique_ptr<VarType> type; // Type is optional, it can be inferred in parseVarDeclaration() 463 type = std::make_unique<VarType>(); in parseVarDeclaration() 555 VarType type; in parsePrototype()
|
| H A D | AST.h | 29 struct VarType { struct 132 VarType type; 136 VarDeclExprAST(Location loc, llvm::StringRef name, VarType type, 143 const VarType &getType() { return type; } in getType()
|
| /llvm-project-15.0.7/clang/test/SemaCXX/ |
| H A D | return.cpp | 92 template <class VarType> 93 void Test(const VarType& value) { in Test()
|
| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/llvm/ |
| H A D | PreferRegisterOverUnsignedCheck.cpp | 38 const auto *VarType = Result.Nodes.getNodeAs<QualType>("varType"); in check() local 58 << UserVarDecl << *VarType << NeedsQualification in check()
|
| /llvm-project-15.0.7/clang-tools-extra/clangd/refactor/tweaks/ |
| H A D | ExtractVariable.cpp | 54 QualType VarType; member in clang::clangd::__anon79575e0f0111::ExtractionContext 120 VarType = computeVariableType(Expr, Ctx); in ExtractionContext() 121 if (VarType.isNull()) in ExtractionContext() 125 AttributedType::stripOuterNullability(VarType); in ExtractionContext() 210 printType(VarType, ExprNode->getDeclContext(), VarName) + " = " + in insertDeclaration()
|
| /llvm-project-15.0.7/llvm/lib/Target/BPF/ |
| H A D | BPFPreserveDIType.cpp | 108 IntegerType *VarType = Type::getInt64Ty(BB->getContext()); in BPFPreserveDITypeImpl() local 112 *M, VarType, false, GlobalVariable::ExternalLinkage, nullptr, GVName); in BPFPreserveDITypeImpl()
|
| /llvm-project-15.0.7/mlir/examples/toy/Ch3/parser/ |
| H A D | AST.cpp | 38 void dump(const VarType &type); 195 void ASTDumper::dump(const VarType &type) { in dump()
|
| /llvm-project-15.0.7/mlir/examples/toy/Ch1/parser/ |
| H A D | AST.cpp | 38 void dump(const VarType &type); 195 void ASTDumper::dump(const VarType &type) { in dump()
|
| /llvm-project-15.0.7/mlir/examples/toy/Ch2/parser/ |
| H A D | AST.cpp | 38 void dump(const VarType &type); 195 void ASTDumper::dump(const VarType &type) { in dump()
|
| /llvm-project-15.0.7/mlir/examples/toy/Ch6/parser/ |
| H A D | AST.cpp | 38 void dump(const VarType &type); 195 void ASTDumper::dump(const VarType &type) { in dump()
|
| /llvm-project-15.0.7/mlir/examples/toy/Ch4/parser/ |
| H A D | AST.cpp | 38 void dump(const VarType &type); 195 void ASTDumper::dump(const VarType &type) { in dump()
|
| /llvm-project-15.0.7/mlir/examples/toy/Ch5/parser/ |
| H A D | AST.cpp | 38 void dump(const VarType &type); 195 void ASTDumper::dump(const VarType &type) { in dump()
|