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

1234

/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.cpp229 struct Private { struct in namespace:CopyCtorIssues
230 Private();
232 Private(const Private&); // expected-note {{declared private here}}
244 Private p; // expected-note {{implicitly deleted}}
247 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.c31 (((GifFilePrivateType*)_gif->Private)->Read ? \
32 ((GifFilePrivateType*)_gif->Private)->Read(_gif,_buf,_len) : \
33 fread(_buf,1,_len,((GifFilePrivateType*)_gif->Private)->File))
76 GifFilePrivateType *Private; local
93 Private = (GifFilePrivateType *)malloc(sizeof(GifFilePrivateType));
94 if (Private == NULL) {
108 GifFile->Private = (void *)Private;
109 Private->FileHandle = FileHandle;
110 Private
160 GifFilePrivateType *Private; local
234 GifFilePrivateType *Private = (GifFilePrivateType *)GifFile->Private; local
294 GifFilePrivateType *Private = (GifFilePrivateType *)GifFile->Private; local
335 GifFilePrivateType *Private = (GifFilePrivateType *)GifFile->Private; local
435 GifFilePrivateType *Private = (GifFilePrivateType *) GifFile->Private; local
475 GifFilePrivateType *Private = (GifFilePrivateType *) GifFile->Private; local
516 GifFilePrivateType *Private = (GifFilePrivateType *)GifFile->Private; local
542 GifFilePrivateType *Private = (GifFilePrivateType *)GifFile->Private; local
617 GifFilePrivateType *Private; local
692 GifFilePrivateType *Private = (GifFilePrivateType *)GifFile->Private; local
714 GifFilePrivateType *Private = (GifFilePrivateType *)GifFile->Private; local
749 GifFilePrivateType *Private = (GifFilePrivateType *)GifFile->Private; local
786 GifFilePrivateType *Private = (GifFilePrivateType *) GifFile->Private; local
927 GifFilePrivateType *Private = (GifFilePrivateType *)GifFile->Private; local
972 GifFilePrivateType *Private = (GifFilePrivateType *)GifFile->Private; local
[all...]
H A Dgif_lib_private.h29 #define IS_READABLE(Private) (Private->FileState & FILE_STATE_READ)
30 #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/chromium_org/gin/
H A Darray_buffer.cc41 // ArrayBuffer::Private -------------------------------------------------------
51 // the array buffer takes a reference to the ArrayBuffer::Private object that
58 // buffer to AddRef the same ArrayBuffer::Private. To make that work, we store
59 // a pointer to the ArrayBuffer::Private object in an internal field of the
62 class ArrayBuffer::Private : public base::RefCounted<ArrayBuffer::Private> { class in class:gin::ArrayBuffer
64 static scoped_refptr<Private> From(v8::Isolate* isolate,
71 friend class base::RefCounted<Private>;
73 Private(v8::Isolate* isolate, v8::Handle<v8::ArrayBuffer> array);
74 ~Private();
98 ArrayBuffer::Private::Private(v8::Isolate* isolate, function in class:gin::ArrayBuffer::Private
[all...]
/external/libcxxabi/test/
H A Dcatch_pointer_reference.cpp37 struct Private : private Base {}; struct in inherits:Base
338 // Private *
339 assert_cannot_catch< Base * , Private *, Private>();
340 assert_cannot_catch<const Base * , Private *, Private>();
341 assert_cannot_catch< volatile Base * , Private *, Private>();
342 assert_cannot_catch<const volatile Base * , Private *, Private>();
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/symbian/
H A DSDL_epocevents_c.h52 #define Private _this->hidden macro
/external/chromium_org/third_party/skia/src/core/
H A DSkLazyFnPtr.h29 #define SK_DECLARE_STATIC_LAZY_FN_PTR(F, name, Choose) static Private::SkLazyFnPtr<F, Choose> name
37 namespace Private { namespace
65 } // namespace Private
H A DSkLazyPtr.h54 static Private::SkLazyPtr<T, ##__VA_ARGS__> name
57 static Private::SkLazyPtrArray<T, N, ##__VA_ARGS__> name
70 namespace Private { namespace
156 } // namespace Private
/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 (*)(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/skia/src/core/
H A DSkLazyFnPtr.h29 #define SK_DECLARE_STATIC_LAZY_FN_PTR(F, name, Choose) static Private::SkLazyFnPtr<F, Choose> name
37 namespace Private { namespace
65 } // namespace Private
H A DSkLazyPtr.h54 static Private::SkLazyPtr<T, ##__VA_ARGS__> name
57 static Private::SkLazyPtrArray<T, N, ##__VA_ARGS__> name
70 namespace Private { namespace
144 } // namespace Private
/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_org/third_party/libjingle/source/talk/xmpp/
H A Dxmppclient.cc42 class XmppClient::Private : class in class:buzz::XmppClient
48 explicit Private(XmppClient* client) : function in class:buzz::XmppClient::Private
58 virtual ~Private() {
121 d_->socket_->SignalConnected.connect(d_.get(), &Private::OnSocketConnected);
122 d_->socket_->SignalRead.connect(d_.get(), &Private::OnSocketRead);
123 d_->socket_->SignalClosed.connect(d_.get(), &Private::OnSocketClosed);
325 d_.reset(new Private(this));
360 void XmppClient::Private::OnSocketConnected() {
364 void XmppClient::Private::OnSocketRead() {
390 void XmppClient::Private
[all...]
H A Dxmppclient.h155 class Private;
156 friend class Private;
157 rtc::scoped_ptr<Private> d_;
/external/chromium_org/third_party/libjingle/source/talk/examples/objc/AppRTCDemo/ios/
H A DAPPRTCAppDelegate.m59 #pragma mark - Private
/external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfApplicationDataDictionary_autogen.cpp23 SkPdfNativeObject* SkPdfApplicationDataDictionary::Private(SkPdfNativeDoc* doc) { function in class:SkPdfApplicationDataDictionary
24 SkPdfNativeObject* ret = get("Private", "");
32 return get("Private", "") != NULL;
/external/llvm/include/llvm/IR/
H A DMangler.h31 Private, ///< Emit "private" prefix before each symbol. enumerator in enum:llvm::Mangler::ManglerPrefixTy
/external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfApplicationDataDictionary_autogen.cpp23 SkPdfNativeObject* SkPdfApplicationDataDictionary::Private(SkPdfNativeDoc* doc) { function in class:SkPdfApplicationDataDictionary
24 SkPdfNativeObject* ret = get("Private", "");
32 return get("Private", "") != NULL;

Completed in 385 milliseconds

1234