reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/Sema/SemaExpr.cpp
 3256   case tok::kw___func__: IK = PredefinedExpr::Func; break; // [C99 6.4.2.2]
 3257   case tok::kw___FUNCTION__: IK = PredefinedExpr::Function; break;
 3258   case tok::kw___FUNCDNAME__: IK = PredefinedExpr::FuncDName; break; // [MS]
 3259   case tok::kw___FUNCSIG__: IK = PredefinedExpr::FuncSig; break; // [MS]
 3260   case tok::kw_L__FUNCTION__: IK = PredefinedExpr::LFunction; break; // [MS]
 3261   case tok::kw_L__FUNCSIG__: IK = PredefinedExpr::LFuncSig; break; // [MS]
 3262   case tok::kw___PRETTY_FUNCTION__: IK = PredefinedExpr::PrettyFunction; break;
 3265   return BuildPredefinedExpr(Loc, IK);