Home
last modified time | relevance | path

Searched refs:Protected (Results 1 – 25 of 148) sorted by relevance

123456

/external/cronet/buildtools/third_party/libc++abi/trunk/test/
Dcatch_pointer_reference.pass.cpp39 struct Protected : protected Base {}; struct
364 assert_cannot_catch< Base * , Protected *, Protected>(); in f11()
365 assert_cannot_catch<const Base * , Protected *, Protected>(); in f11()
366 assert_cannot_catch< volatile Base * , Protected *, Protected>(); in f11()
367 assert_cannot_catch<const volatile Base * , Protected *, Protected>(); in f11()
368 assert_cannot_catch< Base * const , Protected *, Protected>(); in f11()
369 assert_cannot_catch<const Base * const , Protected *, Protected>(); in f11()
370 assert_cannot_catch< volatile Base * const , Protected *, Protected>(); in f11()
371 assert_cannot_catch<const volatile Base * const , Protected *, Protected>(); in f11()
372 assert_cannot_catch< Base * volatile, Protected *, Protected>(); in f11()
[all …]
/external/libcxxabi/test/
Dcatch_pointer_reference.pass.cpp40 struct Protected : protected Base {}; struct
365 assert_cannot_catch< Base * , Protected *, Protected>(); in f11()
366 assert_cannot_catch<const Base * , Protected *, Protected>(); in f11()
367 assert_cannot_catch< volatile Base * , Protected *, Protected>(); in f11()
368 assert_cannot_catch<const volatile Base * , Protected *, Protected>(); in f11()
369 assert_cannot_catch< Base * const , Protected *, Protected>(); in f11()
370 assert_cannot_catch<const Base * const , Protected *, Protected>(); in f11()
371 assert_cannot_catch< volatile Base * const , Protected *, Protected>(); in f11()
372 assert_cannot_catch<const volatile Base * const , Protected *, Protected>(); in f11()
373 assert_cannot_catch< Base * volatile, Protected *, Protected>(); in f11()
[all …]
/external/skia/include/gpu/graphite/
DTextureInfo.h36 , fProtected(Protected::kNo) in TextureInfo()
46 , fProtected(Protected::kNo) in TextureInfo()
56 , fProtected(Protected::kNo) in TextureInfo()
59 fProtected = Protected::kYes; in TextureInfo()
76 Protected isProtected() const { return fProtected; } in isProtected()
145 Protected fProtected = Protected::kNo;
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/
Dp18.cpp4 struct Protected {} protected_; struct
13 A(Protected); // expected-note {{protected here}}
14 void f(Protected);
34 B(Protected p, int) : B(p) {} in B()
42 C(Protected p) : B(p) {} in C()
/external/clang/test/CXX/class.access/
Dp4.cpp11 class Protected {} ProtectedInst; class
19 void foo(Protected&); // expected-note 2 {{declared protected here}}
30 void (A::*b)(Protected&) = &A::foo; // expected-error {{'foo' is a protected member}} in test()
45 void operator+(Protected&); // expected-note {{declared protected here}}
46 void operator[](Protected&); // expected-note {{declared protected here}}
47 void operator()(Protected&); // expected-note {{declared protected here}}
48 typedef void (*ProtectedSurrogate)(Protected&);
59 void operator+(const A &, Protected&);
63 void test(A &a, Public &pub, Protected &prot, Private &priv) { in test()
Dp6.cpp18 struct Public {}; struct Protected {}; struct Private {}; struct
38 operator Protected (); // expected-note {{declared protected here}}
39 A(Protected); // expected-note {{declared protected here}}
48 Protected prot = a; // expected-error {{'operator Protected' is a protected member}} in test()
/external/cronet/buildtools/third_party/libc++/trunk/test/std/concepts/concepts.lang/concept.destructible/
Ddestructible.compile.pass.cpp36 struct Protected { struct
38 ~Protected() = default;
65 test<Protected>(); in test()
/external/clang/test/SemaCXX/
Dunaddressable-functions.cpp16 class Protected { class
25 auto Prot = reinterpret_cast<void (Protected::*)(char *)>(&Protected::check); // expected-error{{'c…
27 auto ProtStatic = reinterpret_cast<void (*)(char *)>(&Protected::checkStatic); // expected-error{{'…
/external/skia/tests/graphite/
DTextureProxyTest.cpp32 kValidColorType, Mipmapped::kNo, Protected::kNo, Renderable::kNo); in DEF_GRAPHITE_TEST_FOR_ALL_CONTEXTS()
51 Protected::kNo, in DEF_GRAPHITE_TEST_FOR_ALL_CONTEXTS()
59 Protected::kNo, in DEF_GRAPHITE_TEST_FOR_ALL_CONTEXTS()
69 Protected::kNo, in DEF_GRAPHITE_TEST_FOR_ALL_CONTEXTS()
160 Protected::kNo, in DEF_GRAPHITE_TEST_FOR_ALL_CONTEXTS()
DBackendTextureTest.cpp39 Protected::kNo, in DEF_GRAPHITE_TEST_FOR_ALL_CONTEXTS()
101 Protected::kNo, in DEF_GRAPHITE_TEST_FOR_ALL_CONTEXTS()
130 Protected::kNo, in DEF_GRAPHITE_TEST_FOR_ALL_CONTEXTS()
165 Protected::kNo, in DEF_GRAPHITE_TEST_FOR_ALL_CONTEXTS()
/external/cronet/buildtools/third_party/libc++/trunk/test/std/concepts/concepts.lang/concept.constructible/
Dconstructible_from.compile.pass.cpp40 struct Protected { struct
42 ~Protected() = default;
132 test<Protected>(); in test()
/external/llvm/tools/llvm-pdbdump/
DClassDefinitionDumper.cpp77 std::make_pair((int)PDB_MemberAccess::Protected, SymbolGroup())); in start()
107 Count += dumpAccessGroup(PDB_MemberAccess::Protected, in start()
108 Groups[(int)PDB_MemberAccess::Protected]); in start()
126 } else if (Access == PDB_MemberAccess::Protected) { in dumpAccessGroup()
/external/angle/src/libANGLE/renderer/vulkan/
Dvk_command_buffer_utils.h24 Protected = 1, enumerator
34 return (isProtected ? ProtectionType::Protected : ProtectionType::Unprotected); in ConvertProtectionBoolToType()
DPersistentCommandPool.cpp39 protectionType == ProtectionType::Protected); in init()
40 if (protectionType == ProtectionType::Protected) in init()
DSecondaryCommandPool.cpp42 protectionType == ProtectionType::Protected); in init()
43 if (protectionType == ProtectionType::Protected) in init()
/external/skia/src/gpu/graphite/
DSharedContext.h42 Protected isProtected() const { return fProtected; } in isProtected()
66 Protected fProtected;
DCaps.h63 Protected,
71 Protected) const = 0;
DTextureUtils.cpp44 auto textureInfo = caps->getDefaultSampledTextureInfo(ct, mipmapped, Protected::kNo, in MakeBitmapProxyView()
48 textureInfo = caps->getDefaultSampledTextureInfo(ct, mipmapped, Protected::kNo, in MakeBitmapProxyView()
/external/guice/core/test/com/google/inject/
DInjectorTest.java306 Protected p = injector.getInstance(Protected.class);
311 static class Protected {
316 protected Protected(String fromConstructor) {
/external/skia/src/gpu/graphite/dawn/
DDawnCaps.h27 Protected,
33 Protected) const override;
/external/skia/src/gpu/graphite/mtl/
DMtlCaps.h27 Protected,
35 Protected) const override;
/external/skia/src/gpu/graphite/vk/
DVulkanCaps.h30 Protected,
38 Protected) const override;
DVulkanCaps.cpp133 Protected isProtected, in getDefaultSampledTextureInfo()
138 if ((isProtected == Protected::kYes && !this->protectedSupport()) || in getDefaultSampledTextureInfo()
148 info.fFlags = (isProtected == Protected::kYes) ? VK_IMAGE_CREATE_PROTECTED_BIT : 0; in getDefaultSampledTextureInfo()
167 if ((singleSampledInfo.isProtected() == Protected::kYes && !this->protectedSupport()) || in getDefaultMSAATextureInfo()
175 info.fFlags = (singleSampledInfo.isProtected() == Protected::kYes) ? in getDefaultMSAATextureInfo()
199 Protected isProtected) const { in getDefaultDepthStencilTextureInfo()
202 if ( (isProtected == Protected::kYes && !this->protectedSupport()) || in getDefaultDepthStencilTextureInfo()
211 info.fFlags = (isProtected == Protected::kYes) ? VK_IMAGE_CREATE_PROTECTED_BIT : 0; in getDefaultDepthStencilTextureInfo()
DVulkanCommandBuffer.cpp23 if (sharedContext->isProtected() == Protected::kYes) { in Make()
131 Protected protectedContext) { in submit_to_queue()
133 if (protectedContext == Protected::kYes) { in submit_to_queue()
143 submitInfo.pNext = protectedContext == Protected::kYes ? &protectedSubmitInfo : nullptr; in submit_to_queue()
/external/javassist/src/test/test5/
DInnerModifier2.java6 protected class Protected {} class in InnerModifier2

123456