Searched defs:Private (Results 1 - 25 of 34) sorted by relevance

12

/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/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/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/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/llvm/include/llvm/IR/
H A DMangler.h31 Private, ///< Emit "private" prefix before each symbol. enumerator in enum:llvm::Mangler::ManglerPrefixTy
/external/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA2/
H A DSDL_epocvideo.h30 #define Private _this->hidden macro
/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/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/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/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}}
/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/smack/src/org/jivesoftware/smackx/carbons/
H A DCarbon.java124 public static class Private implements PacketExtension { class in class:Carbon
/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...]
/external/chromium_org/third_party/skia/src/utils/
H A DSkTFitsIn.h16 namespace Private { namespace in namespace:sktfitsin
198 } // namespace Private
206 return !sktfitsin::Private::SkTFitsIn<D, S>::type::OutOfRange(s);
/external/clang/test/CXX/class.access/
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}}
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...]
/external/skia/src/utils/
H A DSkTFitsIn.h16 namespace Private { namespace in namespace:sktfitsin
198 } // namespace Private
206 return !sktfitsin::Private::SkTFitsIn<D, S>::type::OutOfRange(s);
/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.h83 void *Private; /* Don't mess with this! */ member in struct:GifFileType
/external/chromium_org/extensions/renderer/
H A Dmodule_system.cc137 base::Bind(&ModuleSystem::Private, base::Unretained(this)));
561 void ModuleSystem::Private(const v8::FunctionCallbackInfo<v8::Value>& args) { function in class:extensions::ModuleSystem
/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
H A Dst_context.h217 void *Private; member in struct:st_framebuffer
/external/mesa3d/src/mesa/state_tracker/
H A Dst_context.h217 void *Private; member in struct:st_framebuffer

Completed in 7440 milliseconds

12