/openbsd/gnu/llvm/clang/include/clang/Sema/ |
H A D | ScopeInfo.h | 748 static bool classof(const FunctionScopeInfo *FSI) { in classof() argument 749 return FSI->Kind == SK_Block || FSI->Kind == SK_Lambda in classof() 750 || FSI->Kind == SK_CapturedRegion; in classof() 775 static bool classof(const FunctionScopeInfo *FSI) { in classof() argument 776 return FSI->Kind == SK_Block; in classof() 827 static bool classof(const FunctionScopeInfo *FSI) { in classof() argument 828 return FSI->Kind == SK_CapturedRegion; in classof() 925 static bool classof(const FunctionScopeInfo *FSI) { in classof() argument 926 return FSI->Kind == SK_Lambda; in classof()
|
H A D | Sema.h | 13414 bool IsVariadic, FormatStringInfo *FSI);
|
/openbsd/gnu/llvm/clang/lib/Sema/ |
H A D | SemaStmt.cpp | 395 FunctionScopeInfo *FSI = getCurFunction(); in ActOnAfterCompoundStatementLeadingPragmas() local 396 assert(FSI); in ActOnAfterCompoundStatementLeadingPragmas() 397 FSI->setUsesFPIntrin(); in ActOnAfterCompoundStatementLeadingPragmas() 4218 sema::FunctionScopeInfo *FSI = getCurFunction(); in ActOnObjCAtTryStmt() local 4219 if (FSI->FirstSEHTryLoc.isValid()) { in ActOnObjCAtTryStmt() 4224 FSI->setHasObjCTry(AtLoc); in ActOnObjCAtTryStmt() 4456 sema::FunctionScopeInfo *FSI = getCurFunction(); in ActOnCXXTryBlock() local 4530 FSI->setHasCXXTry(TryLoc); in ActOnCXXTryBlock() 4539 sema::FunctionScopeInfo *FSI = getCurFunction(); in ActOnSEHTryBlock() local 4544 if (FSI->FirstCXXOrObjCTryLoc.isValid()) { in ActOnSEHTryBlock() [all …]
|
H A D | SemaCoroutine.cpp | 835 auto *FSI = checkCoroutineContext(*this, Loc, "co_await"); in BuildUnresolvedCoawaitExpr() local 836 if (!FSI) in BuildUnresolvedCoawaitExpr() 846 auto *Promise = FSI->CoroutinePromise; in BuildUnresolvedCoawaitExpr() 982 auto *FSI = checkCoroutineContext(*this, Loc, "co_return", IsImplicit); in BuildCoreturnStmt() local 983 if (!FSI) in BuildCoreturnStmt() 993 VarDecl *Promise = FSI->CoroutinePromise; in BuildCoreturnStmt()
|
H A D | Sema.cpp | 465 for (sema::FunctionScopeInfo *FSI : FunctionScopes) in ~Sema() 466 delete FSI; in ~Sema() 2182 static void markEscapingByrefs(const FunctionScopeInfo &FSI, Sema &S) { in markEscapingByrefs() argument 2185 for (const BlockDecl *BD : FSI.Blocks) { in markEscapingByrefs() 2207 for (VarDecl *VD : FSI.ByrefBlockVars) { in markEscapingByrefs()
|
H A D | AnalysisBasedWarnings.cpp | 645 sema::FunctionScopeInfo *FSI) { in CheckFallThroughForBody() argument 649 bool IsCoroutine = FSI->isCoroutine(); in CheckFallThroughForBody() 680 S.Diag(Loc, DiagID) << FSI->CoroutinePromise->getType(); in CheckFallThroughForBody()
|
H A D | SemaChecking.cpp | 5616 FSI->ArgPassingKind = FAPK_Fixed; in getFormatStringInfo() 5618 FSI->FirstDataArg = in getFormatStringInfo() 5625 if(FSI->FormatIdx == 0) in getFormatStringInfo() 5627 --FSI->FormatIdx; in getFormatStringInfo() 5628 if (FSI->FirstDataArg != 0) in getFormatStringInfo() 5629 --FSI->FirstDataArg; in getFormatStringInfo() 5671 FormatStringInfo FSI; in GetFormatNSStringIdx() local 5674 Idx = FSI.FormatIdx; in GetFormatNSStringIdx() 9120 FormatStringInfo FSI; in CheckFormatArguments() local 9122 &FSI)) in CheckFormatArguments() [all …]
|
H A D | SemaDecl.cpp | 13250 if (FunctionScopeInfo *FSI = getCurFunction()) in AddInitializerToDecl() local 13255 FSI->markSafeWeakUse(Init); in AddInitializerToDecl() 15420 FunctionScopeInfo *FSI = getCurFunction(); in ActOnFinishFunctionBody() local 15512 computeNRVO(Body, FSI); in ActOnFinishFunctionBody() 15683 computeNRVO(Body, FSI); in ActOnFinishFunctionBody() 15685 if (FSI->ObjCShouldCallSuper) { in ActOnFinishFunctionBody() 15688 FSI->ObjCShouldCallSuper = false; in ActOnFinishFunctionBody() 15690 if (FSI->ObjCWarnForNoDesignatedInitChain) { in ActOnFinishFunctionBody() 15717 if (FSI->ObjCWarnForNoInitDelegation) { in ActOnFinishFunctionBody() 15722 FSI->ObjCWarnForNoInitDelegation = false; in ActOnFinishFunctionBody() [all …]
|
H A D | SemaOpenMP.cpp | 481 for (const FunctionScopeInfo *FSI : llvm::reverse(SemaRef.FunctionScopes)) { in popFunction() local 482 if (!isa<CapturingScopeInfo>(FSI)) { in popFunction() 483 CurrentNonCapturingFunctionScope = FSI; in popFunction() 2360 for (FunctionScopeInfo *FSI : llvm::drop_begin( in isOpenMPCapturedDecl() 2363 if (!isa<CapturingScopeInfo>(FSI)) in isOpenMPCapturedDecl() 2365 if (auto *RSI = dyn_cast<CapturedRegionScopeInfo>(FSI)) in isOpenMPCapturedDecl() 2391 FunctionScopeInfo *FSI = FunctionScopes[I - 1]; in isOpenMPCapturedDecl() local 2392 if (!isa<CapturingScopeInfo>(FSI)) in isOpenMPCapturedDecl() 2394 if (auto *RSI = dyn_cast<CapturedRegionScopeInfo>(FSI)) in isOpenMPCapturedDecl()
|
H A D | SemaDeclCXX.cpp | 18602 auto &FSI = InventedParameterInfos.back(); in ActOnFinishFunctionDeclarationDeclarator() local 18603 if (FSI.TemplateParams.size() > FSI.NumExplicitTemplateParams) { in ActOnFinishFunctionDeclarationDeclarator() 18604 if (FSI.NumExplicitTemplateParams != 0) { in ActOnFinishFunctionDeclarationDeclarator() 18610 ExplicitParams->getLAngleLoc(), FSI.TemplateParams, in ActOnFinishFunctionDeclarationDeclarator() 18616 Context, SourceLocation(), SourceLocation(), FSI.TemplateParams, in ActOnFinishFunctionDeclarationDeclarator()
|
H A D | SemaTemplate.cpp | 69 for (FunctionScopeInfo *FSI : getFunctionScopes()) { in getTemplateDepth() 70 if (auto *LSI = dyn_cast<LambdaScopeInfo>(FSI)) { in getTemplateDepth()
|
H A D | SemaExpr.cpp | 19122 FunctionScopeInfo *FSI = FunctionScopes[FunctionScopesIndex]; in tryCaptureVariable() local 19123 CapturingScopeInfo *CSI = cast<CapturingScopeInfo>(FSI); in tryCaptureVariable()
|
/openbsd/sys/dev/eisa/ |
H A D | eisadevs | 63 vendor FSI FORE Systems 566 product FSI 2001 ESA-200 ATM 567 product FSI 2002 ESA-200A ATM 568 product FSI 2003 ESA-200E ATM
|
/openbsd/gnu/llvm/llvm/lib/Target/Hexagon/ |
H A D | HexagonISelDAGToDAG.cpp | 425 auto FSI = StoreNPcMap.find (IntNo); in SelectNewCircIntrinsic() local 426 if (FSI != StoreNPcMap.end()) { in SelectNewCircIntrinsic() 440 MachineSDNode *Res = CurDAG->getMachineNode(FSI->second, DL, RTys, Ops); in SelectNewCircIntrinsic()
|
/openbsd/gnu/llvm/clang/lib/AST/ |
H A D | Expr.cpp | 873 FunctionTemplateSpecializationInfo *FSI in ComputeName() local 875 if (FSI && !FSI->isExplicitSpecialization()) { in ComputeName() 877 = FSI->getTemplate()->getTemplateParameters(); in ComputeName() 878 const TemplateArgumentList* Args = FSI->TemplateArguments; in ComputeName()
|
/openbsd/gnu/usr.bin/perl/lib/unicore/ |
H A D | NameAliases.txt | 292 2068;FSI;abbreviation
|
H A D | PropValueAliases.txt | 111 bc ; FSI ; First_Strong_Isolate
|
H A D | NamesList.txt | 13108 * commonly abbreviated FSI
|
H A D | UnicodeData.txt | 7459 2068;FIRST STRONG ISOLATE;Cf;0;FSI;;;;;N;;;;;
|
/openbsd/gnu/usr.bin/perl/pod/ |
H A D | perluniprops.pod | 621 \p{Bidi_Class: First_Strong_Isolate} (Short: \p{Bc=FSI}) (1: 623 \p{Bidi_Class: FSI} \p{Bidi_Class=First_Strong_Isolate} (1)
|
/openbsd/gnu/usr.bin/perl/lib/unicore/extracted/ |
H A D | DBidiClass.txt | 2504 2068 ; FSI # Cf FIRST STRONG ISOLATE
|