Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/
H A DMoveChecker.cpp80 struct ObjectKind { struct in __anon4e3ee8f10211::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()
/openbsd-src/gnu/llvm/lld/wasm/
H A DInputFiles.h46 ObjectKind, enumerator
107 : InputFile(ObjectKind, m) { in ObjFile()
114 static bool classof(const InputFile *f) { return f->kind() == ObjectKind; } in classof()
H A DSymbolTable.cpp133 if (!file || file->kind() == InputFile::ObjectKind) in insert()
799 !file || file->kind() == InputFile::ObjectKind; in getFunctionVariant()
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DAnalysisBasedWarnings.cpp1469 } ObjectKind; in diagnoseRepeatedUseOfWeak() local
1473 ObjectKind = Variable; in diagnoseRepeatedUseOfWeak()
1475 ObjectKind = Property; in diagnoseRepeatedUseOfWeak()
1477 ObjectKind = ImplicitProperty; in diagnoseRepeatedUseOfWeak()
1479 ObjectKind = Ivar; in diagnoseRepeatedUseOfWeak()
1491 << int(ObjectKind) << KeyProp << int(FunctionKind) in diagnoseRepeatedUseOfWeak()
H A DSemaCodeComplete.cpp193 ExprValueKind ObjectKind; member in __anon4b9354e00111::ResultBuilder
271 ObjectKind = Kind; in setObjectTypeQualifiers()
1222 ExprValueKind ObjectKind) { in compareOverloads() argument
1248 if (ObjectKind == clang::VK_XValue) in compareOverloads()
1346 if (ObjectKind != VK_LValue && !MethodQuals.hasConst()) in AddResult()
1350 if (ObjectKind == VK_LValue) in AddResult()
1366 ObjectTypeQualifiers, ObjectKind)) { in AddResult()
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DExpr.h125 ExprBits.ObjectKind = OK; in Expr()
126 assert(ExprBits.ObjectKind == OK && "truncated kind"); in Expr()
439 return static_cast<ExprObjectKind>(ExprBits.ObjectKind); in getObjectKind()
451 void setObjectKind(ExprObjectKind Cat) { ExprBits.ObjectKind = Cat; } in setObjectKind()
H A DStmt.h318 unsigned ObjectKind : 3; variable