Home
last modified time | relevance | path

Searched refs:is_async (Results 1 – 21 of 21) sorted by relevance

/external/libchrome/third_party/jinja2/
Dasyncfilters.py30 is_async = lambda args: args[0].is_async function
36 is_async = lambda args: args[0].environment.is_async function
40 b = is_async(args)
Dasyncsupport.py52 if not self.environment.is_async:
59 if not self.environment.is_async:
75 if not self.environment.is_async:
92 if not self._context.environment.is_async:
109 if not self._environment.is_async:
126 if self.environment.is_async:
Dcompiler.py501 if self.environment.is_async:
703 if self.environment.is_async:
764 if supports_yield_from and not self.environment.is_async:
770 (self.environment.is_async and 'async ' or ''))
829 if supports_yield_from and not self.environment.is_async and \
834 loop = self.environment.is_async and 'async for' or 'for'
919 loop = self.environment.is_async and 'async for' or 'for'
923 elif self.environment.is_async:
949 if self.environment.is_async:
956 % (self.environment.is_async and '_async' or '',
[all …]
Denvironment.py336 self.is_async = self.enable_async and have_async_gen
1147 if context.environment.is_async:
Dnodes.py650 eval_ctx.environment.is_async
/external/grpc-grpc/src/core/lib/security/credentials/fake/
Dfake_credentials.cc107 if (c->is_async) { in md_only_test_get_request_metadata()
125 const char* md_key, const char* md_value, bool is_async) { in grpc_md_only_test_credentials_create() argument
134 c->is_async = is_async; in grpc_md_only_test_credentials_create()
Dfake_credentials.h61 bool is_async; member
/external/v8/src/parsing/
Dparser-base.h1013 bool parenthesized_formals, bool is_async, in ValidateArrowFormalParameters() argument
1034 if (is_async && !classifier()->is_valid_async_arrow_formal_parameters()) { in ValidateArrowFormalParameters()
1099 ExpressionT ParsePrimaryExpression(bool* is_async, bool* ok);
1101 bool is_async; in ParsePrimaryExpression() local
1102 return ParsePrimaryExpression(&is_async, ok); in ParsePrimaryExpression()
1133 bool* is_async, bool* is_computed_name,
1160 ExpressionT ParseMemberWithNewPrefixesExpression(bool* is_async, bool* ok);
1161 V8_INLINE ExpressionT ParseMemberExpression(bool* is_async, bool* ok);
1163 ExpressionT expression, bool* is_async, bool* ok);
1172 void ParseSingleExpressionFunctionBody(StatementListT body, bool is_async,
[all …]
Dparser.h896 bool is_async, bool* ok) {
900 if (is_async) {
Dpreparser.h1653 bool is_async, bool* ok) {
/external/v8/src/runtime/
Druntime-test.cc42 bool is_async) { in IsWasmCompileAllowed() argument
45 return (is_async && ctrls.AllowAnySizeForAsync) || in IsWasmCompileAllowed()
54 bool is_async) { in IsWasmInstantiateAllowed() argument
57 if (is_async && ctrls.AllowAnySizeForAsync) return true; in IsWasmInstantiateAllowed()
59 return IsWasmCompileAllowed(isolate, module_or_bytes, is_async); in IsWasmInstantiateAllowed()
/external/grpc-grpc/src/core/lib/security/credentials/
Dcredentials.h202 const char* md_key, const char* md_value, bool is_async);
/external/python/cpython3/Python/
Dast.c1573 asdl_seq *decorator_seq, bool is_async) in ast_for_funcdef_impl() argument
1576 const node * const n = is_async ? CHILD(n0, 1) : n0; in ast_for_funcdef_impl()
1603 if (is_async) in ast_for_funcdef_impl()
1837 int is_async = 0; in ast_for_comprehension() local
1842 is_async = 1; in ast_for_comprehension()
1865 is_async, c->c_arena); in ast_for_comprehension()
1869 expression, NULL, is_async, c->c_arena); in ast_for_comprehension()
3685 ast_for_for_stmt(struct compiling *c, const node *n0, bool is_async) in ast_for_for_stmt() argument
3687 const node * const n = is_async ? CHILD(n0, 1) : n0; in ast_for_for_stmt()
3720 if (is_async) in ast_for_for_stmt()
[all …]
Dsymtable.c1668 if (lc->is_async) { in symtable_visit_comprehension()
1721 if (outermost->is_async) { in symtable_handle_comprehension()
Dast_unparse.c359 APPEND_STR(gen->is_async ? " async for " : " for "); in append_ast_comprehension()
DPython-ast.c438 _Py_IDENTIFIER(is_async);
2438 comprehension(expr_ty target, expr_ty iter, asdl_seq * ifs, int is_async, in comprehension() argument
2458 p->is_async = is_async; in comprehension()
3712 value = ast2obj_int(o->is_async); in ast2obj_comprehension()
7602 int is_async; in obj2ast_comprehension() local
7669 res = obj2ast_int(tmp, &is_async, arena); in obj2ast_comprehension()
7673 *out = comprehension(target, iter, ifs, is_async, arena); in obj2ast_comprehension()
Dcompile.c1869 compiler_function(struct compiler *c, stmt_ty s, int is_async) in compiler_function() argument
1884 if (is_async) { in compiler_function()
3806 if (gen->is_async) { in compiler_comprehension_generator()
4101 if (outermost->is_async) { in compiler_comprehension()
/external/tensorflow/tensorflow/core/common_runtime/eager/
Dexecute.cc707 bool is_async = op->EagerContext()->Async(); in EagerRemoteExecute()
710 if (is_async) { in EagerRemoteExecute()
737 if (is_async) { in EagerRemoteExecute()
/external/python/cpython3/Parser/
DPython.asdl113 comprehension = (expr target, expr iter, expr* ifs, int is_async)
/external/python/cpython3/Include/
DPython-ast.h392 int is_async; member
615 ifs, int is_async, PyArena *arena);
/external/python/cpython3/Tools/parser/
Dunparse.py447 if t.is_async: