Searched refs:func_call (Results 1 – 6 of 6) sorted by relevance
/third_party/gn/src/gn/ |
D | command_format.cc | 217 int FunctionCall(const FunctionCallNode* func_call, 427 const FunctionCallNode* func_call = p->AsFunctionCall(); in SortImports() local 428 return func_call && func_call->function().value() == "import"; in SortImports() 535 } else if (const FunctionCallNode* func_call = node->AsFunctionCall()) { in SuffixCommentTreeWalk() local 536 RETURN_IF_SET(SuffixCommentTreeWalk(func_call->block())); in SuffixCommentTreeWalk() 537 RETURN_IF_SET(SuffixCommentTreeWalk(func_call->args())); in SuffixCommentTreeWalk() 901 } else if (const FunctionCallNode* func_call = root->AsFunctionCall()) { in Expr() local 902 penalty += FunctionCall(func_call, at_end); in Expr() 1015 int Printer::FunctionCall(const FunctionCallNode* func_call, in FunctionCall() argument 1019 Print(func_call->function().value()); in FunctionCall() [all …]
|
D | parser.cc | 564 std::unique_ptr<FunctionCallNode> func_call = in IdentifierOrCall() local 566 func_call->set_function(token); in IdentifierOrCall() 567 func_call->set_args(std::move(list)); in IdentifierOrCall() 569 func_call->set_block(std::move(block)); in IdentifierOrCall() 570 return func_call; in IdentifierOrCall() 800 } else if (const FunctionCallNode* func_call = root->AsFunctionCall()) { in TraverseOrder() local 801 TraverseOrder(func_call->args(), pre, post); in TraverseOrder() 802 TraverseOrder(func_call->block(), pre, post); in TraverseOrder()
|
/third_party/benchmark/test/ |
D | benchmark_setup_teardown_test.cc | 46 static std::atomic<int> func_call(0); variable 62 concurrent::func_call.fetch_add(1, std::memory_order_acquire); in BM_concurrent() 144 concurrent::func_call.load(std::memory_order_relaxed)); in main()
|
/third_party/python/Lib/asyncio/ |
D | threads.py | 24 func_call = functools.partial(ctx.run, func, *args, **kwargs) 25 return await loop.run_in_executor(None, func_call)
|
/third_party/mbedtls/library/ |
D | constant_time.c | 478 #define MD_CHK( func_call ) \ in mbedtls_ct_hmac() argument 480 ret = (func_call); \ in mbedtls_ct_hmac()
|
/third_party/gstreamer/gstplugins_good/gst/goom/ |
D | goomsl_yacc.y | 1248 %type <nPtr> expression constValue instruction test func_call func_call_expression 1350 | func_call { $$ = $1; } 1396 func_call: task_name '\n' leave_namespace { $$ = new_call($1,NULL); }
|