Home
last modified time | relevance | path

Searched refs:found_function (Results 1 – 2 of 2) sorted by relevance

/third_party/gn/src/gn/
Dcommand_help.cc303 auto found_function = function_map.find(what); in RunHelp() local
304 if (found_function != function_map.end()) in RunHelp()
305 PrintLongHelp(found_function->second.help); in RunHelp()
327 if (found_function != function_map.end() || in RunHelp()
Dfunctions.cc1444 FunctionInfoMap::const_iterator found_function = in RunFunction() local
1446 if (found_function == function_map.end()) { in RunFunction()
1451 if (found_function->second.self_evaluating_args_runner) { in RunFunction()
1455 if (found_function->second.self_evaluating_args_runner != &RunForEach) { in RunFunction()
1459 return found_function->second.self_evaluating_args_runner(scope, function, in RunFunction()
1468 if (found_function->second.generic_block_runner) { in RunFunction()
1473 return found_function->second.generic_block_runner( in RunFunction()
1477 if (found_function->second.executed_block_runner) { in RunFunction()
1488 Value result = found_function->second.executed_block_runner( in RunFunction()
1501 return found_function->second.no_block_runner(scope, function, in RunFunction()