Home
last modified time | relevance | path

Searched refs:lastVar (Results 1 – 15 of 15) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Ddscope.c93 this->lastVar = NULL; in Scope()
497 if (lastVar) in insert()
498 vd->lastVar = lastVar; in insert()
499 lastVar = vd; in insert()
505 if (lastVar) in insert()
506 vd->lastVar = lastVar; in insert()
507 lastVar = vd; in insert()
H A Dstatement.c1101 lastVar = NULL; in SwitchStatement()
1122 VarDeclaration *last = s->lastVar; in checkVar()
1124 last = last->lastVar; in checkVar()
1151 if (sdefault && checkVar(this, sdefault->lastVar)) in checkLabel()
1157 if (scase && checkVar(this, scase->lastVar)) in checkLabel()
1171 lastVar = NULL; in CaseStatement()
1215 this->lastVar = NULL; in DefaultStatement()
1538 this->lastVar = NULL; in GotoStatement()
1576 VarDeclaration *vd = label->statement->lastVar; in checkLabel()
1580 VarDeclaration *last = lastVar; in checkLabel()
[all …]
H A Dstatement.h429 VarDeclaration *lastVar; variable
446 VarDeclaration *lastVar; variable
474 VarDeclaration *lastVar; variable
673 VarDeclaration *lastVar; variable
689 VarDeclaration *lastVar; variable
H A Dscope.h91 VarDeclaration *lastVar; // Previous symbol used to prevent goto-skips-init member
H A Dstatementsem.c2249 ss->lastVar = sc->lastVar; in visit()
2511 cs->lastVar = sc->lastVar; in visit()
2634 ds->lastVar = sc->lastVar; in visit()
3644 gs->lastVar = sc->lastVar; in visit()
3681 ls->lastVar = sc->lastVar; in visit()
H A Ddeclaration.h258 VarDeclaration *lastVar; // Linked list of variables for goto-skips-init detection variable
H A Ddeclaration.c839 lastVar = NULL; in VarDeclaration()
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Ddscope.d100 VarDeclaration lastVar; /// Previous symbol used to prevent goto-skips-init member
637 if (lastVar)
638 vd.lastVar = lastVar;
639 lastVar = vd;
645 if (lastVar)
646 vd.lastVar = lastVar;
647 lastVar = vd;
H A Dstatement.h442 VarDeclaration *lastVar; variable
457 VarDeclaration *lastVar; variable
482 VarDeclaration *lastVar; variable
667 VarDeclaration *lastVar; variable
682 VarDeclaration *lastVar; variable
H A Dstatement.d1190 VarDeclaration lastVar; /// last observed variable declaration in this statement variable
1224 for (auto v = vd; v && v != lastVar; v = v.lastVar) in checkLabel()
1239 if (sdefault && checkVar(sdefault.lastVar)) in checkLabel()
1244 if (scase && checkVar(scase.lastVar)) in checkLabel()
1265 VarDeclaration lastVar; variable
1321 VarDeclaration lastVar; variable
1759 VarDeclaration lastVar; variable
1818 VarDeclaration vd = label.statement.lastVar; in checkLabel()
1822 VarDeclaration last = lastVar; in checkLabel()
1824 last = last.lastVar; in checkLabel()
[all …]
H A Dscope.h91 VarDeclaration *lastVar; // Previous symbol used to prevent goto-skips-init member
H A Dstatementsem.d2224 ss.lastVar = sc.lastVar; in package()
2607 cs.lastVar = sc.lastVar; in package()
2734 ds.lastVar = sc.lastVar; in package()
3836 gs.lastVar = sc.lastVar; in package()
3875 ls.lastVar = sc.lastVar; in package()
H A Ddeclaration.h232 VarDeclaration *lastVar; // Linked list of variables for goto-skips-init detection variable
H A Ddeclaration.d1076 VarDeclaration lastVar; // Linked list of variables for goto-skips-init detection variable
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DDecl.h1567 static bool classofKind(Kind K) { return K >= firstVar && K <= lastVar; } in classofKind()