Searched refs:Private (Results 1 - 25 of 74) sorted by relevance

123

/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}}
H A Dcxx98-compat.cpp231 struct Private { struct in namespace:CopyCtorIssues
232 Private();
234 Private(const Private&); // expected-note {{declared private here}}
246 Private p; // expected-note {{implicitly deleted}}
249 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/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/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA1/
H A DSDL_epocvideo.cpp245 Private->EPOC_WsSession.SimulateRawEvent(event);
253 error = Private->EPOC_WsSession.Connect();
255 Private->EPOC_WsScreen=new(ELeave) CWsScreenDevice(Private->EPOC_WsSession);
256 User::LeaveIfError(Private->EPOC_WsScreen->Construct());
257 User::LeaveIfError(Private->EPOC_WsScreen->CreateContext(Private->EPOC_WindowGc));
259 Private->EPOC_WsWindowGroup=RWindowGroup(Private->EPOC_WsSession);
260 User::LeaveIfError(Private
[all...]
H A DSDL_epocevents.cpp73 const TPointerCursorMode mode = Private->EPOC_WsSession.PointerCursorMode();
86 if (Private->EPOC_ShrinkedHeight) {
89 if (Private->EPOC_ShrinkedWidth) {
126 const TPointerCursorMode mode = Private->EPOC_WsSession.PointerCursorMode();
168 Private->EPOC_IsWindowFocused = ETrue;
181 bmp->Create(Private->EPOC_ScreenSize, Private->EPOC_DisplayMode);
182 Private->EPOC_WsScreen->CopyScreenToBitmap(bmp);
183 Private->EPOC_WindowGc->Activate(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_private.h30 #define IS_READABLE(Private) (Private->FileState & FILE_STATE_READ)
31 #define IS_WRITEABLE(Private) (Private->FileState & FILE_STATE_WRITE)
/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/webkit/Source/JavaScriptCore/runtime/
H A DTracing.d37 #pragma D attributes Private/Private/Unknown provider JavaScriptCore module
38 #pragma D attributes Private/Private/Unknown provider JavaScriptCore function
/external/webkit/Source/WebKit2/UIProcess/API/mac/
H A DWKViewPrivate.h26 @interface WKView (Private)
/external/qemu/distrib/sdl-1.2.15/src/video/symbian/
H A DSDL_epocevents_c.h52 #define Private _this->hidden macro
/external/webkit/Source/WebCore/platform/text/
H A DRegularExpression.h48 class Private;
49 RefPtr<Private> d;
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 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...]
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}}
/external/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA2/
H A DSDL_epocvideo.h30 #define Private _this->hidden macro
H A DSDL_epocvideo.cpp258 //?? Private->iWindow->PointerFilter(EPointerFilterDrag, 0);
260 Private->iScreenPos = TPoint(0, 0);
262 Private->iRect.x = Private->iScreenPos.iX;
263 Private->iRect.y = Private->iScreenPos.iY;
267 Private->iRect.w = sz.iWidth;
268 Private->iRect.h = sz.iHeight;
269 Private->iRectPtr = &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...]
H A Dxmppclient.h153 class Private;
154 friend class Private;
155 talk_base::scoped_ptr<Private> d_;
/external/webkit/Source/WebCore/dom/
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/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...]
H A Dstats_table.h134 class Private;
176 Private* impl_;
/external/chromium/chrome/browser/ui/cocoa/
H A Ddraggable_button.h72 @interface DraggableButton (Private)
84 @end // @interface DraggableButton(Private)
/external/llvm/include/llvm/Target/
H A DMangler.h31 Private, ///< Emit "private" prefix before each symbol. enumerator in enum:llvm::Mangler::ManglerPrefixTy
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DANTLRFileStream.cs138 #region Private Members

Completed in 2322 milliseconds

123