Home
last modified time | relevance | path

Searched refs:Private (Results 1 – 25 of 275) sorted by relevance

1234567891011

/external/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA1/
DSDL_epocvideo.cpp245 Private->EPOC_WsSession.SimulateRawEvent(event); in DisableKeyBlocking()
253 error = Private->EPOC_WsSession.Connect(); in ConstructWindowL()
255 Private->EPOC_WsScreen=new(ELeave) CWsScreenDevice(Private->EPOC_WsSession); in ConstructWindowL()
256 User::LeaveIfError(Private->EPOC_WsScreen->Construct()); in ConstructWindowL()
257 User::LeaveIfError(Private->EPOC_WsScreen->CreateContext(Private->EPOC_WindowGc)); in ConstructWindowL()
259 Private->EPOC_WsWindowGroup=RWindowGroup(Private->EPOC_WsSession); in ConstructWindowL()
260 User::LeaveIfError(Private->EPOC_WsWindowGroup.Construct(WindowClientHandle)); in ConstructWindowL()
261 Private->EPOC_WsWindowGroup.SetOrdinalPosition(0); in ConstructWindowL()
275 Private->EPOC_WsWindowGroup.SetName(winGroupName); in ConstructWindowL()
277 Private->EPOC_WsWindow=RWindow(Private->EPOC_WsSession); in ConstructWindowL()
[all …]
DSDL_epocevents.cpp73 const TPointerCursorMode mode = Private->EPOC_WsSession.PointerCursorMode(); in EPOC_HandleWsEvent()
126 const TPointerCursorMode mode = Private->EPOC_WsSession.PointerCursorMode(); in EPOC_HandleWsEvent()
168 Private->EPOC_IsWindowFocused = ETrue; in EPOC_HandleWsEvent()
192 Private->EPOC_IsWindowFocused = EFalse; in EPOC_HandleWsEvent()
203 w.SetExtent(TPoint(0, 0), Private->EPOC_WsWindow.Size()); in EPOC_HandleWsEvent()
241 Private->EPOC_WsSession.EventReady(&Private->EPOC_WsEventStatus); in EPOC_HandleWsEvent()
242 User::WaitForRequest(Private->EPOC_WsEventStatus); in EPOC_HandleWsEvent()
243 Private->EPOC_WsSession.GetEvent(Private->EPOC_WsEvent); in EPOC_HandleWsEvent()
244 TInt eventType = Private->EPOC_WsEvent.Type(); in EPOC_HandleWsEvent()
245 Private->EPOC_WsEventStatus = KRequestPending; in EPOC_HandleWsEvent()
[all …]
/external/giflib/
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; in DGifOpenFileHandle() local
106 Private = (GifFilePrivateType *)malloc(sizeof(GifFilePrivateType)); in DGifOpenFileHandle()
107 if (Private == NULL) { in DGifOpenFileHandle()
124 GifFile->Private = (VoidPtr)Private; in DGifOpenFileHandle()
125 Private->FileHandle = FileHandle; in DGifOpenFileHandle()
126 Private->File = f; in DGifOpenFileHandle()
127 Private->FileState = FILE_STATE_READ; in DGifOpenFileHandle()
[all …]
Dgif_lib_private.h30 #define IS_READABLE(Private) (Private->FileState & FILE_STATE_READ) argument
31 #define IS_WRITEABLE(Private) (Private->FileState & FILE_STATE_WRITE) argument
/external/clang/test/CXX/temp/temp.spec/temp.explicit/
Dp12.cpp12 class Private {}; class in 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 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 … in make()
/external/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA2/
DSDL_epocvideo.cpp260 Private->iScreenPos = TPoint(0, 0); in EPOC_VideoInit()
262 Private->iRect.x = Private->iScreenPos.iX; in EPOC_VideoInit()
263 Private->iRect.y = Private->iScreenPos.iY; in EPOC_VideoInit()
267 Private->iRect.w = sz.iWidth; in EPOC_VideoInit()
268 Private->iRect.h = sz.iHeight; in EPOC_VideoInit()
269 Private->iRectPtr = &Private->iRect; in EPOC_VideoInit()
284 return &Private->iRectPtr; in EPOC_ListModes()
445 User::Free(Private->iSwSurface); in EPOC_SetVideoMode()
447 Private->iSwSurface = NULL; in EPOC_SetVideoMode()
459 Private->iSwSurfaceSize = TSize(width, height); in EPOC_SetVideoMode()
[all …]
/external/clang/test/SemaCXX/
Dcxx98-compat-flags.cpp13 struct Private { struct
14 Private();
16 Private(const Private&); // expected-note {{declared private here}}
28Private p; // expected-note {{copy constructor of 'Deleted' is implicitly deleted because field 'p…
31 …const Private &a = Private(); // expected-warning {{copying variable of type 'CopyCtorIssues::Priv…
Dcxx98-compat.cpp240 struct Private { struct
241 Private();
243 Private(const Private&); // expected-note {{declared private here}}
255 Private p; // expected-note {{implicitly deleted}}
258 …const Private &a = Private(); // expected-warning {{copying variable of type 'CopyCtorIssues::Priv…
/external/clang/test/CXX/class.access/
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}} in test()
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) { in test()
161 operator Private(); // expected-note 4 {{declared private here}}
[all …]
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}} in test()
/external/webkit/Source/WebKit/gtk/docs/
Dwebkitgtk-sections.txt16 <SUBSECTION Private>
51 <SUBSECTION Private>
78 <SUBSECTION Private>
120 <SUBSECTION Private>
159 <SUBSECTION Private>
185 <SUBSECTION Private>
203 <SUBSECTION Private>
232 <SUBSECTION Private>
258 <SUBSECTION Private>
276 <SUBSECTION Private>
[all …]
/external/webkit/LayoutTests/storage/
Dprivate-browsing-noread-nowrite-expected.txt4 Private browsing statement 1 completed with an error
6 Private browsing statement 2 completed with an error
8 Private browsing statement 3 completed with an error
10 Private browsing statement 4 completed with an error
12 Private browsing statement 5 completed with an error
/external/chromium/third_party/libjingle/source/talk/xmpp/
Dxmppclient.cc46 class XmppClient::Private : class in buzz::XmppClient
52 Private(XmppClient * client) : in Private() function in buzz::XmppClient::Private
101 d_->socket_->SignalConnected.connect(d_.get(), &Private::OnSocketConnected); in Connect()
102 d_->socket_->SignalRead.connect(d_.get(), &Private::OnSocketRead); in Connect()
103 d_->socket_->SignalClosed.connect(d_.get(), &Private::OnSocketClosed); in Connect()
281 d_.reset(new Private(this)); in XmppClient()
321 XmppClient::Private::OnSocketConnected() { in OnSocketConnected()
326 XmppClient::Private::OnSocketRead() { in OnSocketRead()
347 XmppClient::Private::OnSocketClosed() { in OnSocketClosed()
353 XmppClient::Private::OnStateChange(int state) { in OnStateChange()
[all …]
Dxmppclient.h153 class Private; variable
154 friend class Private; variable
155 talk_base::scoped_ptr<Private> d_;
/external/webkit/Source/JavaScriptCore/runtime/
DTracing.d37 #pragma D attributes Private/Private/Unknown provider JavaScriptCore module
38 #pragma D attributes Private/Private/Unknown provider JavaScriptCore function
/external/clang/test/CXX/dcl.decl/dcl.init/
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/WebCore/platform/text/
DRegularExpression.cpp37 class RegularExpression::Private : public RefCounted<RegularExpression::Private> { class in WebCore::RegularExpression
39 static PassRefPtr<Private> create(const String& pattern, TextCaseSensitivity caseSensitivity) in create()
41 return adoptRef(new Private(pattern, caseSensitivity)); in create()
50 Private(const String& pattern, TextCaseSensitivity caseSensitivity) in Private() function in WebCore::RegularExpression::Private
75 : d(Private::create(pattern, caseSensitivity)) in RegularExpression()
DRegularExpression.h48 class Private;
49 RefPtr<Private> d;
/external/chromium/base/metrics/
Dstats_table.cc94 class StatsTable::Private { class in base::StatsTable
106 static Private* New(const std::string& name, int size,
139 Private() in Private() function in base::StatsTable::Private
166 StatsTable::Private* StatsTable::Private::New(const std::string& name, in New()
173 scoped_ptr<Private> priv(new Private()); in New()
194 void StatsTable::Private::InitializeTable(void* memory, int size, in InitializeTable()
208 void StatsTable::Private::ComputeMappedPointers(void* memory) { in ComputeMappedPointers()
262 AlignedSize(sizeof(Private::TableHeader)) + in StatsTable()
269 impl_ = Private::New(name, table_size, max_threads, max_counters); in StatsTable()
Dstats_table.h134 class Private;
176 Private* impl_;
/external/webkit/Source/WebCore/dom/
DContainerNodeAlgorithms.h31 namespace Private {
47 Private::addChildNodesToDeletionQueue<GenericNode, GenericNodeContainer>(head, tail, container); in removeAllChildrenInContainer()
62Private::addChildNodesToDeletionQueue<GenericNode, GenericNodeContainer>(head, tail, static_cast<G… in removeAllChildrenInContainer()
84 namespace Private {
/external/webkit/Source/JavaScriptCore/JavaScriptCore.xcodeproj/
Dproject.pbxproj39 …leRef = 081469481264375E00DFF935 /* StringBuilder.h */; settings = {ATTRIBUTES = (Private, ); }; };
41 …ileRef = 088FA5BA0EF76D4300578E6F /* RandomNumber.h */; settings = {ATTRIBUTES = (Private, ); }; };
42 …f = 0896C29E1265AB0900B1CDD3 /* StringConcatenate.h */; settings = {ATTRIBUTES = (Private, ); }; };
43 …eRef = 08DDA5BB12645F1D00751732 /* UStringBuilder.h */; settings = {ATTRIBUTES = (Private, ); }; };
46 … fileRef = 0B4D7E620F319AC800AD7E58 /* TypeTraits.h */; settings = {ATTRIBUTES = (Private, ); }; };
47 …0BDFFAD40FC6171000D69EF4 /* CrossThreadRefCounted.h */; settings = {ATTRIBUTES = (Private, ); }; };
48 …ef = 0BDFFAD10FC616EC00D69EF4 /* OwnFastMallocPtr.h */; settings = {ATTRIBUTES = (Private, ); }; };
51 …fileRef = 1400067612A6F7830064D123 /* OSAllocator.h */; settings = {ATTRIBUTES = (Private, ); }; };
57 …leRef = 140D17D60E8AD4A9000CD17D /* JSBasePrivate.h */; settings = {ATTRIBUTES = (Private, ); }; };
60 … fileRef = 1420BE7A10AA6DDB00F455D2 /* WeakRandom.h */; settings = {ATTRIBUTES = (Private, ); }; };
[all …]
/external/chromium/chrome/browser/ui/cocoa/
Durl_drop_target.mm10 @interface URLDropTargetHandler(Private) category
18 @end // @interface URLDropTargetHandler(Private)
92 @implementation URLDropTargetHandler(Private) category
109 @end // @implementation URLDropTargetHandler(Private)
Dclickhold_button_cell.mm18 @interface ClickHoldButtonCell (Private) category
20 @end // @interface ClickHoldButtonCell (Private)
177 @implementation ClickHoldButtonCell (Private) category
190 @end // @implementation ClickHoldButtonCell (Private)
/external/webkit/Source/WebKit/WebKit.xcodeproj/
Dproject.pbxproj19 …FA8BE000D486B /* WebNetscapeContainerCheckPrivate.h */; settings = {ATTRIBUTES = (Private, ); }; };
21 …eRef = 0F30985D11ECFE4400F559DF /* WebRenderLayer.h */; settings = {ATTRIBUTES = (Private, ); }; };
46 … 1AAF588A0EDCCEA3008D883D /* WebKitPluginAgent.defs */; settings = {ATTRIBUTES = (Private, ); }; };
47 …588B0EDCCEA3008D883D /* WebKitPluginAgentReply.defs */; settings = {ATTRIBUTES = (Private, ); }; };
48 …1AAF588C0EDCCEA3008D883D /* WebKitPluginClient.defs */; settings = {ATTRIBUTES = (Private, ); }; };
49 …= 1AAF588D0EDCCEA3008D883D /* WebKitPluginHost.defs */; settings = {ATTRIBUTES = (Private, ); }; };
50 …F588E0EDCCEA3008D883D /* WebKitPluginHostTypes.defs */; settings = {ATTRIBUTES = (Private, ); }; };
59 …1AAF5D080EDDE71D008D883D /* WebKitPluginHostTypes.h */; settings = {ATTRIBUTES = (Private, ); }; };
76 …B0790AE9830C00B1F6E9 /* WebEditingDelegatePrivate.h */; settings = {ATTRIBUTES = (Private, ); }; };
78 …f = 224100F2091818D900D2D266 /* WebPluginsPrivate.h */; settings = {ATTRIBUTES = (Private, ); }; };
[all …]

1234567891011