Searched defs:RValue (Results 1 - 5 of 5) sorted by last modified time

/external/clang/lib/StaticAnalyzer/Core/
H A DBugReporterVisitors.cpp267 SVal RValue = State->getRawSVal(*LValue, RetE->getType()); local
268 if (RValue.getAs<DefinedSVal>())
269 V = RValue;
/external/clang/test/CXX/special/class.copy/
H A Dp11.0x.copy.cpp117 struct RValue { struct
118 int && ri = 1; // expected-note{{copy constructor of 'RValue' is implicitly deleted because field 'ri' is of rvalue reference type 'int &&'}}
121 RValue RVa;
122 RValue RVb(RVa); // expected-error{{call to implicitly-deleted copy constructor}}
H A Dp11.0x.move.cpp110 struct RValue { struct
112 RValue(RValue&&);
114 RValue::RValue(RValue&&) = default;
/external/clang/lib/Sema/
H A DSemaExprObjC.cpp428 // Convert the expression to an RValue, so we can check for pointer types...
429 ExprResult RValue = DefaultFunctionArrayLvalueConversion(ValueExpr); local
430 if (RValue.isInvalid()) {
433 ValueExpr = RValue.get();
/external/clang/lib/CodeGen/
H A DCGValue.h33 /// RValue - This trivial value class is used to represent the result of an
37 class RValue { class in namespace:clang::CodeGen
70 static RValue get(llvm::Value *V) {
71 RValue ER;
77 static RValue getComplex(llvm::Value *V1, llvm::Value *V2) {
78 RValue ER;
85 static RValue getComplex(const std::pair<llvm::Value *, llvm::Value *> &C) {
91 static RValue getAggregate(llvm::Value *V, bool Volatile = false) {
92 RValue ER;
339 RValue asAggregateRValu
[all...]

Completed in 160 milliseconds