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

1 2 3 4

  /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/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/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA1/
SDL_epocvideo.cpp 245 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->EPOC_WsWindowGroup.Construct(WindowClientHandle))
    [all...]
SDL_epocevents.cpp 73 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->EPOC_WsWindow)
    [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...]