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

1 2

  /external/qemu/distrib/sdl-1.2.15/src/video/symbian/
SDL_epocevents_c.h 52 #define Private _this->hidden
  /external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfApplicationDataDictionary_autogen.cpp 23 SkPdfNativeObject* SkPdfApplicationDataDictionary::Private(SkPdfNativeDoc* doc) {
24 SkPdfNativeObject* ret = get("Private", "");
32 return get("Private", "") != NULL;
  /external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfApplicationDataDictionary_autogen.cpp 23 SkPdfNativeObject* SkPdfApplicationDataDictionary::Private(SkPdfNativeDoc* doc) {
24 SkPdfNativeObject* ret = get("Private", "");
32 return get("Private", "") != NULL;
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ContainerNodeAlgorithms.h 30 namespace Private {
47 Private::addChildNodesToDeletionQueue<GenericNode, GenericNodeContainer>(head, tail, container);
62 Private::addChildNodesToDeletionQueue<GenericNode, GenericNodeContainer>(head, tail, static_cast<GenericNodeContainer&>(*n));
70 namespace Private {
110 } // namespace Private
ContainerNode.h 41 namespace Private {
176 friend void Private::addChildNodesToDeletionQueue(GenericNode*& head, GenericNode*& tail, GenericNodeContainer&);
185 private:
  /external/chromium_org/third_party/skia/src/core/
SkLazyFnPtr.h 29 #define SK_DECLARE_STATIC_LAZY_FN_PTR(F, name, Choose) static Private::SkLazyFnPtr<F, Choose> name
32 // Everything below here is private implementation details. Don't touch, don't even look.
37 namespace Private {
61 private:
65 } // namespace Private
SkLazyPtr.h 54 static Private::SkLazyPtr<T, ##__VA_ARGS__> name
57 static Private::SkLazyPtrArray<T, N, ##__VA_ARGS__> name
61 // Everything below here is private implementation details. Don't touch, don't even look.
70 namespace Private {
113 private:
140 private:
144 } // namespace Private
  /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/llvm/include/llvm/IR/
Mangler.h 31 Private, ///< Emit "private" prefix before each symbol.
32 LinkerPrivate ///< Emit "linker private" prefix before each symbol.
35 private:
  /external/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA2/
SDL_epocvideo.h 30 #define Private _this->hidden
  /external/skia/src/core/
SkLazyFnPtr.h 29 #define SK_DECLARE_STATIC_LAZY_FN_PTR(F, name, Choose) static Private::SkLazyFnPtr<F, Choose> name
32 // Everything below here is private implementation details. Don't touch, don't even look.
37 namespace Private {
61 private:
65 } // namespace Private
SkLazyPtr.h 54 static Private::SkLazyPtr<T, ##__VA_ARGS__> name
57 static Private::SkLazyPtrArray<T, N, ##__VA_ARGS__> name
61 // Everything below here is private implementation details. Don't touch, don't even look.
70 namespace Private {
113 private:
140 private:
144 } // namespace Private
  /external/clang/test/CXX/dcl.decl/dcl.init/
p14-0x.cpp 18 class Private {
19 Private(int); // expected-note {{here}}
21 Private();
36 Private p = 42; // expected-error {{private constructor}}
  /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...]
  /external/chromium_org/gin/
array_buffer.cc 41 // 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> {
64 static scoped_refptr<Private> From(v8::Isolate* isolate,
70 private:
71 friend class base::RefCounted<Private>;
73 Private(v8::Isolate* isolate, v8::Handle<v8::ArrayBuffer> array)
    [all...]
  /external/libcxxabi/test/
catch_pointer_reference.cpp 21 // | conversions to private or protected or ambiguous classes |
37 struct Private : private Base {};
276 // to pointers to private or protected or ambiguous classes
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>()
    [all...]
  /external/smack/src/org/jivesoftware/smackx/carbons/
Carbon.java 44 private Direction dir;
45 private Forwarded fwd;
124 public static class Private implements PacketExtension {
125 public static final String ELEMENT = "private";
  /external/chromium_org/third_party/libjingle/source/talk/xmpp/
xmppclient.cc 41 class XmppClient::Private :
47 explicit Private(XmppClient* client) :
57 virtual ~Private() {
120 d_->socket_->SignalConnected.connect(d_.get(), &Private::OnSocketConnected);
121 d_->socket_->SignalRead.connect(d_.get(), &Private::OnSocketRead);
122 d_->socket_->SignalClosed.connect(d_.get(), &Private::OnSocketClosed);
324 d_.reset(new Private(this));
359 void XmppClient::Private::OnSocketConnected() {
363 void XmppClient::Private::OnSocketRead() {
389 void XmppClient::Private::OnSocketClosed()
    [all...]
  /external/chromium_org/third_party/skia/src/utils/
SkTFitsIn.h 16 namespace Private {
198 } // namespace Private
206 return !sktfitsin::Private::SkTFitsIn<D, S>::type::OutOfRange(s);
  /external/clang/test/CXX/class.access/
p6.cpp 18 struct Public {}; struct Protected {}; struct Private {};
22 typedef int type; // expected-note {{declared private here}}
26 A::type foo() { } // expected-error {{'type' is a private member}}
40 private:
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}
    [all...]
p4.cpp 12 class Private {} PrivateInst;
20 private:
21 void foo(Private&); // expected-note 2 {{declared private here}}
27 op->foo(PrivateInst); // expected-error {{'foo' is a private member}}
31 void (A::*c)(Private&) = &A::foo; // expected-error {{'foo' is a private member}}
50 private:
51 void operator+(Private&); // expected-note {{declared private here}
    [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...]
  /external/skia/src/utils/
SkTFitsIn.h 16 namespace Private {
198 } // namespace Private
206 return !sktfitsin::Private::SkTFitsIn<D, S>::type::OutOfRange(s);
  /external/chromium_org/extensions/renderer/
module_system.cc 87 private:
132 base::Bind(&ModuleSystem::Private, base::Unretained(this)));
575 void ModuleSystem::Private(const v8::FunctionCallbackInfo<v8::Value>& args) {
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_context.h 217 void *Private;

Completed in 870 milliseconds

1 2