Searched defs:RValue (Results 1 - 4 of 4) sorted by relevance

/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 &&'}}
120 RValue RVa;
121 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/CodeGen/
H A DCGValue.h32 /// RValue - This trivial value class is used to represent the result of an
36 class RValue { class in namespace:clang::CodeGen
69 static RValue get(llvm::Value *V) {
70 RValue ER;
76 static RValue getComplex(llvm::Value *V1, llvm::Value *V2) {
77 RValue ER;
84 static RValue getComplex(const std::pair<llvm::Value *, llvm::Value *> &C) {
90 static RValue getAggregate(llvm::Value *V, bool Volatile = false) {
91 RValue ER;
307 RValue asAggregateRValu
[all...]
/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();

Completed in 178 milliseconds