Searched refs:FMT_NOEXCEPT (Results 1 – 11 of 11) sorted by relevance
/external/fmtlib/include/fmt/ |
D | color.h | 205 FMT_CONSTEXPR color_type() FMT_NOEXCEPT : is_rgb(), value{} {} in color_type() 206 FMT_CONSTEXPR color_type(color rgb_color) FMT_NOEXCEPT : is_rgb(true), in color_type() 210 FMT_CONSTEXPR color_type(rgb rgb_color) FMT_NOEXCEPT : is_rgb(true), value{} { in color_type() 214 FMT_CONSTEXPR color_type(terminal_color term_color) FMT_NOEXCEPT : is_rgb(), in color_type() 229 FMT_CONSTEXPR text_style(emphasis em = emphasis()) FMT_NOEXCEPT 292 FMT_CONSTEXPR bool has_foreground() const FMT_NOEXCEPT { in has_foreground() 295 FMT_CONSTEXPR bool has_background() const FMT_NOEXCEPT { in has_background() 298 FMT_CONSTEXPR bool has_emphasis() const FMT_NOEXCEPT { in has_emphasis() 301 FMT_CONSTEXPR internal::color_type get_foreground() const FMT_NOEXCEPT { in get_foreground() 305 FMT_CONSTEXPR internal::color_type get_background() const FMT_NOEXCEPT { in get_background() [all …]
|
D | posix.h | 131 explicit error_code(int value = 0) FMT_NOEXCEPT : value_(value) {} in value_() 133 int get() const FMT_NOEXCEPT { return value_; } in get() 150 buffered_file() FMT_NOEXCEPT : file_(nullptr) {} in buffered_file() 153 FMT_API ~buffered_file() FMT_NOEXCEPT; 156 buffered_file(buffered_file&& other) FMT_NOEXCEPT : file_(other.file_) { in buffered_file() 174 FILE* get() const FMT_NOEXCEPT { return file_; } in get() 213 file() FMT_NOEXCEPT : fd_(-1) {} in file() 222 file(file&& other) FMT_NOEXCEPT : fd_(other.fd_) { other.fd_ = -1; } in file() 224 file& operator=(file&& other) FMT_NOEXCEPT { 232 FMT_API ~file() FMT_NOEXCEPT; [all …]
|
D | core.h | 112 #ifndef FMT_NOEXCEPT 114 # define FMT_NOEXCEPT FMT_DETECTED_NOEXCEPT macro 116 # define FMT_NOEXCEPT macro 290 FMT_CONSTEXPR basic_string_view() FMT_NOEXCEPT : data_(nullptr), size_(0) {} in basic_string_view() 293 FMT_CONSTEXPR basic_string_view(const Char* s, size_t count) FMT_NOEXCEPT in basic_string_view() 309 const std::basic_string<Char, Traits, Alloc>& s) FMT_NOEXCEPT in basic_string_view() 316 FMT_CONSTEXPR basic_string_view(S s) FMT_NOEXCEPT : data_(s.data()), in basic_string_view() 494 FMT_CONSTEXPR iterator begin() const FMT_NOEXCEPT { 501 FMT_CONSTEXPR iterator end() const FMT_NOEXCEPT { return format_str_.end(); } 579 buffer(std::size_t sz) FMT_NOEXCEPT : size_(sz), capacity_(sz) {} [all …]
|
D | format-inl.h | 88 std::size_t buffer_size) FMT_NOEXCEPT { in safe_strerror() 146 string_view message) FMT_NOEXCEPT { in format_error_code() 181 string_view message) FMT_NOEXCEPT { in report_error() 230 FMT_API FMT_FUNC format_error::~format_error() FMT_NOEXCEPT = default; 231 FMT_API FMT_FUNC system_error::~system_error() FMT_NOEXCEPT = default; 1306 string_view message) FMT_NOEXCEPT { 1339 string_view message) FMT_NOEXCEPT { 1368 fmt::string_view message) FMT_NOEXCEPT { 1374 fmt::string_view message) FMT_NOEXCEPT {
|
D | format.h | 550 u8string_view(const char* s, size_t count) FMT_NOEXCEPT 648 basic_memory_buffer(basic_memory_buffer&& other) FMT_NOEXCEPT { move(other); } 655 basic_memory_buffer& operator=(basic_memory_buffer&& other) FMT_NOEXCEPT { 699 ~format_error() FMT_NOEXCEPT FMT_OVERRIDE; 1031 string_view message) FMT_NOEXCEPT; 2792 ~system_error() FMT_NOEXCEPT FMT_OVERRIDE; 2814 string_view message) FMT_NOEXCEPT; 2819 string_view message) FMT_NOEXCEPT; 2866 string_view message) FMT_NOEXCEPT;
|
D | ranges.h | 145 void for_each(index_sequence<Is...>, Tuple&& tup, F&& f) FMT_NOEXCEPT {
|
/external/fmtlib/src/ |
D | posix.cc | 71 buffered_file::~buffered_file() FMT_NOEXCEPT { in ~buffered_file() 112 file::~file() FMT_NOEXCEPT { in ~file() 186 void file::dup2(int fd, error_code& ec) FMT_NOEXCEPT { in dup2()
|
/external/fmtlib/test/ |
D | core-test.cc | 486 const Char* data() const FMT_NOEXCEPT { return s_.data(); } in data() 487 std::size_t length() const FMT_NOEXCEPT { return s_.size(); } in length() 496 FMT_NOEXCEPT { in to_string_view() 507 const wchar_t* utf16() const FMT_NOEXCEPT { return s_->data(); } in utf16() 508 int size() const FMT_NOEXCEPT { return static_cast<int>(s_->size()); } in size() 515 FMT_NOEXCEPT { in to_string_view()
|
D | gtest-extra.cc | 43 OutputRedirect::~OutputRedirect() FMT_NOEXCEPT { in ~OutputRedirect()
|
D | gtest-extra.h | 76 ~OutputRedirect() FMT_NOEXCEPT;
|
D | format-impl-test.cc | 8 #define FMT_NOEXCEPT macro
|