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.cc1438 FunctionInfoMap::const_iterator found_function = in RunFunction() local
1440 if (found_function == function_map.end()) { in RunFunction()
1445 if (found_function->second.self_evaluating_args_runner) { in RunFunction()
1449 if (found_function->second.self_evaluating_args_runner != &RunForEach) { in RunFunction()
1453 return found_function->second.self_evaluating_args_runner(scope, function, in RunFunction()
1462 if (found_function->second.generic_block_runner) { in RunFunction()
1467 return found_function->second.generic_block_runner( in RunFunction()
1471 if (found_function->second.executed_block_runner) { in RunFunction()
1482 Value result = found_function->second.executed_block_runner( in RunFunction()
1495 return found_function->second.no_block_runner(scope, function, in RunFunction()