Home
last modified time | relevance | path

Searched refs:FunctionScope (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython2/Lib/compiler/
Dsymbols.py158 elif isinstance(self, FunctionScope) and sc == SC_LOCAL:
178 class FunctionScope(Scope): class
196 class LambdaScope(FunctionScope):
231 scope = FunctionScope(node.name, self.module, self.klass)
232 if parent.nested or isinstance(parent, FunctionScope):
241 if parent.nested or isinstance(parent, FunctionScope) \
274 if parent.nested or isinstance(parent, FunctionScope):
297 if parent.nested or isinstance(parent, FunctionScope):
/external/v8/src/asmjs/
Dasm-typer.h181 struct FunctionScope { struct
182 explicit FunctionScope(AsmTyper* typer) : typer_(typer) { in FunctionScope() function
189 ~FunctionScope() { in ~FunctionScope() argument
Dasm-typer.cc1117 FunctionScope _(this); in ValidateFunction()