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

/external/clang/lib/Sema/
H A DSemaExprObjC.cpp452 // Convert the expression to an RValue, so we can check for pointer types...
453 ExprResult RValue = DefaultFunctionArrayLvalueConversion(ValueExpr); local
454 if (RValue.isInvalid()) {
457 ValueExpr = RValue.get();
/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.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/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;
354 RValue asAggregateRValu
[all...]
/external/chromium_org/v8/include/
H A Dv8.h724 struct RValue { struct in class:v8::UniquePersistent
725 V8_INLINE explicit RValue(UniquePersistent* obj) : object(obj) {} function in struct:v8::UniquePersistent::RValue
757 V8_INLINE UniquePersistent(RValue rvalue)
776 V8_INLINE operator RValue() { return RValue(this); }
780 UniquePersistent Pass() { return UniquePersistent(RValue(this)); }

Completed in 268 milliseconds