HomeSort by relevance Sort by last modified time
    Searched refs:FSI (Results 1 - 4 of 4) sorted by null

  /external/clang/include/clang/Sema/
ScopeInfo.h 506 static bool classof(const FunctionScopeInfo *FSI) {
507 return FSI->Kind == SK_Block || FSI->Kind == SK_Lambda
508 || FSI->Kind == SK_CapturedRegion;
534 static bool classof(const FunctionScopeInfo *FSI) {
535 return FSI->Kind == SK_Block;
574 static bool classof(const FunctionScopeInfo *FSI) {
575 return FSI->Kind == SK_CapturedRegion;
629 static bool classof(const FunctionScopeInfo *FSI) {
630 return FSI->Kind == SK_Lambda;
    [all...]
Sema.h     [all...]
  /external/clang/lib/Sema/
SemaChecking.cpp 685 FormatStringInfo *FSI) {
686 FSI->HasVAListArg = Format->getFirstArg() == 0;
687 FSI->FormatIdx = Format->getFormatIdx() - 1;
688 FSI->FirstDataArg = FSI->HasVAListArg ? 0 : Format->getFirstArg() - 1;
694 if(FSI->FormatIdx == 0)
696 --FSI->FormatIdx;
697 if (FSI->FirstDataArg != 0)
698 --FSI->FirstDataArg;
    [all...]
  /external/clang/lib/AST/
Expr.cpp 563 FunctionTemplateSpecializationInfo *FSI
565 if (FSI && !FSI->isExplicitSpecialization()) {
567 = FSI->getTemplate()->getTemplateParameters();
568 const TemplateArgumentList* Args = FSI->TemplateArguments;
    [all...]

Completed in 51 milliseconds