/external/llvm-project/mlir/include/mlir/IR/ |
D | UseDefLists.h | 230 class OpaqueValue { 233 OpaqueValue(Value value); 234 OpaqueValue(std::nullptr_t = nullptr) : impl(nullptr) {} in impl() 235 OpaqueValue(const OpaqueValue &) = default; 236 OpaqueValue &operator=(const OpaqueValue &) = default; 237 bool operator==(const OpaqueValue &other) const { return impl == other.impl; } 250 class OpOperand : public IROperand<OpOperand, detail::OpaqueValue> { 268 using IROperand<OpOperand, detail::OpaqueValue>::IROperand;
|
/external/llvm-project/mlir/lib/IR/ |
D | Value.cpp | 232 return IROperand<OpOperand, OpaqueValue>::get(); in get() 237 IROperand<OpOperand, OpaqueValue>::set(value); in set() 250 OpaqueValue::OpaqueValue(Value value) : impl(value.getAsOpaquePointer()) {} in OpaqueValue() function in OpaqueValue 253 OpaqueValue::operator Value() const { in operator Value()
|
/external/llvm-project/compiler-rt/lib/builtins/ |
D | os_version_check.c | 213 CFTypeRef OpaqueValue = (*CFDictionaryGetValueFunc)(PListRef, ProductVersion); in _initializeAvailabilityCheck() local 215 if (!OpaqueValue || in _initializeAvailabilityCheck() 216 (*CFGetTypeIDFunc)(OpaqueValue) != (*CFStringGetTypeIDFunc)()) in _initializeAvailabilityCheck() 220 if (!(*CFStringGetCStringFunc)((CFStringRef)OpaqueValue, VersionStr, in _initializeAvailabilityCheck()
|
/external/llvm/include/llvm/ADT/ |
D | PointerSumType.h | 195 uintptr_t OpaqueValue = Arg.getOpaqueValue(); 196 return DenseMapInfo<uintptr_t>::getHashValue(OpaqueValue);
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
D | PointerSumType.h | 283 uintptr_t OpaqueValue = Arg.getOpaqueValue(); 284 return DenseMapInfo<uintptr_t>::getHashValue(OpaqueValue);
|
/external/llvm-project/llvm/include/llvm/ADT/ |
D | PointerSumType.h | 283 uintptr_t OpaqueValue = Arg.getOpaqueValue(); 284 return DenseMapInfo<uintptr_t>::getHashValue(OpaqueValue);
|
/external/clang/lib/CodeGen/ |
D | CodeGenFunction.h | 810 const OpaqueValueExpr *OpaqueValue; variable 816 : OpaqueValue(ov), BoundLValue(boundLValue) {} in OpaqueValueMappingData() 818 OpaqueValueMappingData() : OpaqueValue(nullptr) {} in OpaqueValueMappingData() 863 bool isValid() const { return OpaqueValue != nullptr; } in isValid() 864 void clear() { OpaqueValue = nullptr; } in clear() 867 assert(OpaqueValue && "no data to unbind!"); in unbind() 870 CGF.OpaqueLValues.erase(OpaqueValue); in unbind() 872 CGF.OpaqueRValues.erase(OpaqueValue); in unbind()
|
/external/llvm-project/clang/include/clang/AST/ |
D | ExprCXX.h | 4677 OpaqueValueExpr *OpaqueValue = nullptr; variable 4682 OpaqueValueExpr *OpaqueValue) in CoroutineSuspendExpr() argument 4685 KeywordLoc(KeywordLoc), OpaqueValue(OpaqueValue) { in CoroutineSuspendExpr() 4719 OpaqueValueExpr *getOpaqueValue() const { return OpaqueValue; } in getOpaqueValue() 4759 Expr *Suspend, Expr *Resume, OpaqueValueExpr *OpaqueValue, 4762 Suspend, Resume, OpaqueValue) { in CoroutineSuspendExpr() argument 4844 Expr *Suspend, Expr *Resume, OpaqueValueExpr *OpaqueValue) in CoyieldExpr() argument 4846 Suspend, Resume, OpaqueValue) {} in CoyieldExpr()
|
D | Expr.h | 4136 OpaqueValueExpr *OpaqueValue; variable 4146 OpaqueValue(opaqueValue) { in BinaryConditionalOperator() 4151 assert(OpaqueValue->getSourceExpr() == common && "Wrong opaque value"); in BinaryConditionalOperator() 4165 OpaqueValueExpr *getOpaqueValue() const { return OpaqueValue; } in getOpaqueValue()
|
/external/llvm-project/clang/lib/CodeGen/ |
D | CodeGenFunction.h | 1171 const OpaqueValueExpr *OpaqueValue; 1177 : OpaqueValue(ov), BoundLValue(boundLValue) {} 1179 OpaqueValueMappingData() : OpaqueValue(nullptr) {} 1224 bool isValid() const { return OpaqueValue != nullptr; } 1225 void clear() { OpaqueValue = nullptr; } 1228 assert(OpaqueValue && "no data to unbind!"); 1231 CGF.OpaqueLValues.erase(OpaqueValue); 1233 CGF.OpaqueRValues.erase(OpaqueValue);
|
/external/llvm-project/clang/lib/Sema/ |
D | SemaCoroutine.cpp | 344 OpaqueValueExpr *OpaqueValue; member 915 RSS.Results[2], RSS.OpaqueValue, IsImplicit); in BuildResolvedCoawaitExpr() 970 RSS.Results[2], RSS.OpaqueValue); in BuildCoyieldExpr()
|
/external/clang/include/clang/AST/ |
D | Expr.h | 3249 OpaqueValueExpr *OpaqueValue; variable 3265 OpaqueValue(opaqueValue) { in BinaryConditionalOperator() 3270 assert(OpaqueValue->getSourceExpr() == common && "Wrong opaque value"); in BinaryConditionalOperator() 3283 OpaqueValueExpr *getOpaqueValue() const { return OpaqueValue; } in getOpaqueValue()
|
/external/llvm-project/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 474 E->OpaqueValue = cast_or_null<OpaqueValueExpr>(Record.readSubStmt()); in VisitCoawaitExpr() 483 E->OpaqueValue = cast_or_null<OpaqueValueExpr>(Record.readSubStmt()); in VisitCoyieldExpr() 1132 E->OpaqueValue = cast<OpaqueValueExpr>(Record.readSubExpr()); in VisitBinaryConditionalOperator()
|
/external/clang/lib/AST/ |
D | ASTImporter.cpp | 5703 OpaqueValueExpr *OpaqueValue = cast_or_null<OpaqueValueExpr>( in VisitBinaryConditionalOperator() local 5705 if (!OpaqueValue) in VisitBinaryConditionalOperator() 5717 Common, OpaqueValue, Cond, TrueExpr, FalseExpr, in VisitBinaryConditionalOperator()
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 708 E->OpaqueValue = cast<OpaqueValueExpr>(Reader.ReadSubExpr()); in VisitBinaryConditionalOperator()
|