Home
last modified time | relevance | path

Searched refs:DefaultContext (Results 1 – 7 of 7) sorted by relevance

/third_party/python/Lib/multiprocessing/
Dcontext.py226 class DefaultContext(BaseContext): class
316 _default_context = DefaultContext(_concrete_contexts['spawn'])
318 _default_context = DefaultContext(_concrete_contexts['fork'])
336 _default_context = DefaultContext(_concrete_contexts['spawn'])
/third_party/python/Lib/test/
Dtest_decimal.py1612 DefaultContext = self.decimal.DefaultContext
1619 save_prec = DefaultContext.prec
1620 save_emax = DefaultContext.Emax
1621 save_emin = DefaultContext.Emin
1622 DefaultContext.prec = 24
1623 DefaultContext.Emax = 425000000
1624 DefaultContext.Emin = -425000000
1640 self.assertFalse(DefaultContext.flags[sig])
1645 DefaultContext.prec = save_prec
1646 DefaultContext.Emax = save_emax
[all …]
/third_party/ffmpeg/fftools/
Dffprobe.c924 typedef struct DefaultContext { struct
929 } DefaultContext; argument
932 #define OFFSET(x) offsetof(DefaultContext, x)
956 DefaultContext *def = wctx->priv; in default_print_section_header()
981 DefaultContext *def = wctx->priv; in default_print_section_footer()
994 DefaultContext *def = wctx->priv; in default_print_str()
1003 DefaultContext *def = wctx->priv; in default_print_int()
1012 .priv_size = sizeof(DefaultContext),
/third_party/python/Doc/library/
Ddecimal.rst973 .. class:: DefaultContext
999 default values are copied from the :const:`DefaultContext`. If the *flags*
1802 The new context is copied from a prototype context called *DefaultContext*. To
1804 application, directly modify the *DefaultContext* object. This should be done
1809 DefaultContext.prec = 12
1810 DefaultContext.rounding = ROUND_DOWN
1811 DefaultContext.traps = ExtendedContext.traps.copy()
1812 DefaultContext.traps[InvalidOperation] = 1
1813 setcontext(DefaultContext)
/third_party/flatbuffers/src/
Didl_gen_rust.cpp920 enum DefaultContext { kBuilder, kAccessor, kObject }; enum in flatbuffers::rust::RustGenerator
922 const DefaultContext context) { in GetDefaultValue()
/third_party/python/Lib/
D_pydecimal.py460 if context in (DefaultContext, BasicContext, ExtendedContext):
3894 dc = DefaultContext
6074 DefaultContext = Context( variable
/third_party/python/Doc/whatsnew/
D3.3.rst1147 * In the context templates (:class:`~decimal.DefaultContext`,