Home
last modified time | relevance | path

Searched refs:default_format (Results 1 – 24 of 24) sorted by relevance

/external/llvm-project/lldb/source/Interpreter/
DOptionValueFormatEntity.cpp18 OptionValueFormatEntity::OptionValueFormatEntity(const char *default_format) in OptionValueFormatEntity() argument
21 if (default_format && default_format[0]) { in OptionValueFormatEntity()
22 llvm::StringRef default_format_str(default_format); in OptionValueFormatEntity()
25 m_default_format = default_format; in OptionValueFormatEntity()
26 m_current_format = default_format; in OptionValueFormatEntity()
DOptionGroupFormat.cpp19 OptionGroupFormat::OptionGroupFormat(lldb::Format default_format, in OptionGroupFormat() argument
22 : m_format(default_format, default_format), in OptionGroupFormat()
/external/llvm-project/openmp/runtime/test/affinity/format/
Daffinity_display.1.c29 char default_format[FORMAT_STORE]; in main() local
44 nchars = omp_get_affinity_format(default_format, (size_t)FORMAT_STORE); in main()
45 printf("Default Affinity Format is: %s\n", default_format); in main()
/external/fonttools/Lib/fontTools/misc/
DloggingTools.py63 default_format = fmt
67 default_format = custom_formats.pop("*", None)
70 super(LevelFormatter, self).__init__(default_format, datefmt)
71 self.default_format = self._fmt
79 fmt = self.custom_formats.get(record.levelno, self.default_format)
285 default_format = "Took %(time).3fs to %(msg)s" variable in Timer
327 msg = self.default_format % {"msg": msg, "time": time}
/external/python/cpython3/Lib/distutils/command/
Dbdist.py60 default_format = {'posix': 'gztar', variable in bdist
109 self.formats = [self.default_format[os.name]]
Dbdist_dumb.py47 default_format = { 'posix': 'gztar', variable in bdist_dumb
68 self.format = self.default_format[os.name]
/external/python/cpython2/Lib/distutils/command/
Dbdist.py63 default_format = {'posix': 'gztar', variable in bdist
112 self.formats = [self.default_format[os.name]]
Dbdist_dumb.py50 default_format = { 'posix': 'gztar', variable in bdist_dumb
73 self.format = self.default_format[os.name]
Dsdist.py97 default_format = {'posix': 'gztar', variable in sdist
134 self.formats = [self.default_format[os.name]]
/external/tensorflow/tensorflow/python/keras/saving/
Dsave.py130 default_format = 'tf' if tf2.enabled() else 'h5'
131 save_format = save_format or default_format
/external/pigweed/pw_kvs/
Dkey_value_store_test.cc109 constexpr EntryFormat default_format{.magic = 0xa6cb3c16, variable
274 default_format); in TEST()
343 default_format); in TEST()
360 LargeEmptyInitializedKvs() : kvs_(&large_test_partition, default_format) { in LargeEmptyInitializedKvs()
421 default_format); in TEST()
Dkey_value_store_initialized_test.cc79 constexpr EntryFormat default_format{.magic = 0x5b9a341e, variable
84 EmptyInitializedKvs() : kvs_(&test_partition, default_format) { in EmptyInitializedKvs()
279 default_format); in TEST_F()
Dkey_value_store_binary_format_test.cc170 EntryFormat default_format = {.magic = kMagic, .checksum = &default_checksum}; variable
177 kvs_(&partition_, default_format, kNoGcOptions) {} in KvsErrorHandling()
/external/llvm-project/lldb/include/lldb/Interpreter/
DOptionValueFormatEntity.h19 OptionValueFormatEntity(const char *default_format);
DOptionGroupFormat.h29 lldb::Format default_format,
/external/python/cpython3/Lib/logging/
D__init__.py409 default_format = '%(message)s' variable in PercentStyle
415 self._fmt = fmt or self.default_format
423 … raise ValueError("Invalid format '%s' for '%s' style" % (self._fmt, self.default_format[0]))
436 default_format = '{message}' variable in StrFormatStyle
466 default_format = '${message}' variable in StringTemplateStyle
471 self._fmt = fmt or self.default_format
/external/python/cpython2/Lib/distutils/tests/
Dtest_bdist_dumb.py107 default = cmd.default_format[os.name]
/external/python/cpython3/Lib/test/
Dtest_calendar.py111 default_format = dict(year="year", month="month", encoding="ascii") variable
383 format_ = default_format.copy()
901 result_2004_html.format(**default_format).encode('ascii'))
/external/mesa3d/src/amd/vulkan/
Dradv_android.c702 radv_select_android_external_format(const void *next, VkFormat default_format) in radv_select_android_external_format() argument
713 return default_format; in radv_select_android_external_format()
Dradv_private.h2155 radv_select_android_external_format(const void *next, VkFormat default_format);
/external/mesa3d/src/gallium/drivers/svga/
Dsvga_format.c2052 SVGA3dSurfaceFormat default_format = in svga_format_is_shareable() local
2056 if (default_format == SVGA3D_FORMAT_INVALID) in svga_format_is_shareable()
2058 if (default_format == sformat) in svga_format_is_shareable()
2076 svga_format_name(default_format), in svga_format_is_shareable()
/external/rust/crates/env_logger/src/
Dlib.rs584 pub fn default_format(&mut self) -> &mut Self { in default_format() method
/external/libcups/scheduler/
Dipp.c8395 const char *default_format; /* document-format-default value */ in print_job() local
8493 else if ((default_format = cupsGetOption("document-format", in print_job()
8501 if (sscanf(default_format, "%15[^/]/%255[^;]", super, type) != 2) in print_job()
8505 default_format); in print_job()
9558 const char *default_format;/* document-format-default value */ in send_document() local
9739 else if ((default_format = cupsGetOption("document-format", in send_document()
9747 if (sscanf(default_format, "%15[^/]/%255[^;]", super, type) != 2) in send_document()
9750 _("Bad document-format-default \"%s\"."), default_format); in send_document()
/external/python/cpython3/Doc/whatsnew/
D3.6.rst1014 The ``default_format`` attribute has been removed from
1017 any code relying on the presence of ``default_format`` may
2245 * In :class:`distutils.command.sdist.sdist`, the ``default_format``