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

1 2 3 4 5

  /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-pedantic.cpp 56 struct Private {
57 Private();
58 private:
59 Private(const Private&); // expected-note {{declared private here}}
71 Private p; // expected-note {{implicitly deleted}}
74 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...]
  /frameworks/base/packages/Osu/src/com/android/hotspot2/asn1/
Asn1Class.java 4 Universal, Application, Context, Private
  /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))
75 GifFilePrivateType *Private;
92 Private = (GifFilePrivateType *)malloc(sizeof(GifFilePrivateType));
93 if (Private == NULL) {
107 GifFile->Private = (void *)Private;
108 Private->FileHandle = FileHandle;
109 Private->File = f
    [all...]
egif_lib.c 91 GifFilePrivateType *Private;
101 Private = (GifFilePrivateType *)malloc(sizeof(GifFilePrivateType));
102 if (Private == NULL) {
108 if ((Private->HashTable = _InitHashTable()) == NULL) {
110 free(Private);
122 GifFile->Private = (void *)Private;
123 Private->FileHandle = FileHandle;
124 Private->File = f;
125 Private->FileState = FILE_STATE_WRITE
    [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.pass.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...]
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/test/
catch_pointer_reference.pass.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/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/webrtc/webrtc/libjingle/xmpp/
xmppclient.h 107 private:
137 class Private;
138 friend class Private;
139 rtc::scoped_ptr<Private> d_;
xmppclient.cc 25 class XmppClient::Private :
31 explicit Private(XmppClient* client) :
41 virtual ~Private() {
104 d_->socket_->SignalConnected.connect(d_.get(), &Private::OnSocketConnected);
105 d_->socket_->SignalRead.connect(d_.get(), &Private::OnSocketRead);
106 d_->socket_->SignalClosed.connect(d_.get(), &Private::OnSocketClosed);
308 d_.reset(new Private(this));
343 void XmppClient::Private::OnSocketConnected() {
347 void XmppClient::Private::OnSocketRead() {
373 void XmppClient::Private::OnSocketClosed()
    [all...]
  /external/webrtc/webrtc/base/objc/
RTCCameraPreviewView.m 41 #pragma mark - Private
RTCDispatcher.m 34 #pragma mark - Private
  /external/webrtc/webrtc/examples/objc/AppRTCDemo/
ARDMessageResponse.m 32 #pragma mark - Private
  /external/opencv3/modules/videoio/src/
cap_ios_photo_camera.mm 35 #pragma mark - Private Interface
128 #pragma mark - Private Interface
  /external/webrtc/webrtc/api/objc/
RTCVideoFrame.mm 15 #import "webrtc/api/objc/RTCVideoFrame+Private.h"
68 #pragma mark - Private
RTCIceCandidate.mm 13 #import "webrtc/api/objc/RTCIceCandidate+Private.h"
42 #pragma mark - Private
RTCIceServer.mm 13 #import "webrtc/api/objc/RTCIceServer+Private.h"
48 #pragma mark - Private
RTCMediaSource.mm 13 #import "webrtc/api/objc/RTCMediaSource+Private.h"
28 #pragma mark - Private
RTCStatsReport.mm 15 #import "webrtc/api/objc/RTCStatsReport+Private.h"
34 #pragma mark - Private
  /external/llvm/lib/IR/
Mangler.cpp 27 Private, ///< Emit "private" prefix before each symbol.
28 LinkerPrivate ///< Emit "linker private" prefix before each symbol.
46 if (PrefixTy == Private)
115 PrefixTy = 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)

Completed in 513 milliseconds

1 2 3 4 5