Home
last modified time | relevance | path

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

/third_party/jinja2/
Dasync_utils.py19 def is_async(args: t.Any) -> bool: function
24 def is_async(args: t.Any) -> bool: function
Dasyncfilters.py31 def is_async(args): function
40 def is_async(args): function
/third_party/python/Lib/
Dpyclbr.py71 parent=None, is_async=False, *, end_lineno=None): argument
89 def _nest_function(ob, func_name, lineno, end_lineno, is_async=False): argument
220 def visit_FunctionDef(self, node, *, is_async=False): argument
/third_party/skia/third_party/externals/jinja2/
Dasyncfilters.py31 def is_async(args): function
40 def is_async(args): function
/third_party/rust/rust/compiler/rustc_const_eval/src/transform/check_consts/
Dmod.rs64 fn is_async(&self) -> bool { in is_async() method
/third_party/rust/rust/src/tools/rust-analyzer/crates/ide-assists/src/handlers/
Dgenerate_delegate_methods.rs118 let is_async = method_source.async_token().is_some(); in generate_delegate_methods() localVariable
Dgenerate_function.rs264 is_async: bool, field
292 let is_async = await_expr.is_some(); in from_call() localVariable
336 let is_async = await_expr.is_some(); in from_method_call() localVariable
Dextract_function.rs302 is_async: bool, field
899 let mut is_async = false; in external_control_flow() localVariable
/third_party/rust/rust/src/tools/rustfmt/src/
Dclosures.rs266 let is_async = if asyncness.is_async() { "async " } else { "" }; in rewrite_closure_fn_decl() localVariable
Ditems.rs278 is_async: Cow<'a, ast::Async>, field
/third_party/rust/rust/src/tools/clippy/clippy_lints/src/
Ddoc.rs745 let is_async = matches!(sig.header.asyncness, Async::Yes { .. }); in check_code() localVariable
/third_party/rust/rust/compiler/rustc_hir_analysis/src/check/
Dcheck.rs329 let is_async = match item.kind { in check_opaque_for_inheriting_lifetimes() localVariable
/third_party/python/Python/
Dsymtable.c2060 int is_async = st->st_cur->ste_coroutine && !is_generator; in symtable_handle_comprehension() local
DPython-ast.c3261 is_async, PyArena *arena) in _PyAST_comprehension()
10221 int is_async; in obj2ast_comprehension() local
Dcompile.c2589 compiler_function(struct compiler *c, stmt_ty s, int is_async) in compiler_function()
/third_party/python/Include/internal/
Dpycore_ast_state.h197 PyObject *is_async; member
Dpycore_ast.h500 int is_async; member
/third_party/rust/rust/compiler/rustc_hir/src/
Dhir.rs2846 pub fn is_async(self) -> bool { in is_async() method
3278 pub fn is_async(&self) -> bool { in is_async() method
/third_party/rust/rust/compiler/rustc_trait_selection/src/traits/error_reporting/
Dsuggestions.rs2352 let is_async = self.tcx.generator_is_async(generator_did); in maybe_note_obligation_cause_for_async_await() localVariable
/third_party/rust/rust/compiler/rustc_ast/src/
Dast.rs2428 pub fn is_async(self) -> bool { in is_async() method
/third_party/rust/rust/src/tools/rust-analyzer/crates/hir/src/
Dlib.rs1918 pub fn is_async(self, db: &dyn HirDatabase) -> bool { in is_async() method