HomeSort by relevance Sort by last modified time
    Searched refs:PrivateConstructor (Results 1 - 17 of 17) sorted by null

  /external/libcxx/test/support/
private_constructor.hpp 15 struct PrivateConstructor {
17 PrivateConstructor static make ( int v ) { return PrivateConstructor(v); }
20 PrivateConstructor ( int v ) : val(v) {}
24 bool operator < ( const PrivateConstructor &lhs, const PrivateConstructor &rhs ) { return lhs.get() < rhs.get(); }
26 bool operator < ( const PrivateConstructor &lhs, int rhs ) { return lhs.get() < rhs; }
27 bool operator < ( int lhs, const PrivateConstructor &rhs ) { return lhs < rhs.get(); }
29 std::ostream & operator << ( std::ostream &os, const PrivateConstructor &foo ) { return os << foo.get (); }
  /external/libcxx/test/containers/associative/multimap/multimap.ops/
find.pass.cpp 180 typedef PrivateConstructor PC;
lower_bound.pass.cpp 189 typedef PrivateConstructor PC;
upper_bound.pass.cpp 189 typedef PrivateConstructor PC;
equal_range.pass.cpp 225 typedef PrivateConstructor PC;
  /external/libcxx/test/containers/associative/multiset/
lower_bound.pass.cpp 192 typedef PrivateConstructor V;
upper_bound.pass.cpp 191 typedef PrivateConstructor V;
find.pass.cpp 206 typedef PrivateConstructor V;
equal_range.pass.cpp 225 typedef PrivateConstructor V;
  /external/libcxx/test/containers/associative/map/map.ops/
find.pass.cpp 206 typedef PrivateConstructor PC;
lower_bound.pass.cpp 286 typedef PrivateConstructor PC;
upper_bound.pass.cpp 285 typedef PrivateConstructor PC;
equal_range.pass.cpp 370 typedef PrivateConstructor PC;
  /external/libcxx/test/containers/associative/set/
find.pass.cpp 206 typedef PrivateConstructor V;
lower_bound.pass.cpp 286 typedef PrivateConstructor V;
upper_bound.pass.cpp 286 typedef PrivateConstructor V;
equal_range.pass.cpp 303 typedef PrivateConstructor V;

Completed in 2364 milliseconds