Searched refs:searchScopes (Results 1 – 4 of 4) sorted by relevance
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
| H A D | dscope.c | 375 static Dsymbol *searchScopes(Scope *scope, Loc loc, Identifier *ident, Dsymbol **pscopesym, int fla… in searchScopes() function 451 sold = searchScopes(this, loc, ident, pscopesym, flags | IgnoreSymbolVisibility); in search() 462 Dsymbol *s = searchScopes(this, loc, ident, pscopesym, flags | SearchLocalsOnly); in search() 466 s = searchScopes(this, loc, ident, pscopesym, flags | SearchImportsOnly); in search() 473 … s = searchScopes(this, loc, ident, pscopesym, flags | SearchLocalsOnly | IgnoreSymbolVisibility); in search() 475 … s = searchScopes(this, loc, ident, pscopesym, flags | SearchImportsOnly | IgnoreSymbolVisibility); in search()
|
| H A D | expression.c | 636 static Dsymbol *searchScopes(Scope *sc, Loc loc, Identifier *ident, int flags) in searchScopes() function 688 sold = searchScopes(sc, loc, ident, flags | IgnoreSymbolVisibility); in searchUFCS() 697 s = searchScopes(sc, loc, ident, flags | SearchLocalsOnly); in searchUFCS() 701 s = searchScopes(sc, loc, ident, flags | SearchImportsOnly); in searchUFCS() 709 s = searchScopes(sc, loc, ident, flags | SearchLocalsOnly | IgnoreSymbolVisibility); in searchUFCS() 711 … s = searchScopes(sc, loc, ident, flags | SearchImportsOnly | IgnoreSymbolVisibility); in searchUFCS()
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/ |
| H A D | dscope.d | 449 Dsymbol searchScopes(int flags) in searchScopes() function 513 Dsymbol s = searchScopes(flags | SearchLocalsOnly); 518 s = searchScopes(flags | SearchImportsOnly);
|
| H A D | expressionsem.d | 396 Dsymbol searchScopes(int flags) in searchUFCS() 438 s = searchScopes(flags | SearchLocalsOnly); in searchUFCS() 442 s = searchScopes(flags | SearchImportsOnly); in searchUFCS()
|