Home
last modified time | relevance | path

Searched refs:Private (Results 1 – 25 of 454) sorted by relevance

12345678910>>...19

/external/giflib/
Degif_lib.c91 GifFilePrivateType *Private; in EGifOpenFileHandle() local
101 Private = (GifFilePrivateType *)malloc(sizeof(GifFilePrivateType)); in EGifOpenFileHandle()
102 if (Private == NULL) { in EGifOpenFileHandle()
108 /*@i1@*/memset(Private, '\0', sizeof(GifFilePrivateType)); in EGifOpenFileHandle()
109 if ((Private->HashTable = _InitHashTable()) == NULL) { in EGifOpenFileHandle()
111 free(Private); in EGifOpenFileHandle()
123 GifFile->Private = (void *)Private; in EGifOpenFileHandle()
124 Private->FileHandle = FileHandle; in EGifOpenFileHandle()
125 Private->File = f; in EGifOpenFileHandle()
126 Private->FileState = FILE_STATE_WRITE; in EGifOpenFileHandle()
[all …]
Ddgif_lib.c31 (((GifFilePrivateType*)_gif->Private)->Read ? \
32 ((GifFilePrivateType*)_gif->Private)->Read(_gif,_buf,_len) : \
33 fread(_buf,1,_len,((GifFilePrivateType*)_gif->Private)->File))
75 GifFilePrivateType *Private; in DGifOpenFileHandle() local
92 Private = (GifFilePrivateType *)calloc(1, sizeof(GifFilePrivateType)); in DGifOpenFileHandle()
93 if (Private == NULL) { in DGifOpenFileHandle()
101 /*@i1@*/memset(Private, '\0', sizeof(GifFilePrivateType)); in DGifOpenFileHandle()
110 GifFile->Private = (void *)Private; in DGifOpenFileHandle()
111 Private->FileHandle = FileHandle; in DGifOpenFileHandle()
112 Private->File = f; in DGifOpenFileHandle()
[all …]
Dgif_lib_private.h29 #define IS_READABLE(Private) (Private->FileState & FILE_STATE_READ) argument
30 #define IS_WRITEABLE(Private) (Private->FileState & FILE_STATE_WRITE) argument
/external/boringssl/src/crypto/ecdh_extra/
Decdh_tests.txt7 Private = 8346a60fc6f293ca5a0d2af68ba71d1dd389e5e40837942df3e43cbd
15 Private = 043cb216f4b72cdf7629d63720a54aee0c99eb32d74477dac0c2f73d
23 Private = 5ad0dd6dbabb4f3c2ea5fe32e561b2ca55081486df2c7c15c9622b08
31 Private = 0aa6ff55a5d820efcb4e7d10b845ea3c9f9bc5dff86106db85318e22
39 Private = efe6e6e25affaf54c98d002abbc6328da159405a1b752e32dc23950a
47 Private = 61cb2932524001e5e9eeed6df7d9c8935ee3322029edd7aa8acbfd51
55 Private = 8c7ace347171f92def98d845475fc82e1d1496da81ee58f505b985fa
63 Private = 382feb9b9ba10f189d99e71a89cdfe44cb554cec13a212840977fb68
71 Private = e0d62035101ef487c485c60fb4500eebe6a32ec64dbe97dbe0232c46
79 Private = b96ade5b73ba72aa8b6e4d74d7bf9c58e962ff78eb542287c7b44ba2
[all …]
/external/libcxxabi/test/
Dcatch_pointer_reference.pass.cpp39 struct Private : private Base {}; struct
341 assert_cannot_catch< Base * , Private *, Private>(); in f10()
342 assert_cannot_catch<const Base * , Private *, Private>(); in f10()
343 assert_cannot_catch< volatile Base * , Private *, Private>(); in f10()
344 assert_cannot_catch<const volatile Base * , Private *, Private>(); in f10()
345 assert_cannot_catch< Base * const , Private *, Private>(); in f10()
346 assert_cannot_catch<const Base * const , Private *, Private>(); in f10()
347 assert_cannot_catch< volatile Base * const , Private *, Private>(); in f10()
348 assert_cannot_catch<const volatile Base * const , Private *, Private>(); in f10()
349 assert_cannot_catch< Base * volatile, Private *, Private>(); in f10()
[all …]
/external/boringssl/src/crypto/fipsmodule/ecdsa/
Decdsa_sign_tests.txt9 Private = 16797b5c0c7ed5461e2ff1b88e6eafa03c0f46bf072000dfc830d615
18 Private = cf020a1ff36c28511191482ed1e5259c60d383606c581948c3fbe2c5
27 Private = dde6f173fa9f307d206ce46b4f02851ebce9638a989330249fd30b73
36 Private = aeee9071248f077590ac647794b678ad371f8e0f1e14e9fbff49671e
45 Private = 29c204b2954e1406a015020f9d6b3d7c00658298feb2d17440b2c1a4
54 Private = 8986a97b24be042a1547642f19678de4e281a68f1e794e343dabb131
63 Private = d9aa95e14cb34980cfddadddfa92bde1310acaff249f73ff5b09a974
72 Private = 380fb6154ad3d2e755a17df1f047f84712d4ec9e47d34d4054ea29a8
81 Private = 6b98ec50d6b7f7ebc3a2183ff9388f75e924243827ddded8721186e2
90 Private = 8dda0ef4170bf73077d685e7709f6f747ced08eb4cde98ef06ab7bd7
[all …]
/external/clang/test/CXX/temp/temp.spec/temp.explicit/
Dp12.cpp12 class Private {}; class in 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 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 … in make()
/external/clang/test/CXX/class.access/
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}} 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 …]
/external/clang/test/SemaCXX/
Dcxx98-compat-flags.cpp13 struct Private { struct
14 Private();
16 Private(const Private&); // expected-note {{declared private here}}
28Private 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…
Dcxx98-compat-pedantic.cpp56 struct Private { struct
57 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::Priv…
/external/deqp-deps/glslang/Test/baseResults/
Dspv.conversion.frag.out62 10: TypePointer Private 9(int)
63 11(u_i): 10(ptr) Variable Private
67 17: TypePointer Private 16(float)
68 18(u_f): 17(ptr) Variable Private
86 70: TypePointer Private 69(fvec2)
87 71(u_f2): 70(ptr) Variable Private
93 83: TypePointer Private 82(fvec3)
94 84(u_f3): 83(ptr) Variable Private
100 96: TypePointer Private 95(fvec4)
101 97(u_f4): 96(ptr) Variable Private
[all …]
Dspv.structDeref.frag.out57 15: TypePointer Private 14(s3)
58 16(foo3): 15(ptr) Variable Private
61 19: TypePointer Private 6(int)
80 48: TypePointer Private 9(s1)
81 49(foo1): 48(ptr) Variable Private
92 70: TypePointer Private 8(s0)
93 71(foo0): 70(ptr) Variable Private
99 85: TypePointer Private 54(s00)
100 86(foo00): 85(ptr) Variable Private
111 121: TypePointer Private 10(s2)
[all …]
Dspv.structAssignment.frag.out51 11: TypePointer Private 10(lunarStruct3)
52 12(foo3): 11(ptr) Variable Private
54 14: TypePointer Private 6(int)
57 23: TypePointer Private 9(lunarStruct2)
58 27(foo2): 23(ptr) Variable Private
72 48: TypePointer Private 8(lunarStruct1)
73 49(foo): 48(ptr) Variable Private
Dspv.structure.frag.out48 23: TypePointer Private 22
49 24(foo2): 23(ptr) Variable Private
53 28: TypePointer Private 10(int)
57 37: TypePointer Private 6(float)
68 58: TypePointer Private 18(lunarStruct1)
69 59(foo): 58(ptr) Variable Private
Dspv.types.frag.out63 9: TypePointer Private 6(bool)
64 10(u_b): 9(ptr) Variable Private
65 12(i_b): 9(ptr) Variable Private
68 18: TypePointer Private 15(bvec2)
69 19(u_b2): 18(ptr) Variable Private
72 24(i_b2): 18(ptr) Variable Private
76 39: TypePointer Private 36(bvec3)
77 40(u_b3): 39(ptr) Variable Private
78 43(i_b3): 39(ptr) Variable Private
82 64: TypePointer Private 61(bvec4)
[all …]
Dhlsl.init.frag.out407 13: TypePointer Private 7(fvec4)
408 14(a1): 13(ptr) Variable Private
413 19(b1): 13(ptr) Variable Private
419 25(a1i): 13(ptr) Variable Private
420 26(b1i): 13(ptr) Variable Private
421 27: TypePointer Private 6(float)
422 28(a2): 27(ptr) Variable Private
424 30(b3): 27(ptr) Variable Private
426 32(b4): 27(ptr) Variable Private
428 34(a5): 27(ptr) Variable Private
[all …]
Dspv.precision.frag.out103 39: TypePointer Private 36(int)
104 40(uniform_medium): 39(ptr) Variable Private
105 42(uniform_high): 39(ptr) Variable Private
106 48(uniform_low): 39(ptr) Variable Private
113 64: TypePointer Private 6(float)
114 65(global_highp): 64(ptr) Variable Private
122 103: TypePointer Private 15(bvec2)
123 104(ub2): 103(ptr) Variable Private
/external/cldr/tools/java/org/unicode/cldr/util/data/external/
Diso_3166_status.txt313 XA ; Private use ;
314 XB ; Private use ;
315 XC ; Private use ;
316 XD ; Private use ;
317 XE ; Private use ;
318 XF ; Private use ;
319 XG ; Private use ;
320 XH ; Private use ;
321 XI ; Private use ;
322 XJ ; Private use ;
[all …]
/external/webrtc/webrtc/api/
Dapi.gyp22 'objc/RTCIceCandidate+Private.h',
25 'objc/RTCIceServer+Private.h',
28 'objc/RTCMediaConstraints+Private.h',
31 'objc/RTCMediaSource+Private.h',
34 'objc/RTCMediaStreamTrack+Private.h',
39 'objc/RTCSessionDescription+Private.h',
42 'objc/RTCStatsReport+Private.h',
45 'objc/RTCVideoFrame+Private.h',
DBUILD.gn32 #"objc/RTCIceCandidate+Private.h",
35 #"objc/RTCMediaSource+Private.h",
38 #"objc/RTCMediaStreamTrack+Private.h",
41 "objc/RTCIceServer+Private.h",
44 "objc/RTCMediaConstraints+Private.h",
49 "objc/RTCSessionDescription+Private.h",
52 "objc/RTCStatsReport+Private.h",
55 "objc/RTCVideoFrame+Private.h",
/external/webrtc/webrtc/libjingle/xmpp/
Dxmppclient.cc25 class XmppClient::Private : class in buzz::XmppClient
31 explicit Private(XmppClient* client) : in Private() function in buzz::XmppClient::Private
41 virtual ~Private() { in ~Private()
104 d_->socket_->SignalConnected.connect(d_.get(), &Private::OnSocketConnected); in Connect()
105 d_->socket_->SignalRead.connect(d_.get(), &Private::OnSocketRead); in Connect()
106 d_->socket_->SignalClosed.connect(d_.get(), &Private::OnSocketClosed); in Connect()
308 d_.reset(new Private(this)); in XmppClient()
343 void XmppClient::Private::OnSocketConnected() { in OnSocketConnected()
347 void XmppClient::Private::OnSocketRead() { in OnSocketRead()
373 void XmppClient::Private::OnSocketClosed() { in OnSocketClosed()
[all …]
/external/libxkbcommon/xkbcommon/test/data/compat/
Dxfree8645 action = Private(type=0x86, data="PrGrbs");
48 action = Private(type=0x86, data="PrWins");
52 action = Private(type=0x86, data="+VMode");
55 action = Private(type=0x86, data="-VMode");
61 action = Private(type=0x86, data="Ungrab");
64 action = Private(type=0x86, data="ClsGrb");
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/
Dp18.cpp5 struct Private {} private_; struct
17 A(Private); // expected-note 4{{private here}}
18 void f(Private); // expected-note {{private here}}
35 B(Private p, int) : B(p) {} // expected-error {{private}} in B()
43 C(Private p) : B(p) {} // expected-error {{private}} in C()
/external/clang/test/CXX/dcl.decl/dcl.init/
Dp14-0x.cpp18 class Private { class
19 Private(int); // expected-note {{here}}
21 Private();
36 Private p = 42; // expected-error {{private constructor}}
/external/v8/src/inspector/
Dv8-internal-value-type.cc13 v8::Local<v8::Private> internalSubtypePrivate(v8::Isolate* isolate) { in internalSubtypePrivate()
14 return v8::Private::ForApi( in internalSubtypePrivate()
39 v8::Local<v8::Private> privateValue = internalSubtypePrivate(isolate); in markAsInternal()
48 v8::Local<v8::Private> privateValue = internalSubtypePrivate(isolate); in markArrayEntriesAsInternal()
65 v8::Local<v8::Private> privateValue = internalSubtypePrivate(isolate); in v8InternalValueTypeFrom()

12345678910>>...19