OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FSI
(Results
1 - 16
of
16
) sorted by relevancy
/src/external/apache2/llvm/dist/clang/include/clang/Sema/
ScopeInfo.h
734
static bool classof(const FunctionScopeInfo *
FSI
) {
735
return
FSI
->Kind == SK_Block ||
FSI
->Kind == SK_Lambda
736
||
FSI
->Kind == SK_CapturedRegion;
761
static bool classof(const FunctionScopeInfo *
FSI
) {
762
return
FSI
->Kind == SK_Block;
813
static bool classof(const FunctionScopeInfo *
FSI
) {
814
return
FSI
->Kind == SK_CapturedRegion;
911
static bool classof(const FunctionScopeInfo *
FSI
) {
912
return
FSI
->Kind == SK_Lambda
[
all
...]
Sema.h
12410
FormatStringInfo *
FSI
);
/src/external/apache2/llvm/dist/clang/lib/Sema/
SemaCoroutine.cpp
844
auto *
FSI
= checkCoroutineContext(*this, Loc, "co_await");
845
if (!
FSI
)
855
auto *Promise =
FSI
->CoroutinePromise;
986
auto *
FSI
= checkCoroutineContext(*this, Loc, "co_return", IsImplicit);
987
if (!
FSI
)
1014
VarDecl *Promise =
FSI
->CoroutinePromise;
SemaStmt.cpp
391
FunctionScopeInfo *
FSI
= getCurFunction();
392
assert(
FSI
);
393
FSI
->setUsesFPIntrin();
4444
sema::FunctionScopeInfo *
FSI
= getCurFunction();
4447
if (!getLangOpts().Borland &&
FSI
->FirstSEHTryLoc.isValid()) {
4449
Diag(
FSI
->FirstSEHTryLoc, diag::note_conflicting_try_here) << "'__try'";
4518
FSI
->setHasCXXTry(TryLoc);
4527
sema::FunctionScopeInfo *
FSI
= getCurFunction();
4532
if (
FSI
->FirstCXXTryLoc.isValid()) {
4534
Diag(
FSI
->FirstCXXTryLoc, diag::note_conflicting_try_here) << "'try'"
[
all
...]
Sema.cpp
418
for (sema::FunctionScopeInfo *
FSI
: FunctionScopes)
419
delete
FSI
;
1969
static void markEscapingByrefs(const FunctionScopeInfo &
FSI
, Sema &S) {
1972
for (const BlockDecl *BD :
FSI
.Blocks) {
1994
for (VarDecl *VD :
FSI
.ByrefBlockVars) {
SemaChecking.cpp
4339
FormatStringInfo *
FSI
) {
4340
FSI
->HasVAListArg = Format->getFirstArg() == 0;
4341
FSI
->FormatIdx = Format->getFormatIdx() - 1;
4342
FSI
->FirstDataArg =
FSI
->HasVAListArg ? 0 : Format->getFirstArg() - 1;
4348
if(
FSI
->FormatIdx == 0)
4350
--
FSI
->FormatIdx;
4351
if (
FSI
->FirstDataArg != 0)
4352
--
FSI
->FirstDataArg;
4395
FormatStringInfo
FSI
;
[
all
...]
AnalysisBasedWarnings.cpp
642
sema::FunctionScopeInfo *
FSI
) {
646
bool IsCoroutine =
FSI
->isCoroutine();
677
S.Diag(Loc, DiagID) <<
FSI
->CoroutinePromise->getType();
SemaDecl.cpp
12318
if (FunctionScopeInfo *
FSI
= getCurFunction())
12323
FSI
->markSafeWeakUse(Init);
14421
FunctionScopeInfo *
FSI
= getCurFunction();
14424
if (
FSI
->UsesFPIntrin && !FD->hasAttr<StrictFPAttr>())
14430
if (getLangOpts().Coroutines &&
FSI
->isCoroutine())
14507
computeNRVO(Body,
FSI
);
14631
computeNRVO(Body,
FSI
);
14633
if (
FSI
->ObjCShouldCallSuper) {
14636
FSI
->ObjCShouldCallSuper = false;
14638
if (
FSI
->ObjCWarnForNoDesignatedInitChain)
[
all
...]
SemaOpenMP.cpp
458
for (const FunctionScopeInfo *
FSI
: llvm::reverse(SemaRef.FunctionScopes)) {
459
if (!isa<CapturingScopeInfo>(
FSI
)) {
460
CurrentNonCapturingFunctionScope =
FSI
;
2201
for (FunctionScopeInfo *
FSI
: llvm::drop_begin(
2204
if (!isa<CapturingScopeInfo>(
FSI
))
2206
if (auto *RSI = dyn_cast<CapturedRegionScopeInfo>(
FSI
))
2232
FunctionScopeInfo *
FSI
= FunctionScopes[I - 1];
2233
if(!isa<CapturingScopeInfo>(
FSI
))
2235
if (auto *RSI = dyn_cast<CapturedRegionScopeInfo>(
FSI
))
SemaDeclCXX.cpp
17920
auto &
FSI
= InventedParameterInfos.back();
17921
if (
FSI
.TemplateParams.size() >
FSI
.NumExplicitTemplateParams) {
17922
if (
FSI
.NumExplicitTemplateParams != 0) {
17928
ExplicitParams->getLAngleLoc(),
FSI
.TemplateParams,
17934
Context, SourceLocation(), SourceLocation(),
FSI
.TemplateParams,
SemaTemplate.cpp
65
for (FunctionScopeInfo *
FSI
: getFunctionScopes()) {
66
if (auto *LSI = dyn_cast<LambdaScopeInfo>(
FSI
)) {
SemaExpr.cpp
17720
FunctionScopeInfo *
FSI
= FunctionScopes[FunctionScopesIndex];
17721
CapturingScopeInfo *CSI = cast<CapturingScopeInfo>(
FSI
);
/src/external/gpl3/gcc/dist/libcpp/
lex.cc
1176
NONE, LRE, RLE, LRO, RLO, LRI, RLI,
FSI
, PDF, PDI, LTR, RTL
1271
case kind::
FSI
:
1280
/* PDI terminates the scope of the last LRI, RLI, or
FSI
whose
1320
case kind::
FSI
:
1409
return bidi::kind::
FSI
;
1500
return bidi::kind::
FSI
;
1580
result = bidi::kind::
FSI
;
/src/external/gpl3/gcc.old/dist/libcpp/
lex.cc
1170
NONE, LRE, RLE, LRO, RLO, LRI, RLI,
FSI
, PDF, PDI, LTR, RTL
1265
case kind::
FSI
:
1274
/* PDI terminates the scope of the last LRI, RLI, or
FSI
whose
1314
case kind::
FSI
:
1402
return bidi::kind::
FSI
;
1477
return bidi::kind::
FSI
;
/src/external/apache2/llvm/dist/clang/lib/AST/
Expr.cpp
716
FunctionTemplateSpecializationInfo *
FSI
718
if (
FSI
&& !
FSI
->isExplicitSpecialization()) {
720
=
FSI
->getTemplate()->getTemplateParameters();
721
const TemplateArgumentList* Args =
FSI
->TemplateArguments;
/src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonISelDAGToDAG.cpp
420
auto
FSI
= StoreNPcMap.find (IntNo);
421
if (
FSI
!= StoreNPcMap.end()) {
435
MachineSDNode *Res = CurDAG->getMachineNode(
FSI
->second, DL, RTys, Ops);
Completed in 158 milliseconds
Indexes created Tue Jun 16 00:25:01 UTC 2026