HomeSort by relevance Sort by last modified time
    Searched defs:Uncopyable (Results 1 - 6 of 6) sorted by null

  /frameworks/compile/mclinker/include/mcld/ADT/
Uncopyable.h 1 //===- Uncopyable.h -------------------------------------------------------===//
18 /** \class Uncopyable
19 * \brief Uncopyable provides the base class to forbit copy operations.
22 class Uncopyable
25 Uncopyable() { }
26 ~Uncopyable() { }
29 Uncopyable(const Uncopyable&); /// NOT TO IMPLEMENT
30 Uncopyable& operator=(const Uncopyable&); /// NOT TO IMPLEMEN
    [all...]
  /external/clang/test/SemaCXX/
undefined-internal.cpp 114 struct Uncopyable {
115 Uncopyable() {}
117 Uncopyable(const Uncopyable&); // expected-note {{declared private here}}
120 void f(const Uncopyable&) {}
122 f(Uncopyable()); // expected-warning {{C++98 requires an accessible copy constructor}}
  /external/chromium/testing/gmock/test/
gmock-matchers_test.cc     [all...]
  /external/protobuf/gtest/test/
gtest_unittest.cc     [all...]
  /external/chromium/testing/gtest/test/
gtest_unittest.cc     [all...]
  /external/gtest/test/
gtest_unittest.cc     [all...]

Completed in 2116 milliseconds