Home
last modified time | relevance | path

Searched refs:ContextScope (Results 1 – 6 of 6) sorted by relevance

/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/
DCoroutineScope.kt82 ContextScope(coroutineContext + context) in plus()
104 public fun MainScope(): CoroutineScope = ContextScope(SupervisorJob() + Dispatchers.Main) in plus()
207 ContextScope(if (context[Job] != null) context else context + Job()) in CoroutineScope()
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/internal/
DScopes.kt36 internal class ContextScope(context: CoroutineContext) : CoroutineScope { class
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/test/
DCoroutineScopeTest.kt279 (ContextScope(c1) + c2).coroutineContext
/external/vixl/src/aarch32/
Dmacro-assembler-aarch32.cc34 ContextScope context(this, __FILE__ ":" TOSTRING(__LINE__))
Dmacro-assembler-aarch32.h166 class ContextScope {
168 explicit ContextScope(MacroAssembler* const masm, const char* loc) in ContextScope() function
173 ~ContextScope() { masm_->GetContext()->Down(); } in ~ContextScope()
/external/llvm-project/clang/lib/Sema/
DSemaDecl.cpp14678 Scope *ContextScope = BlockScope; in ImplicitlyDefineFunction() local
14679 while (!ContextScope->getEntity()) in ImplicitlyDefineFunction()
14680 ContextScope = ContextScope->getParent(); in ImplicitlyDefineFunction()
14681 ContextRAII SavedContext(*this, ContextScope->getEntity()); in ImplicitlyDefineFunction()