Searched defs:Private (Results 1 - 25 of 31) sorted by relevance

12

/external/qemu/distrib/sdl-1.2.15/src/video/symbian/
H A DSDL_epocevents_c.h52 #define Private _this->hidden macro
/external/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA2/
H A DSDL_epocvideo.h30 #define Private _this->hidden macro
/external/clang/test/CXX/dcl.decl/dcl.init/
H A Dp14-0x.cpp18 class Private { class
19 Private(int); // expected-note {{here}}
21 Private();
36 Private p = 42; // expected-error {{private constructor}}
/external/clang/test/CXX/temp/temp.spec/temp.explicit/
H A Dp12.cpp12 class Private {}; class in class:test1::A
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}} class in class:test2::A
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'}}
/external/clang/test/SemaCXX/
H A Dcxx98-compat-flags.cpp13 struct Private { struct in namespace:CopyCtorIssues
14 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}}
/external/llvm/include/llvm/Target/
H A DMangler.h31 Private, ///< Emit "private" prefix before each symbol. enumerator in enum:llvm::Mangler::ManglerPrefixTy
/external/webkit/Source/WebCore/dom/
H A DContainerNode.h35 namespace Private { namespace in namespace:WebCore
99 friend void Private::addChildNodesToDeletionQueue(GenericNode*& head, GenericNode*& tail, GenericNodeContainer* container);
H A DContainerNodeAlgorithms.h31 namespace Private { namespace in namespace:WebCore
47 Private::addChildNodesToDeletionQueue<GenericNode, GenericNodeContainer>(head, tail, container);
62 Private::addChildNodesToDeletionQueue<GenericNode, GenericNodeContainer>(head, tail, static_cast<GenericNodeContainer*>(n));
84 namespace Private { namespace in namespace:WebCore
/external/smack/src/org/jivesoftware/smackx/carbons/
H A DCarbon.java124 public static class Private implements PacketExtension { class in class:Carbon
/external/webkit/Source/WebCore/platform/text/
H A DRegularExpression.cpp37 class RegularExpression::Private : public RefCounted<RegularExpression::Private> { class in class:WebCore::RegularExpression
39 static PassRefPtr<Private> create(const String& pattern, TextCaseSensitivity caseSensitivity)
41 return adoptRef(new Private(pattern, caseSensitivity));
50 Private(const String& pattern, TextCaseSensitivity caseSensitivity) function in class:WebCore::RegularExpression::Private
75 : d(Private::create(pattern, caseSensitivity))
/external/clang/test/CXX/class.access/
H A Dp6.cpp18 struct Public {}; struct Protected {}; struct Private {}; struct
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}}
H A Dp4.cpp12 class Private {} PrivateInst; class
21 void foo(Private&); // expected-note 2 {{declared private here}}
31 void (A::*c)(Private&) = &A::foo; // expected-error {{'foo' is a private member}}
51 void operator+(Private&); // expected-note {{declared private here}}
52 void operator[](Private&); // expected-note {{declared private here}}
53 void operator()(Private&); // expected-note {{declared private here}}
55 typedef void (*PrivateSurrogate)(Private&);
60 void operator+(const A &, Private&);
63 void test(A &a, Public &pub, Protected &prot, Private &priv) {
83 ca(priv); // expected-error {{'operator void (*)(class Private
[all...]
/external/giflib/
H A Ddgif_lib.c47 (((GifFilePrivateType*)_gif->Private)->Read ? \
48 ((GifFilePrivateType*)_gif->Private)->Read(_gif,_buf,_len) : \
49 fread(_buf,1,_len,((GifFilePrivateType*)_gif->Private)->File))
94 GifFilePrivateType *Private; local
106 Private = (GifFilePrivateType *)malloc(sizeof(GifFilePrivateType));
107 if (Private == NULL) {
124 GifFile->Private = (VoidPtr)Private;
125 Private->FileHandle = FileHandle;
126 Private
174 GifFilePrivateType *Private; local
237 GifFilePrivateType *Private = (GifFilePrivateType *)GifFile->Private; local
292 GifFilePrivateType *Private = (GifFilePrivateType *)GifFile->Private; local
333 GifFilePrivateType *Private = (GifFilePrivateType *)GifFile->Private; local
432 GifFilePrivateType *Private = (GifFilePrivateType *) GifFile->Private; local
475 GifFilePrivateType *Private = (GifFilePrivateType *) GifFile->Private; local
520 GifFilePrivateType *Private = (GifFilePrivateType *)GifFile->Private; local
547 GifFilePrivateType *Private = (GifFilePrivateType *)GifFile->Private; local
572 GifFilePrivateType *Private; local
647 GifFilePrivateType *Private = (GifFilePrivateType *)GifFile->Private; local
670 GifFilePrivateType *Private = (GifFilePrivateType *)GifFile->Private; local
702 GifFilePrivateType *Private = (GifFilePrivateType *)GifFile->Private; local
741 GifFilePrivateType *Private = (GifFilePrivateType *) GifFile->Private; local
890 GifFilePrivateType *Private = (GifFilePrivateType *)GifFile->Private; local
929 GifFilePrivateType *Private = (GifFilePrivateType *)GifFile->Private; local
[all...]
H A Dgif_lib.h93 VoidPtr Private; /* Don't mess with this! */ member in struct:GifFileType
/external/chromium/base/metrics/
H A Dstats_table.cc91 // The StatsTable::Private maintains convenience pointers into the
94 class StatsTable::Private { class in class:base::StatsTable
104 // Construct a new Private based on expected size parameters, or
106 static Private* New(const std::string& name, int size,
139 Private() function in class:base::StatsTable::Private
166 StatsTable::Private* StatsTable::Private::New(const std::string& name,
173 scoped_ptr<Private> priv(new Private());
194 void StatsTable::Private
[all...]
/external/chromium/third_party/libjingle/source/talk/xmpp/
H A Dxmppclient.cc46 class XmppClient::Private : class in class:buzz::XmppClient
52 Private(XmppClient * client) : function in class:buzz::XmppClient::Private
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
[all...]
/external/expat/bcb5/
H A Delements.mak67 Private=0 macro
H A Dexpat.mak68 Private=0 macro
H A Dexpat_static.mak68 Private=0 macro
H A Dexpatw.mak68 Private=0 macro
H A Dexpatw_static.mak69 Private=0 macro
H A Doutline.mak67 Private=0 macro
H A Dxmlwf.mak68 Private=0 macro
/external/webkit/Source/WebCore/svg/
H A DSVGElementInstance.h31 namespace Private { namespace in namespace:WebCore
144 friend void Private::addChildNodesToDeletionQueue(GenericNode*& head, GenericNode*& tail, GenericNodeContainer* container);
/external/clang/lib/Lex/
H A DHeaderSearch.cpp406 const char *Private = "Private"; local
407 FrameworkName.insert(FrameworkName.begin()+OrigSize, Private,
408 Private+strlen(Private));
410 SearchPath->insert(SearchPath->begin()+OrigSize, Private,
411 Private+strlen(Private));

Completed in 601 milliseconds

12