HomeSort by relevance Sort by last modified time
    Searched defs:Private (Results 1 - 25 of 29) sorted by null

1 2

  /external/qemu/distrib/sdl-1.2.15/src/video/symbian/
SDL_epocevents_c.h 52 #define Private _this->hidden
  /external/clang/test/CXX/temp/temp.spec/temp.explicit/
p12.cpp 12 class Private {};
14 typedef Private Public;
20 template class Temp<A::Private>;
25 template class Temp<A::Private> Temp<int>::make();
33 class Private {}; // expected-note {{implicitly declared private here}}
35 typedef Private Public;
41 template <> class Temp<A::Private> {
46 template <> class Temp<A::Private> Temp<int>::make() { // expected-error {{'Private' is a private member of 'test2::A'}
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA2/
SDL_epocvideo.h 30 #define Private _this->hidden
  /external/clang/test/CXX/dcl.decl/dcl.init/
p14-0x.cpp 18 class Private {
19 Private(int); // expected-note {{here}}
21 Private();
36 Private p = 42; // expected-error {{private constructor}}
  /external/clang/test/SemaCXX/
cxx98-compat-flags.cpp 13 struct Private {
14 Private();
15 private:
16 Private(const Private&); // expected-note {{declared private here}}
28 Private p; // expected-note {{copy constructor of 'Deleted' is implicitly deleted because field 'p' has an inaccessible copy constructor}}
31 const Private &a = Private(); // expected-warning {{copying variable of type 'CopyCtorIssues::Private' when binding a reference to a temporary would invoke an inaccessible constructor in C++98}
    [all...]
cxx98-compat.cpp 200 private:
239 struct Private {
240 Private();
241 private:
242 Private(const Private&); // expected-note {{declared private here}}
254 Private p; // expected-note {{implicitly deleted}}
257 const Private &a = Private(); // expected-warning {{copying variable of type 'CopyCtorIssues::Private' when binding a referen (…)
    [all...]
  /external/llvm/include/llvm/Target/
Mangler.h 32 Private, ///< Emit "private" prefix before each symbol.
33 LinkerPrivate ///< Emit "linker private" prefix before each symbol.
36 private:
  /external/smack/src/org/jivesoftware/smackx/carbons/
Carbon.java 44 private Direction dir;
45 private Forwarded fwd;
124 public static class Private implements PacketExtension {
125 public static final String ELEMENT = "private";
  /external/chromium_org/third_party/libjingle/source/talk/xmpp/
xmppclient.cc 41 class XmppClient::Private :
47 explicit Private(XmppClient* client) :
57 virtual ~Private() {
120 d_->socket_->SignalConnected.connect(d_.get(), &Private::OnSocketConnected);
121 d_->socket_->SignalRead.connect(d_.get(), &Private::OnSocketRead);
122 d_->socket_->SignalClosed.connect(d_.get(), &Private::OnSocketClosed);
324 d_.reset(new Private(this));
359 void XmppClient::Private::OnSocketConnected() {
363 void XmppClient::Private::OnSocketRead() {
389 void XmppClient::Private::OnSocketClosed()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ContainerNodeAlgorithms.h 42 private:
61 private:
70 namespace Private {
86 Private::addChildNodesToDeletionQueue<GenericNode, GenericNodeContainer>(head, tail, container);
101 Private::addChildNodesToDeletionQueue<GenericNode, GenericNodeContainer>(head, tail, static_cast<GenericNodeContainer*>(n));
123 namespace Private {
191 } // namespace Private
273 private:
ContainerNode.h 40 namespace Private {
75 private:
144 friend void Private::addChildNodesToDeletionQueue(GenericNode*& head, GenericNode*& tail, GenericNodeContainer*);
150 private:
322 private:
345 private:
  /external/chromium/third_party/libjingle/source/talk/xmpp/
xmppclient.cc 46 class XmppClient::Private :
52 Private(XmppClient * client) :
101 d_->socket_->SignalConnected.connect(d_.get(), &Private::OnSocketConnected);
102 d_->socket_->SignalRead.connect(d_.get(), &Private::OnSocketRead);
103 d_->socket_->SignalClosed.connect(d_.get(), &Private::OnSocketClosed);
281 d_.reset(new Private(this));
321 XmppClient::Private::OnSocketConnected() {
326 XmppClient::Private::OnSocketRead() {
347 XmppClient::Private::OnSocketClosed() {
353 XmppClient::Private::OnStateChange(int state)
    [all...]
  /external/chromium_org/third_party/skia/src/utils/
SkTFitsIn.h 16 namespace Private {
198 } // namespace Private
206 return !sktfitsin::Private::SkTFitsIn<D, S>::type::OutOfRange(s);
  /external/clang/test/CXX/class.access/
p6.cpp 18 struct Public {}; struct Protected {}; struct Private {};
22 typedef int type; // expected-note {{declared private here}}
26 A::type foo() { } // expected-error {{'type' is a private member}}
40 private:
41 operator Private (); // expected-note {{declared private here}}
42 A(Private); // expected-note {{declared private here}}
49 Private priv = a; // expected-error {{'operator Private' is a private member}
    [all...]
p4.cpp 12 class Private {} PrivateInst;
20 private:
21 void foo(Private&); // expected-note 2 {{declared private here}}
27 op->foo(PrivateInst); // expected-error {{'foo' is a private member}}
31 void (A::*c)(Private&) = &A::foo; // expected-error {{'foo' is a private member}}
50 private:
51 void operator+(Private&); // expected-note {{declared private here}
    [all...]
  /external/giflib/
dgif_lib.c 31 (((GifFilePrivateType*)_gif->Private)->Read ? \
32 ((GifFilePrivateType*)_gif->Private)->Read(_gif,_buf,_len) : \
33 fread(_buf,1,_len,((GifFilePrivateType*)_gif->Private)->File))
76 GifFilePrivateType *Private;
93 Private = (GifFilePrivateType *)malloc(sizeof(GifFilePrivateType));
94 if (Private == NULL) {
108 GifFile->Private = (void *)Private;
109 Private->FileHandle = FileHandle;
110 Private->File = f
    [all...]
gif_lib.h 83 void *Private; /* Don't mess with this! */
  /external/skia/src/utils/
SkTFitsIn.h 16 namespace Private {
198 } // namespace Private
206 return !sktfitsin::Private::SkTFitsIn<D, S>::type::OutOfRange(s);
  /external/chromium/base/metrics/
stats_table.cc 91 // The StatsTable::Private maintains convenience pointers into the
94 class StatsTable::Private {
104 // Construct a new Private based on expected size parameters, or
106 static Private* New(const std::string& name, int size,
137 private:
138 // Constructor is private because you should use New() instead.
139 Private()
166 StatsTable::Private* StatsTable::Private::New(const std::string& name,
173 scoped_ptr<Private> priv(new Private())
    [all...]
  /external/chromium_org/base/metrics/
stats_table.cc 91 // The StatsTable::Private maintains convenience pointers into the
94 class StatsTable::Private {
104 // Construct a new Private based on expected size parameters, or
106 static Private* New(const std::string& name, int size,
137 private:
138 // Constructor is private because you should use New() instead.
139 Private()
166 StatsTable::Private* StatsTable::Private::New(const std::string& name,
170 scoped_ptr<Private> priv(new Private())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGElementInstance.h 30 namespace Private {
82 private:
92 private:
145 private:
166 friend void Private::addChildNodesToDeletionQueue(GenericNode*& head, GenericNode*& tail, GenericNodeContainer* container);
  /external/clang/lib/Lex/
HeaderSearch.cpp 423 const char *Private = "Private";
424 FrameworkName.insert(FrameworkName.begin()+OrigSize, Private,
425 Private+strlen(Private));
427 SearchPath->insert(SearchPath->begin()+OrigSize, Private,
428 Private+strlen(Private));
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_context.h 217 void *Private;
  /external/mesa3d/src/mesa/state_tracker/
st_context.h 217 void *Private;
  /external/clang/lib/AST/
Type.cpp 862 /// class) that has no user-declared constructors, no private or
    [all...]

Completed in 1342 milliseconds

1 2