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

/external/clang/test/CXX/special/class.copy/
H A Dp11.0x.copy.cpp124 struct RValue { struct
125 int && ri = 1; // expected-note{{copy constructor of 'RValue' is implicitly deleted because field 'ri' is of rvalue reference type 'int &&'}}
128 RValue RVa;
129 RValue RVb(RVa); // expected-error{{call to implicitly-deleted copy constructor}}
H A Dp11.0x.move.cpp135 struct RValue { struct
137 RValue(RValue&&);
139 RValue::RValue(RValue&&) = default;
/external/clang/lib/StaticAnalyzer/Core/
H A DBugReporterVisitors.cpp263 SVal RValue = State->getRawSVal(*LValue, RetE->getType()); local
264 if (RValue.getAs<DefinedSVal>())
265 V = RValue;
/external/clang/lib/CodeGen/
H A DCGValue.h34 /// RValue - This trivial value class is used to represent the result of an
38 class RValue { class in namespace:clang::CodeGen
80 static RValue getIgnored() {
85 static RValue get(llvm::Value *V) {
86 RValue ER;
92 static RValue getComplex(llvm::Value *V1, llvm::Value *V2) {
93 RValue ER;
100 static RValue getComplex(const std::pair<llvm::Value *, llvm::Value *> &C) {
106 static RValue getAggregate(Address addr, bool isVolatile = false) {
107 RValue E
[all...]
/external/clang/lib/Sema/
H A DSemaExprObjC.cpp509 // Convert the expression to an RValue, so we can check for pointer types...
510 ExprResult RValue = DefaultFunctionArrayLvalueConversion(ValueExpr); local
511 if (RValue.isInvalid()) {
515 ValueExpr = RValue.get();

Completed in 447 milliseconds