Home
last modified time | relevance | path

Searched refs:intref (Results 1 – 4 of 4) sorted by relevance

/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.ref/
Dp5.cpp9 typedef int &intref; typedef
10 typedef intref &intrefref;
24 intref
55 intref
64 intref
101 intref
113 intref
/external/clang/test/CodeGenCXX/
Dlvalue-bitcasts.cpp98 typedef int &intref; in functional_cast() typedef
104 ir = intref(fr); in functional_cast()
108 ir = intref(xr); in functional_cast()
/external/clang/test/SemaCXX/
Dreferences.cpp85 typedef int& intref; in test8() typedef
86 typedef intref& intrefref; // C++ DR 106: reference collapsing in test8()
88 …typedef intref const intref_c; // okay. FIXME: how do we verify that this is the same type as intr… in test8()
Doverload-call.cpp231 int* intref(int&);
232 float* intref(const int&);
235 float* ir1 = intref(5); in intref_test()
236 …float* ir2 = intref(5.5); // expected-warning{{implicit conversion from 'double' to 'int' changes … in intref_test()