Searched defs:VisType (Results 1 - 3 of 3) sorted by relevance

/external/clang/lib/Parse/
H A DParsePragma.cpp34 const IdentifierInfo *VisType = local
37 Actions.ActOnPragmaVisibility(VisType, VisLoc);
70 const IdentifierInfo *VisType; local
72 VisType = 0;
81 VisType = Tok.getIdentifierInfo();
82 if (!VisType) {
110 const_cast<void*>(static_cast<const void*>(VisType)));
/external/clang/lib/Sema/
H A DSemaAttr.cpp348 void Sema::ActOnPragmaVisibility(const IdentifierInfo* VisType, argument
350 if (VisType) {
353 if (VisType->isStr("default"))
355 else if (VisType->isStr("hidden"))
357 else if (VisType->isStr("internal"))
359 else if (VisType->isStr("protected"))
363 VisType->getName();
/external/llvm/lib/Target/CppBackend/
H A DCPPBackend.cpp315 void CppWriter::printVisibilityType(GlobalValue::VisibilityTypes VisType) { argument
316 switch (VisType) {

Completed in 69 milliseconds