HomeSort by relevance Sort by last modified time
    Searched refs:PrivateConstructor (Results 1 - 21 of 21) 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/std/containers/associative/multiset/
count.pass.cpp 130 typedef PrivateConstructor V;
lower_bound.pass.cpp 193 typedef PrivateConstructor V;
upper_bound.pass.cpp 192 typedef PrivateConstructor V;
find.pass.cpp 207 typedef PrivateConstructor V;
equal_range.pass.cpp 226 typedef PrivateConstructor V;
  /external/libcxx/test/std/containers/associative/set/
count.pass.cpp 134 typedef PrivateConstructor V;
find.pass.cpp 207 typedef PrivateConstructor V;
lower_bound.pass.cpp 287 typedef PrivateConstructor V;
upper_bound.pass.cpp 287 typedef PrivateConstructor V;
equal_range.pass.cpp 304 typedef PrivateConstructor V;
  /external/libcxx/test/std/containers/associative/map/map.ops/
count.pass.cpp 160 typedef PrivateConstructor PC;
find.pass.cpp 227 typedef PrivateConstructor PC;
lower_bound.pass.cpp 323 typedef PrivateConstructor PC;
upper_bound.pass.cpp 286 typedef PrivateConstructor PC;
equal_range.pass.cpp 424 typedef PrivateConstructor PC;
  /external/libcxx/test/std/containers/associative/multimap/multimap.ops/
count.pass.cpp 145 typedef PrivateConstructor PC;
find.pass.cpp 194 typedef PrivateConstructor PC;
lower_bound.pass.cpp 205 typedef PrivateConstructor PC;
upper_bound.pass.cpp 204 typedef PrivateConstructor PC;
equal_range.pass.cpp 248 typedef PrivateConstructor PC;

Completed in 662 milliseconds