Home
last modified time | relevance | path

Searched refs:ObjectKind (Results 1 – 8 of 8) sorted by relevance

/llvm-project-15.0.7/clang/lib/StaticAnalyzer/Checkers/
H A DMoveChecker.cpp80 struct ObjectKind { struct in __anon1dac178a0211::MoveChecker
115 bool shouldBeTracked(ObjectKind OK) const { in shouldBeTracked()
136 bool shouldWarnAbout(ObjectKind OK, MisuseKind MK) const { in shouldWarnAbout()
147 ObjectKind classifyObject(const MemRegion *MR, const CXXRecordDecl *RD) const;
300 ObjectKind OK = Chk.classifyObject(Region, RD); in VisitNode()
354 ObjectKind OK = classifyObject(Region, RD); in modelUse()
482 ObjectKind OK = classifyObject(ArgRegion, RD); in checkPostCall()
548 MoveChecker::ObjectKind
580 ObjectKind OK = classifyObject(MR, RD); in explainObject()
/llvm-project-15.0.7/lld/wasm/
H A DInputFiles.h45 ObjectKind, enumerator
105 : InputFile(ObjectKind, m) { in ObjFile()
112 static bool classof(const InputFile *f) { return f->kind() == ObjectKind; } in classof()
H A DSymbolTable.cpp125 if (!file || file->kind() == InputFile::ObjectKind) in insert()
784 !file || file->kind() == InputFile::ObjectKind; in getFunctionVariant()
/llvm-project-15.0.7/lld/COFF/
H A DInputFiles.h68 ObjectKind, enumerator
132 : InputFile(ctx, ObjectKind, m, lazy) {} in InputFile() argument
133 static bool classof(const InputFile *f) { return f->kind() == ObjectKind; } in classof()
/llvm-project-15.0.7/clang/lib/Sema/
H A DAnalysisBasedWarnings.cpp1465 } ObjectKind; in diagnoseRepeatedUseOfWeak() local
1469 ObjectKind = Variable; in diagnoseRepeatedUseOfWeak()
1471 ObjectKind = Property; in diagnoseRepeatedUseOfWeak()
1473 ObjectKind = ImplicitProperty; in diagnoseRepeatedUseOfWeak()
1475 ObjectKind = Ivar; in diagnoseRepeatedUseOfWeak()
1487 << int(ObjectKind) << KeyProp << int(FunctionKind) in diagnoseRepeatedUseOfWeak()
H A DSemaCodeComplete.cpp192 ExprValueKind ObjectKind; member in __anon3bc9fbb90111::ResultBuilder
270 ObjectKind = Kind; in setObjectTypeQualifiers()
1220 ExprValueKind ObjectKind) { in compareOverloads() argument
1246 if (ObjectKind == clang::VK_XValue) in compareOverloads()
1343 if (ObjectKind != VK_LValue && !MethodQuals.hasConst()) in AddResult()
1347 if (ObjectKind == VK_LValue) in AddResult()
1363 ObjectTypeQualifiers, ObjectKind)) { in AddResult()
/llvm-project-15.0.7/clang/include/clang/AST/
H A DExpr.h124 ExprBits.ObjectKind = OK; in Expr()
125 assert(ExprBits.ObjectKind == OK && "truncated kind"); in Expr()
438 return static_cast<ExprObjectKind>(ExprBits.ObjectKind); in getObjectKind()
450 void setObjectKind(ExprObjectKind Cat) { ExprBits.ObjectKind = Cat; } in setObjectKind()
H A DStmt.h316 unsigned ObjectKind : 3; in alignas() local