Home | History | Annotate | Download | only in gn

Lines Matching refs:Scope

9 #include "tools/gn/scope.h"
18 Scope* scope,
23 if (!EnsureNotProcessingImport(function, scope, err) ||
24 !EnsureNotProcessingBuildConfig(function, scope, err))
26 Scope block_scope(scope);
27 if (!FillTargetBlockScope(scope, function, target_type, block,
50 Value RunComponent(Scope* scope,
57 const Value* component_mode_value = scope->GetValue("component_mode");
74 if (!EnsureNotProcessingImport(function, scope, err))
76 Scope block_scope(scope);
77 if (!FillTargetBlockScope(scope, function, component_mode.c_str(), block,
98 Scope* scope,
100 if (!EnsureNotProcessingImport(function, scope, err) ||
101 !EnsureNotProcessingBuildConfig(function, scope, err))
103 TargetGenerator::GenerateTarget(scope, function->function(), args,
178 Value RunCustom(Scope* scope,
183 return ExecuteGenericTarget(functions::kCustom, scope, function, args,
193 Value RunExecutable(Scope* scope,
198 return ExecuteGenericTarget(functions::kExecutable, scope, function, args,
223 Value RunGroup(Scope* scope,
228 return ExecuteGenericTarget(functions::kGroup, scope, function, args,
238 Value RunSharedLibrary(Scope* scope,
243 return ExecuteGenericTarget(functions::kSharedLibrary, scope, function, args,
253 Value RunStaticLibrary(Scope* scope,
258 return ExecuteGenericTarget(functions::kStaticLibrary, scope, function, args,
268 Value RunTest(Scope* scope,
273 return ExecuteGenericTarget(functions::kExecutable, scope, function, args,