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

  /external/clang/test/CXX/special/class.copy/
p11.0x.copy.cpp 123 // -- a non-static data member of rvalue reference type
124 struct RValue {
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}}
p11.0x.move.cpp 133 // The restriction on rvalue reference members applies to only the copy
135 struct RValue {
137 RValue(RValue&&);
139 RValue::RValue(RValue&&) = default;
  /external/clang/lib/CodeGen/
CGValue.h 34 /// RValue - This trivial value class is used to represent the result of an
38 class RValue {
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 ER
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
BugReporterVisitors.cpp 264 SVal RValue = State->getRawSVal(*LValue, RetE->getType());
265 if (RValue.getAs<DefinedSVal>())
266 V = RValue;
    [all...]
  /external/swiftshader/src/Reactor/
Reactor.hpp 68 class RValue;
85 RValue<Pointer<T>> operator&();
103 RValue<T> operator=(RValue<T> rhs) const;
104 RValue<T> operator=(const Reference<T> &ref) const;
106 RValue<T> operator+=(RValue<T> rhs) const;
160 class RValue
163 explicit RValue(Value *rvalue);
    [all...]
  /external/clang/lib/Sema/
SemaExprObjC.cpp 412 // Perform lvalue-to-rvalue conversion.
507 // Convert the expression to an RValue, so we can check for pointer types...
508 ExprResult RValue = DefaultFunctionArrayLvalueConversion(ValueExpr);
509 if (RValue.isInvalid()) {
513 ValueExpr = RValue.get();
754 // Perform lvalue-to-rvalue conversion on the base.
    [all...]

Completed in 148 milliseconds