HomeSort by relevance Sort by last modified time
    Searched defs:PrivateConstructor (Results 1 - 3 of 3) 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 (); }
  /ndk/sources/cxx-stl/llvm-libc++/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 (); }
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
SerializationStressTest3.java 148 private static class PrivateConstructor implements java.io.Serializable {
153 private PrivateConstructor() {
166 if (!(obj instanceof PrivateConstructor))
169 PrivateConstructor inst = (PrivateConstructor) obj;
462 PrivateConstructor test = new PrivateConstructor();
    [all...]

Completed in 117 milliseconds