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

  /external/clang/test/CXX/special/class.copy/
p11.0x.copy.cpp 116 // -- a non-static data member of rvalue reference type
117 struct RValue {
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}}
p11.0x.move.cpp 108 // The restriction on rvalue reference members applies to only the copy
110 struct RValue {
112 RValue(RValue&&);
114 RValue::RValue(RValue&&) = default;
  /external/clang/lib/CodeGen/
CGValue.h 33 /// RValue - This trivial value class is used to represent the result of an
37 class RValue {
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 asAggregateRValue() const
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
BugReporterVisitors.cpp 267 SVal RValue = State->getRawSVal(*LValue, RetE->getType());
268 if (RValue.getAs<DefinedSVal>())
269 V = RValue;
    [all...]
  /external/clang/lib/Sema/
SemaExprObjC.cpp 353 // Perform lvalue-to-rvalue conversion.
428 // Convert the expression to an RValue, so we can check for pointer types...
429 ExprResult RValue = DefaultFunctionArrayLvalueConversion(ValueExpr);
430 if (RValue.isInvalid()) {
433 ValueExpr = RValue.get();
598 // Perform lvalue-to-rvalue conversion on the base.
    [all...]

Completed in 144 milliseconds