Searched refs:xvalue (Results 1 – 9 of 9) sorted by relevance
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/ |
D | p5-0x.cpp | 6 template<typename T> T&& xvalue(); 29 Base&& base0 = xvalue<Base>(); in test_rvalue_refs() 30 Base&& base1 = xvalue<Derived>(); in test_rvalue_refs() 31 int&& int0 = xvalue<int>(); in test_rvalue_refs() 80 NonCopyable &&nc2 = xvalue<NonCopyable>(); in test_direct_binding() 81 NonCopyable &&nc3 = xvalue<NonCopyableDerived>(); in test_direct_binding() 84 const NonCopyable &nc6 = xvalue<NonCopyable>(); in test_direct_binding() 85 const NonCopyable &nc7 = xvalue<NonCopyableDerived>(); in test_direct_binding() 142 base_rvalue_ref(xvalue<Base>()); in test() 143 base_rvalue_ref(xvalue<Derived>()); in test() [all …]
|
/external/clang/test/CXX/over/over.match/over.match.funcs/ |
D | p4-0x.cpp | 5 template<typename T> T &&xvalue(); 42 float &fr1 = xvalue<X0>().f(); in test_ref_qualifier_binding() 45 float &fr3 = xvalue<X0>().ft(2); in test_ref_qualifier_binding() 51 float &fr1 = xvalue<X0>()(); in test_ref_qualifier_binding_with_surrogates() 57 float &fr1 = xvalue<X0>() + prvalue<X0>(); in test_ref_qualifier_binding_operators() 60 float &fr3 = xvalue<X0>() + 2; in test_ref_qualifier_binding_operators() 66 float &fr1 = xvalue<X0>().h(); in test_ref_qualifier_overloading() 69 float &fr3 = xvalue<X0>().h2(); in test_ref_qualifier_overloading()
|
/external/clang/test/CXX/expr/expr.post/expr.static.cast/ |
D | p3-0x.cpp | 10 template<typename T> T&& xvalue(); 17 A &&ar4 = static_cast<A&&>(xvalue<A>()); in test() 18 A &&ar5 = static_cast<A&&>(xvalue<B>()); in test() 23 const A &&ar10 = static_cast<const A&&>(xvalue<A>()); in test() 24 const A &&ar11 = static_cast<const A&&>(xvalue<B>()); in test()
|
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/ |
D | p3-0x.cpp | 14 template<typename T> T&& xvalue(); 19 X<int> xi1 = f0(xvalue<int>()); in test_f0() 22 X<Y> xy1 = f0(xvalue<Y>()); in test_f0() 31 X<int> xi1 = f1(xvalue<int>()); in test_f1() 34 X<Y> xy1 = f1(xvalue<Y>()); in test_f1()
|
/external/clang/test/CXX/expr/expr.post/expr.const.cast/ |
D | p1-0x.cpp | 12 template<typename T> T&& xvalue(); 17 int *&&ptr1 = const_cast<int *&&>(xvalue<const int*>()); in test_classification() 20 X &&ptr4 = const_cast<X&&>(xvalue<X>()); in test_classification() 24 …int *&ptr7 = const_cast<int *&>(xvalue<const int*>()); // expected-error {{const_cast from rvalue … in test_classification() 27 …X &ptrA = const_cast<X&>(xvalue<X>()); // expected-error {{const_cast from rvalue to reference typ… in test_classification()
|
/external/clang/test/CXX/expr/expr.mptr.oper/ |
D | p6-0x.cpp | 6 template<typename T> T&& xvalue(); 19 (xvalue<X>().*pmf)(17); in test() 25 …(xvalue<X>().*l_pmf)(17); // expected-error{{pointer-to-member function type 'int (X::*)(int) &' c… in test() 31 (xvalue<X>().*r_pmf)(17); in test()
|
/external/clang/test/CXX/expr/expr.post/expr.reinterpret.cast/ |
D | p1-0x.cpp | 9 template<typename T> T&& xvalue(); 15 int &&ir3 = reinterpret_cast<int &&>(xvalue<char>()); in test_classification() 17 int &ir4 = reinterpret_cast<int &>(xvalue<char>()); in test_classification()
|
/external/chromium_org/third_party/libxml/src/ |
D | xmlschemastypes.c | 4667 const xmlChar *xvalue, in xmlSchemaCompareValuesInternal() argument 4758 xv = xvalue; in xmlSchemaCompareValuesInternal() 4973 const xmlChar *xvalue, in xmlSchemaCompareValuesWhtspExt() argument 4980 return(xmlSchemaCompareValuesInternal(xtype, x, xvalue, xws, ytype, y, in xmlSchemaCompareValuesWhtspExt()
|
/external/libxml2/ |
D | xmlschemastypes.c | 4674 const xmlChar *xvalue, in xmlSchemaCompareValuesInternal() argument 4765 xv = xvalue; in xmlSchemaCompareValuesInternal() 4980 const xmlChar *xvalue, in xmlSchemaCompareValuesWhtspExt() argument 4987 return(xmlSchemaCompareValuesInternal(xtype, x, xvalue, xws, ytype, y, in xmlSchemaCompareValuesWhtspExt()
|