HomeSort by relevance Sort by last modified time
    Searched refs:Private (Results 1 - 25 of 86) 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 197 private:
229 struct Private {
230 Private();
231 private:
232 Private(const Private&); // expected-note {{declared private here}}
244 Private p; // expected-note {{implicitly deleted}}
247 const Private &a = Private(); // expected-warning {{copying variable of type 'CopyCtorIssues::Private' when binding a referen (…)
    [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...]
gif_lib_private.h 29 #define IS_READABLE(Private) (Private->FileState & FILE_STATE_READ)
30 #define IS_WRITEABLE(Private) (Private->FileState & FILE_STATE_WRITE)
  /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/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/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 {
125 private:
152 private:
156 } // namespace Private
  /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...]
array_buffer.h 36 private:
37 class Private;
39 scoped_refptr<Private> private_;
64 private:
  /external/clang/test/CXX/class.access/
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...]
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...]
  /external/chromium_org/third_party/libjingle/source/talk/xmpp/
xmppclient.h 125 private:
155 class Private;
156 friend class Private;
157 rtc::scoped_ptr<Private> d_;
xmppclient.cc 42 class XmppClient::Private :
48 explicit Private(XmppClient* client) :
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::OnSocketClosed()
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/examples/objc/AppRTCDemo/ios/
APPRTCAppDelegate.m 59 #pragma mark - Private
  /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/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/llvm/lib/IR/
Mangler.cpp 30 if (PrefixTy == Mangler::Private)
86 PrefixTy = Mangler::Private;
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
ANTLRFileStream.cs 138 #region Private Members
140 private long GetFileLength(FileInfo file)
  /external/chromium_org/chrome/browser/ui/cocoa/
browser_window_controller_private.h 13 // Private methods for the |BrowserWindowController|. This category should
14 // contain the private methods used by different parts of the BWC; private
19 @interface BrowserWindowController(Private)
163 @end // @interface BrowserWindowController(Private)
  /external/chromium_org/tools/gn/
visibility_unittest.cc 45 TEST(Visibility, Private) {
  /external/chromium_org/chrome/common/extensions/docs/examples/api/processes/process_monitor/
popup.js 17 "<td>Private Memory</td>" +
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/
RTCNSGLVideoView.m 146 #pragma mark - Private
  /external/chromium_org/third_party/libjingle/source/talk/examples/objc/AppRTCDemo/
GAEChannelClient.m 156 #pragma mark - Private

Completed in 653 milliseconds

1 2 3 4