/external/qemu/distrib/sdl-1.2.12/src/video/epoc/ |
D | SDL_epocvideo.cpp | 195 error = Private->EPOC_WsSession.Connect(); in ConstructWindowL() 197 Private->EPOC_WsScreen=new(ELeave) CWsScreenDevice(Private->EPOC_WsSession); in ConstructWindowL() 198 User::LeaveIfError(Private->EPOC_WsScreen->Construct()); in ConstructWindowL() 199 User::LeaveIfError(Private->EPOC_WsScreen->CreateContext(Private->EPOC_WindowGc)); in ConstructWindowL() 201 Private->EPOC_WsWindowGroup=RWindowGroup(Private->EPOC_WsSession); in ConstructWindowL() 202 User::LeaveIfError(Private->EPOC_WsWindowGroup.Construct(WindowClientHandle)); in ConstructWindowL() 203 Private->EPOC_WsWindowGroup.SetOrdinalPosition(0); in ConstructWindowL() 214 Private->EPOC_WsWindowGroup.SetName(winGroupName); //!! in ConstructWindowL() 216 Private->EPOC_WsWindow=RWindow(Private->EPOC_WsSession); in ConstructWindowL() 217 …User::LeaveIfError(Private->EPOC_WsWindow.Construct(Private->EPOC_WsWindowGroup,WindowClientHandle… in ConstructWindowL() [all …]
|
D | SDL_epocevents.cpp | 72 if (Private->EPOC_ShrinkedHeight) { in EPOC_HandleWsEvent() 189 while (Private->EPOC_WsEventStatus != KRequestPending) { in EPOC_PumpEvents() 191 Private->EPOC_WsSession.GetEvent(Private->EPOC_WsEvent); in EPOC_PumpEvents() 192 posted = EPOC_HandleWsEvent(_this, Private->EPOC_WsEvent); in EPOC_PumpEvents() 193 Private->EPOC_WsEventStatus = KRequestPending; in EPOC_PumpEvents() 194 Private->EPOC_WsSession.EventReady(&Private->EPOC_WsEventStatus); in EPOC_PumpEvents()
|
/external/giflib/ |
D | dgif_lib.c | 47 (((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 …]
|
D | gif_lib_private.h | 30 #define IS_READABLE(Private) (Private->FileState & FILE_STATE_READ) argument 31 #define IS_WRITEABLE(Private) (Private->FileState & FILE_STATE_WRITE) argument
|
/external/clang/test/SemaCXX/ |
D | cxx98-compat-flags.cpp | 13 struct Private { struct 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… 31 …const Private &a = Private(); // expected-warning {{copying variable of type 'CopyCtorIssues::Priv…
|
D | cxx98-compat.cpp | 203 struct Private { struct 204 Private(); 206 Private(const Private&); // expected-note {{declared private here}} 218 Private p; // expected-note {{implicitly deleted}} 221 …const Private &a = Private(); // expected-warning {{copying variable of type 'CopyCtorIssues::Priv…
|
/external/clang/test/CXX/class.access/ |
D | p4.cpp | 12 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 …]
|
D | p6.cpp | 18 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/bluetooth/glib/docs/reference/gio/ |
D | gio-sections.txt | 21 <SUBSECTION Private> 133 <SUBSECTION Private> 159 <SUBSECTION Private> 306 <SUBSECTION Private> 324 <SUBSECTION Private> 345 <SUBSECTION Private> 364 <SUBSECTION Private> 386 <SUBSECTION Private> 403 <SUBSECTION Private> 421 <SUBSECTION Private> [all …]
|
/external/webkit/Source/WebKit/gtk/docs/ |
D | webkitgtk-sections.txt | 16 <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/ |
D | private-browsing-noread-nowrite-expected.txt | 4 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/ |
D | xmppclient.cc | 46 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 …]
|
D | xmppclient.h | 153 class Private; variable 154 friend class Private; variable 155 talk_base::scoped_ptr<Private> d_;
|
/external/webkit/Source/JavaScriptCore/runtime/ |
D | Tracing.d | 37 #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/ |
D | p14-0x.cpp | 18 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/ |
D | RegularExpression.cpp | 37 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()
|
D | RegularExpression.h | 48 class Private; 49 RefPtr<Private> d;
|
/external/chromium/base/metrics/ |
D | stats_table.cc | 94 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()
|
D | stats_table.h | 134 class Private; 176 Private* impl_;
|
/external/webkit/Source/WebCore/dom/ |
D | ContainerNodeAlgorithms.h | 31 namespace Private { 47 Private::addChildNodesToDeletionQueue<GenericNode, GenericNodeContainer>(head, tail, container); in removeAllChildrenInContainer() 62 …Private::addChildNodesToDeletionQueue<GenericNode, GenericNodeContainer>(head, tail, static_cast<G… in removeAllChildrenInContainer() 84 namespace Private {
|
/external/webkit/Source/JavaScriptCore/JavaScriptCore.xcodeproj/ |
D | project.pbxproj | 39 …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/bluetooth/glib/docs/reference/glib/ |
D | glib-sections.txt | 45 <SUBSECTION Private> 266 <SUBSECTION Private> 372 <SUBSECTION Private> 510 <SUBSECTION Private> 637 <SUBSECTION Private> 791 <SUBSECTION Private> 803 <SUBSECTION Private> 874 <SUBSECTION Private> 935 <SUBSECTION Private> 992 <SUBSECTION Private> [all …]
|
/external/chromium/chrome/browser/ui/cocoa/ |
D | url_drop_target.mm | 10 @interface URLDropTargetHandler(Private) category 18 @end // @interface URLDropTargetHandler(Private) 92 @implementation URLDropTargetHandler(Private) category 109 @end // @implementation URLDropTargetHandler(Private)
|
D | clickhold_button_cell.mm | 18 @interface ClickHoldButtonCell (Private) category 20 @end // @interface ClickHoldButtonCell (Private) 177 @implementation ClickHoldButtonCell (Private) category 190 @end // @implementation ClickHoldButtonCell (Private)
|
/external/bluetooth/glib/docs/reference/gobject/ |
D | gobject-sections.txt | 107 <SUBSECTION Private> 153 <SUBSECTION Private> 292 <SUBSECTION Private> 349 <SUBSECTION Private> 383 <SUBSECTION Private> 683 <SUBSECTION Private> 755 <SUBSECTION Private> 817 <SUBSECTION Private>
|