Home
last modified time | relevance | path

Searched refs:nestedrefs (Results 1 – 9 of 9) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Descape.c1222 for (size_t j = 0; j < v->nestedrefs.dim; j++) in findAllOuterAccessedVariables()
1224 FuncDeclaration *fdv = v->nestedrefs[j]; in findAllOuterAccessedVariables()
H A Ddeclaration.c1913 if (i == nestedrefs.dim) in checkNestedReference()
1915 nestedrefs.push(fdthis); in checkNestedReference()
1918 if (nestedrefs[i] == fdthis) in checkNestedReference()
H A Ddeclaration.h246 FuncDeclarations nestedrefs; // referenced by these lexically nested functions variable
H A Dfunc.c4488 for (size_t j = 0; j < v->nestedrefs.dim; j++) in needsClosure()
4490 FuncDeclaration *f = v->nestedrefs[j]; in needsClosure()
4569 for (size_t j = 0; j < v->nestedrefs.dim; j++) in checkClosure()
4571 FuncDeclaration *f = v->nestedrefs[j]; in checkClosure()
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Ddeclaration.d1074 FuncDeclarations nestedrefs; // referenced by these lexically nested functions variable
1609 if (!nestedrefs.contains(fdthis)) in checkNestedReference()
1610 nestedrefs.push(fdthis); in checkNestedReference()
H A Ddeclaration.h230 FuncDeclarations nestedrefs; // referenced by these lexically nested functions variable
H A Dfunc.d2043 for (size_t j = 0; j < v.nestedrefs.dim; j++) in needsClosure()
2045 FuncDeclaration f = v.nestedrefs[j]; in needsClosure()
2129 foreach (f; v.nestedrefs) in checkClosure()
2823 if (v.nestedrefs.length && needsClosure()) in checkNRVO()
H A Descape.d2130 foreach (const fdv; v.nestedrefs) in findAllOuterAccessedVariables()
H A Dexpressionsem.d13185 vthis2.nestedrefs.push(fd); in makeThis2Argument()