Searched refs:ResultKind (Results 1 - 10 of 10) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DDynamicCastInfo.h22 : From(from), To(to), ResultKind(resultKind) {}
31 bool succeeds() const { return ResultKind == CastResult::Success; }
32 bool fails() const { return ResultKind == CastResult::Failure; }
44 ID.AddInteger(ResultKind);
49 CastResult ResultKind; member in class:clang::ento::DynamicCastInfo
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DLookup.h184 : ResultKind(std::move(Other.ResultKind)),
204 ResultKind = std::move(Other.ResultKind);
323 return ResultKind;
434 ResultKind = Found;
441 ResultKind = Found;
447 return ResultKind == NotFoundInCurrentInstantiation;
453 assert(ResultKind == NotFound && Decls.empty());
454 ResultKind
722 LookupResultKind ResultKind = NotFound; member in class:clang::LookupResult
[all...]
H A DCodeCompleteConsumer.h749 enum ResultKind {
788 ResultKind Kind;
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DDynamicType.cpp128 DynamicCastInfo::CastResult ResultKind = local
137 Set = F.add(Set, {CastFromTy, CastToTy, ResultKind});
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaLookup.cpp329 assert(ResultKind != NotFound || Decls.size() == 0);
330 assert(ResultKind != Found || Decls.size() == 1);
331 assert(ResultKind != FoundOverloaded || Decls.size() > 1 ||
334 assert(ResultKind != FoundUnresolvedValue || sanityCheckUnresolved());
335 assert(ResultKind != Ambiguous || Decls.size() > 1 ||
338 assert((Paths != nullptr) == (ResultKind == Ambiguous &&
484 assert(ResultKind == NotFound ||
485 ResultKind == NotFoundInCurrentInstantiation);
494 ResultKind = FoundOverloaded;
496 ResultKind
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DExpr.cpp275 ConstantExprBits.ResultKind = StorageKind;
309 ConstantExprBits.ResultKind = StorageKind;
327 assert((unsigned)getStorageKind(Value) <= ConstantExprBits.ResultKind &&
330 switch (ConstantExprBits.ResultKind) {
346 llvm_unreachable("Invalid ResultKind Bits");
350 switch (ConstantExprBits.ResultKind) {
364 switch (ConstantExprBits.ResultKind) {
374 llvm_unreachable("invalid ResultKind");
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DExpr.h1015 return ConstantExprBits.ResultKind == ConstantExpr::RSK_APValue;
1018 return ConstantExprBits.ResultKind == ConstantExpr::RSK_Int64;
1022 assert(ConstantExprBits.ResultKind == ConstantExpr::RSK_Int64 &&
1030 assert(ConstantExprBits.ResultKind == ConstantExpr::RSK_APValue &&
1075 return static_cast<ResultStorageKind>(ConstantExprBits.ResultKind);
H A DStmt.h326 unsigned ResultKind : 2;
331 /// When ResultKind == RSK_Int64, true if the tail-allocated integer is
335 /// When ResultKind == RSK_Int64. the BitWidth of the tail-allocated
340 /// When ResultKind == RSK_APValue, true if the ASTContext will cleanup the
/freebsd-13-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriterStmt.cpp553 Record.push_back(E->ConstantExprBits.ResultKind);
561 switch (E->ConstantExprBits.ResultKind) {
571 llvm_unreachable("unexpected ResultKind!");
H A DASTReaderStmt.cpp548 assert(E->ConstantExprBits.ResultKind == StorageKind && "Wrong ResultKind!");
572 llvm_unreachable("unexpected ResultKind!");

Completed in 391 milliseconds