Home
last modified time | relevance | path

Searched refs:OpaqueValue (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dos_version_check.c217 CFTypeRef OpaqueValue = (*CFDictionaryGetValueFunc)(PListRef, ProductVersion); in _initializeAvailabilityCheck() local
219 if (!OpaqueValue || in _initializeAvailabilityCheck()
220 (*CFGetTypeIDFunc)(OpaqueValue) != (*CFStringGetTypeIDFunc)()) in _initializeAvailabilityCheck()
224 if (!(*CFStringGetCStringFunc)((CFStringRef)OpaqueValue, VersionStr, in _initializeAvailabilityCheck()
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DPointerSumType.h284 uintptr_t OpaqueValue = Arg.getOpaqueValue();
285 return DenseMapInfo<uintptr_t>::getHashValue(OpaqueValue);
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DExprCXX.h4939 OpaqueValueExpr *OpaqueValue = nullptr; variable
4944 OpaqueValueExpr *OpaqueValue) in CoroutineSuspendExpr() argument
4947 KeywordLoc(KeywordLoc), OpaqueValue(OpaqueValue) { in CoroutineSuspendExpr()
4982 OpaqueValueExpr *getOpaqueValue() const { return OpaqueValue; } in getOpaqueValue()
5030 OpaqueValueExpr *OpaqueValue, bool IsImplicit = false)
5032 Ready, Suspend, Resume, OpaqueValue) { in CoroutineSuspendExpr() argument
5111 OpaqueValueExpr *OpaqueValue) in CoyieldExpr() argument
5113 Ready, Suspend, Resume, OpaqueValue) {} in CoyieldExpr()
H A DExpr.h4221 OpaqueValueExpr *OpaqueValue; variable
4231 OpaqueValue(opaqueValue) { in BinaryConditionalOperator()
4236 assert(OpaqueValue->getSourceExpr() == common && "Wrong opaque value"); in BinaryConditionalOperator()
4250 OpaqueValueExpr *getOpaqueValue() const { return OpaqueValue; } in getOpaqueValue()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenFunction.h1270 const OpaqueValueExpr *OpaqueValue;
1276 : OpaqueValue(ov), BoundLValue(boundLValue) {}
1278 OpaqueValueMappingData() : OpaqueValue(nullptr) {}
1323 bool isValid() const { return OpaqueValue != nullptr; }
1324 void clear() { OpaqueValue = nullptr; }
1327 assert(OpaqueValue && "no data to unbind!");
1330 CGF.OpaqueLValues.erase(OpaqueValue);
1332 CGF.OpaqueRValues.erase(OpaqueValue);
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaCoroutine.cpp298 OpaqueValueExpr *OpaqueValue; member
997 RSS.Results[2], RSS.OpaqueValue, IsImplicit); in BuildResolvedCoawaitExpr()
1055 RSS.Results[2], RSS.OpaqueValue); in BuildCoyieldExpr()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp486 E->OpaqueValue = cast_or_null<OpaqueValueExpr>(Record.readSubStmt()); in VisitCoawaitExpr()
495 E->OpaqueValue = cast_or_null<OpaqueValueExpr>(Record.readSubStmt()); in VisitCoyieldExpr()
1160 E->OpaqueValue = cast<OpaqueValueExpr>(Record.readSubExpr()); in VisitBinaryConditionalOperator()