Searched defs:Prot (Results 1 - 5 of 5) sorted by relevance

/external/clang/test/SemaCXX/
H A Dunaddressable-functions.cpp25 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}} member in namespace:access_control
/external/clang/lib/Index/
H A DUSRGeneration.cpp716 for (auto *Prot : OIT->getProtocols())
717 VisitObjCProtocolDecl(Prot);
871 void clang::index::generateUSRForObjCProtocol(StringRef Prot, raw_ostream &OS) { argument
872 OS << "objc(pl)" << Prot; local
/external/llvm/lib/MC/
H A DMachObjectWriter.cpp795 uint32_t Prot = local
798 SectionDataSize, Prot, Prot);
/external/llvm/tools/llvm-readobj/
H A DMachODumper.cpp296 std::string Prot; local
297 Prot = "";
298 Prot += (prot & MachO::VM_PROT_READ) ? "r" : "-";
299 Prot += (prot & MachO::VM_PROT_WRITE) ? "w" : "-";
300 Prot += (prot & MachO::VM_PROT_EXECUTE) ? "x" : "-";
301 return Prot;
/external/clang/tools/libclang/
H A DCIndex.cpp5522 const ObjCProtocolDecl *Prot = getCursorObjCProtocolRef(C).first; local
5523 if (const ObjCProtocolDecl *Def = Prot->getDefinition())
5526 return MakeCXCursor(Prot, tu);

Completed in 461 milliseconds