Searched defs:Protected (Results 1 - 7 of 7) sorted by relevance

/external/libcxxabi/test/
H A Dcatch_pointer_reference.pass.cpp38 struct Protected : protected Base {}; struct in inherits:Base
362 // Protected *
363 assert_cannot_catch< Base * , Protected *, Protected>();
364 assert_cannot_catch<const Base * , Protected *, Protected>();
365 assert_cannot_catch< volatile Base * , Protected *, Protected>();
366 assert_cannot_catch<const volatile Base * , Protected *, Protected>();
[all...]
/external/clang/test/CXX/class.access/
H A 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}}
H A 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}}
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) {
82 ca(prot); // expected-error {{'operator void (*)(Protected
[all...]
/external/guice/core/test/com/google/inject/
H A DInjectorTest.java286 Protected p = injector.getInstance(Protected.class);
291 static class Protected { class in class:InjectorTest
296 protected Protected(String fromConstructor) { method in class:InjectorTest.Protected
/external/llvm/bindings/ocaml/llvm/
H A Dllvm.ml66 | Protected Constructor in type:Visibility/t
/external/llvm/include/llvm/DebugInfo/PDB/
H A DPDBTypes.h422 enum class PDB_MemberAccess { Private = 1, Protected = 2, Public = 3 }; member in class:llvm::PDB_Checksum::PDB_Machine::PDB_Lang::PDB_BuiltinType::PDB_MemberAccess
/external/clang/include/clang/AST/
H A DDeclObjC.h1612 None, Private, Protected, Public, Package enumerator in enum:clang::ObjCIvarDecl::AccessControl
1649 return DeclAccess == None ? Protected : AccessControl(DeclAccess);

Completed in 230 milliseconds