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

1 2 3 4 5 6

  /external/libcxxabi/test/
catch_pointer_reference.pass.cpp 21 // | conversions to private or protected or ambiguous classes |
40 struct Protected : protected Base {};
278 // to pointers to private or protected or ambiguous classes
364 // Protected *
365 assert_cannot_catch< Base * , Protected *, Protected>();
366 assert_cannot_catch<const Base * , Protected *, Protected>();
367 assert_cannot_catch< volatile Base * , Protected *, Protected>()
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++abi/test/
catch_pointer_reference.pass.cpp 21 // | conversions to private or protected or ambiguous classes |
40 struct Protected : protected Base {};
278 // to pointers to private or protected or ambiguous classes
364 // Protected *
365 assert_cannot_catch< Base * , Protected *, Protected>();
366 assert_cannot_catch<const Base * , Protected *, Protected>();
367 assert_cannot_catch< volatile Base * , Protected *, Protected>()
    [all...]
  /external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/
p18.cpp 4 struct Protected {} protected_;
12 protected:
13 A(Protected); // expected-note {{protected here}}
14 void f(Protected);
34 B(Protected p, int) : B(p) {}
41 // protected constructors of A act like protected constructors of B.
42 C(Protected p) : B(p) {}
55 B b(protected_); // expected-error {{protected}}
    [all...]
  /external/clang/test/CXX/class.access/
p6.cpp 18 struct Public {}; struct Protected {}; struct Private {};
37 protected:
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}}
51 A aprot = prot; // expected-error {{protected constructor}
    [all...]
p4.cpp 11 class Protected {} ProtectedInst;
18 protected:
19 void foo(Protected&); // expected-note 2 {{declared protected here}}
26 op->foo(ProtectedInst); // expected-error {{'foo' is a protected member}}
30 void (A::*b)(Protected&) = &A::foo; // expected-error {{'foo' is a protected member}}
44 protected:
45 void operator+(Protected&); // expected-note {{declared protected here}
    [all...]
  /external/clang/test/SemaCXX/
unaddressable-functions.cpp 16 class Protected {
17 protected:
25 auto Prot = reinterpret_cast<void (Protected::*)(char *)>(&Protected::check); // expected-error{{'check' is a protected member of 'access_control::Protected'}} expected-note@19{{declared protected here}}
27 auto ProtStatic = reinterpret_cast<void (*)(char *)>(&Protected::checkStatic); // expected-error{{'checkStatic' is a protected member of 'access_control::Protected'}} expected-note@22{{declared protected here}
    [all...]
  /external/llvm/tools/llvm-pdbdump/
ClassDefinitionDumper.cpp 69 // first, then protected, then private. This might be slow, so it's worth
77 std::make_pair((int)PDB_MemberAccess::Protected, SymbolGroup()));
107 Count += dumpAccessGroup(PDB_MemberAccess::Protected,
108 Groups[(int)PDB_MemberAccess::Protected]);
126 } else if (Access == PDB_MemberAccess::Protected) {
128 WithColor(Printer, PDB_ColorItem::Keyword).get() << "protected";
  /external/guice/core/test/com/google/inject/
InjectorTest.java 61 protected void configure() {
95 protected void configure() {
115 protected void configure() {
207 protected void configure() {
221 protected void configure() {
252 protected void configure() {
280 protected void configure() {
286 Protected p = injector.getInstance(Protected.class);
291 static class Protected {
    [all...]
  /external/deqp/external/vulkancts/framework/vulkan/
vkMemUtil.hpp 65 protected:
82 static const MemoryRequirement Protected;
  /device/linaro/bootloader/edk2/IntelFspPkg/Library/SecFspSecPlatformLibNull/Ia32/
Flat32.asm 2 ; This is the code that goes from real-mode to protected mode.
43 ; Transition to non-paged flat-model protected mode from a
45 ; This is a bare bones transition to protected mode only
48 ; After enabling protected mode, a far jump is executed to
64 ; Transition to 16 bit protected mode
68 mov cr0, eax ; Activate protected mode
71 ; Now we're in 16 bit protected mode
72 ; Set up the selectors for 32 bit protected mode entry
82 ; Transition to Flat 32 bit protected mode
94 ; Protected mode portion initializes stack, configures cache, and calls C entry point
    [all...]
  /external/doclava/res/assets/templates-sdk/
page_info.cs 96 <?cs if:subcount(class.ctors.protected) ?>
97 <?cs if:linkcount ?>&#124; <?cs /if ?><a href="#proctors">Protected Ctors</a>
104 <?cs if:subcount(class.methods.protected) ?>
105 <?cs if:linkcount ?>&#124; <?cs /if ?><a href="#promethods">Protected Methods</a>
  /frameworks/compile/mclinker/include/mcld/LD/
ResolveInfo.h 72 enum Visibility { Default = 0, Internal = 1, Hidden = 2, Protected = 3 };
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRBufferedTreeNodeStream.h 109 // protected methods. DO NOT USE
110 #pragma mark Protected Methods
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRBufferedTreeNodeStream.h 109 // protected methods. DO NOT USE
110 #pragma mark Protected Methods
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRBufferedTreeNodeStream.h 109 // protected methods. DO NOT USE
110 #pragma mark Protected Methods
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRBufferedTreeNodeStream.h 111 // protected methods. DO NOT USE
112 #pragma mark Protected Methods
  /external/deqp/external/vulkancts/modules/vulkan/protected_memory/
vktProtectedMemImageValidator.cpp 22 * \brief Protected Memory image validator helper
158 vk::MemoryRequirement::Protected));
  /external/llvm/include/llvm/DebugInfo/PDB/
PDBTypes.h 255 enum class PDB_MemberAccess { Private = 1, Protected = 2, Public = 3 };
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/PDB/
PDBTypes.h 249 enum class PDB_MemberAccess { Private = 1, Protected = 2, Public = 3 };
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/DebugInfo/PDB/
PDBTypes.h 249 enum class PDB_MemberAccess { Private = 1, Protected = 2, Public = 3 };
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/DebugInfo/PDB/
PDBTypes.h 249 enum class PDB_MemberAccess { Private = 1, Protected = 2, Public = 3 };
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/DebugInfo/PDB/
PDBTypes.h 244 enum class PDB_MemberAccess { Private = 1, Protected = 2, Public = 3 };
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/DebugInfo/PDB/
PDBTypes.h 244 enum class PDB_MemberAccess { Private = 1, Protected = 2, Public = 3 };
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/DebugInfo/PDB/
PDBTypes.h 244 enum class PDB_MemberAccess { Private = 1, Protected = 2, Public = 3 };
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/DebugInfo/PDB/
PDBTypes.h 244 enum class PDB_MemberAccess { Private = 1, Protected = 2, Public = 3 };

Completed in 829 milliseconds

1 2 3 4 5 6