/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/ |
auto_ptr.pass.cpp | 93 // Without rvalue references, ptr got copied into
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/tuple.elem/ |
get_non_const.pass.cpp | 71 { // get on an rvalue tuple
|
tuple.by.type.pass.cpp | 52 upint p = std::get<upint>(std::move(t)); // get rvalue
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/type_traits/ |
add_rvalue_reference.hpp | 30 // a type T1&, the type add_rvalue_reference<T>::type is not an rvalue
|
/external/clang/test/SemaCXX/ |
cstyle-cast.cpp | 217 // Bad: from rvalue 218 (void)(int&)(&c); // expected-error {{C-style cast from rvalue to reference type 'int &'}}
|
overload-call.cpp | 63 // expected-error@-4 {{cannot initialize a variable of type 'int *' with an rvalue of type 'double *'}} 70 // expected-error@-4 {{cannot initialize a variable of type 'int *' with an rvalue of type 'double *'}} 83 // expected-error@-4 {{cannot initialize a variable of type 'int *' with an rvalue of type 'double *'}} 621 // expected-warning@-2 {{rvalue references are a C++11 extension}} 626 // expected-warning@-2 {{rvalue references are a C++11 extension}}
|
conditional-expr.cpp | 152 // "the type [it] woud have if E2 were converted to an rvalue" 160 &(i1 ? i1 : i2); // expected-error {{cannot take the address of an rvalue}} 196 &(i1 ? i1 : d1); // expected-error {{cannot take the address of an rvalue}}
|
/external/clang/test/SemaTemplate/ |
default-expr-arguments.cpp | 114 A(T = 1); // expected-error 3 {{cannot initialize a parameter of type 'int *' with an rvalue of type 'int'}} \ 290 A() { T* x = 1; } // expected-error{{cannot initialize a variable of type 'int *' with an rvalue of type 'int'}}
|
/external/icu/icu4c/source/test/intltest/ |
itutil.cpp | 377 infoln("TestLocalPointerMoveSwap() with rvalue references"); 387 infoln("TestLocalPointerMoveSwap() without rvalue references"); 474 infoln("TestLocalArrayMoveSwap() with rvalue references"); 484 infoln("TestLocalArrayMoveSwap() without rvalue references"); 646 infoln("TestLocalXyzPointerMoveSwap() with rvalue references"); 656 infoln("TestLocalXyzPointerMoveSwap() without rvalue references");
|
/external/libchrome/base/memory/ |
scoped_ptr.h | 40 // as the argument type, it must be called with an rvalue of a scoper, which 50 // // when you already have an rvalue as we do here. 275 // Conversion constructor. Allows construction from a scoped_ptr rvalue for a 317 // operator=. Allows assignment from a scoped_ptr rvalue for a convertible 434 // Constructor. Allows construction from a scoped_ptr rvalue. 437 // operator=. Allows assignment from a scoped_ptr rvalue.
|
/external/libnfc-nci/halimpl/pn54x/utils/ |
phNxpConfig.cpp | 94 bool getValue(const char* name, unsigned long& rValue) const; 95 bool getValue(const char* name, unsigned short & rValue) const; 522 bool CNfcConfig::getValue(const char* name, unsigned long& rValue) const 530 rValue = static_cast<unsigned long>(pParam->numValue()); 546 bool CNfcConfig::getValue(const char* name, unsigned short& rValue) const 554 rValue = static_cast<unsigned short>(pParam->numValue());
|
/external/libweave/third_party/chromium/base/memory/ |
scoped_ptr.h | 40 // as the argument type, it must be called with an rvalue of a scoper, which 50 // // when you already have an rvalue as we do here. 275 // Conversion constructor. Allows construction from a scoped_ptr rvalue for a 317 // operator=. Allows assignment from a scoped_ptr rvalue for a convertible 434 // Constructor. Allows construction from a scoped_ptr rvalue. 437 // operator=. Allows assignment from a scoped_ptr rvalue.
|
/external/webrtc/webrtc/base/ |
scoped_ptr.h | 333 // Constructor. Allows construction from a scoped_ptr rvalue for a 349 // operator=. Allows assignment from a scoped_ptr rvalue for a convertible 377 // Get an rvalue reference. (sp.Pass() does the same thing as std::move(sp).) 493 // Constructor. Allows construction from a scoped_ptr rvalue. 496 // operator=. Allows assignment from a scoped_ptr rvalue. 513 // Get an rvalue reference. (sp.Pass() does the same thing as std::move(sp).)
|
/packages/apps/Nfc/nci/jni/extns/pn54x/src/utils/ |
phNxpConfig.cpp | 71 bool getValue (const char* name, unsigned long& rValue) const; 72 bool getValue (const char* name, unsigned short & rValue) const; 513 bool CNxpNfcConfig::getValue (const char* name, unsigned long& rValue) const 521 rValue = static_cast<unsigned long> (pParam->numValue ()); 537 bool CNxpNfcConfig::getValue (const char* name, unsigned short& rValue) const 545 rValue = static_cast<unsigned short> (pParam->numValue ());
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
dxtmpl.h | 667 WINBOOL Lookup(ARG_KEY key,VALUE& rValue) const; 673 void GetNextAssoc(DXLISTPOS &rNextPosition,KEY& rKey,VALUE& rValue) const; 805 WINBOOL CDXMap<KEY,ARG_KEY,VALUE,ARG_VALUE>::Lookup(ARG_KEY key,VALUE& rValue) const { 810 rValue = pAssoc->value; 849 void CDXMap<KEY,ARG_KEY,VALUE,ARG_VALUE>::GetNextAssoc(DXLISTPOS &rNextPosition,KEY& rKey,VALUE& rValue) const { 869 rValue = pAssocRet->value;
|
/external/clang/include/clang/Sema/ |
Initialization.h | 643 /// \brief Perform a derived-to-base cast, producing an rvalue. 660 /// \brief Perform a qualification conversion, producing an rvalue. 668 /// \brief Perform a load from a glvalue, producing an rvalue. 694 /// \brief Array initialization (from an array rvalue). 797 /// \brief Rvalue reference binding to an lvalue. [all...] |
/external/clang/lib/CodeGen/ |
CGVTables.cpp | 83 static RValue PerformReturnAdjustment(CodeGenFunction &CGF, 84 QualType ResultType, RValue RV, 124 return RValue::get(ReturnValue); 197 RValue RV = RValue::get(T->getOperand(0)); 283 CallArgs.add(RValue::get(AdjustedThisPtr), ThisType); 326 RValue RV = EmitCall(*CurFnInfo, Callee, Slot, CallArgs, MD, &CallOrInvoke); [all...] |
CGCall.cpp | 810 EmitStoreThroughLValue(RValue::get(*AI++), LV); 815 QualType Ty, RValue RV, llvm::FunctionType *IRFuncTy, 821 RValue EltRV = [all...] |
CGObjCRuntime.h | 161 virtual CodeGen::RValue 177 virtual CodeGen::RValue
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ |
future | 227 // Return lvalue, future will add const or rvalue-reference 779 /// Construct from a future rvalue 784 /// Construct from a shared_future rvalue 818 /// Construct from a future rvalue 823 /// Construct from a shared_future rvalue 857 /// Construct from a future rvalue 862 /// Construct from a shared_future rvalue [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ |
future | 227 // Return lvalue, future will add const or rvalue-reference 779 /// Construct from a future rvalue 784 /// Construct from a shared_future rvalue 818 /// Construct from a future rvalue 823 /// Construct from a shared_future rvalue 857 /// Construct from a future rvalue 862 /// Construct from a shared_future rvalue [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ |
future | 227 // Return lvalue, future will add const or rvalue-reference 779 /// Construct from a future rvalue 784 /// Construct from a shared_future rvalue 818 /// Construct from a future rvalue 823 /// Construct from a shared_future rvalue 857 /// Construct from a future rvalue 862 /// Construct from a shared_future rvalue [all...] |
/libcore/ojluni/src/main/java/sun/misc/ |
FormattedFloatingDecimal.java | [all...] |
/build/kati/ |
func.go | 1247 var rvalue Var 1261 rvalue = &simpleVar{value: []string{vbuf.String()}, origin: "file"} 1264 rvalue = &recursiveVar{expr: tmpval(rhs), origin: "file"} 1268 rvalue, err = prev.Append(ev, string(rhs)) 1273 rvalue = &recursiveVar{expr: tmpval(rhs), origin: "file"} 1280 rvalue = &recursiveVar{expr: tmpval(rhs), origin: "file"} 1283 glog.Infof("Eval ASSIGN: %s=%q (flavor:%q)", f.lhs, rvalue, rvalue.Flavor()) 1285 ev.outVars.Assign(f.lhs, rvalue) [all...] |
/external/llvm/include/llvm/Support/ |
Compiler.h | 77 /// Sadly, this is separate from just rvalue reference support because GCC 87 /// This can be used to provide lvalue/rvalue overrides of member functions. 88 /// The rvalue override should be guarded by LLVM_HAS_RVALUE_REFERENCE_THIS
|