/third_party/json/include/nlohmann/detail/ |
D | exceptions.hpp | 61 exception(int id_, const char* what_arg) : id(id_), m(what_arg) {} in exception() argument 63 static std::string name(const std::string& ename, int id_) in name() argument 65 return "[json.exception." + ename + "." + std::to_string(id_) + "] "; in name() 130 static parse_error create(int id_, const position_t& pos, const std::string& what_arg) in create() argument 132 std::string w = exception::name("parse_error", id_) + "parse error" + in create() 134 return parse_error(id_, pos.chars_read_total, w.c_str()); in create() 137 static parse_error create(int id_, std::size_t byte_, const std::string& what_arg) in create() argument 139 std::string w = exception::name("parse_error", id_) + "parse error" + in create() 142 return parse_error(id_, byte_, w.c_str()); in create() 157 parse_error(int id_, std::size_t byte_, const char* what_arg) in parse_error() argument [all …]
|
/third_party/boost/libs/beast/include/boost/beast/websocket/detail/ |
D | soft_mutex.hpp | 24 int id_ = 0; member in boost::beast::websocket::detail::soft_mutex 32 : id_(boost::exchange(other.id_, 0)) in soft_mutex() 38 id_ = other.id_; in operator =() 39 other.id_ = 0; in operator =() 47 id_ = 0; in reset() 53 return id_ != 0; in is_locked() 60 return id_ == T::id; in is_locked() 67 BOOST_ASSERT(id_ == 0); in lock() 68 id_ = T::id; in lock() 75 BOOST_ASSERT(id_ == T::id); in unlock() [all …]
|
/third_party/boost/boost/beast/websocket/detail/ |
D | soft_mutex.hpp | 24 int id_ = 0; member in boost::beast::websocket::detail::soft_mutex 32 : id_(boost::exchange(other.id_, 0)) in soft_mutex() 38 id_ = other.id_; in operator =() 39 other.id_ = 0; in operator =() 47 id_ = 0; in reset() 53 return id_ != 0; in is_locked() 60 return id_ == T::id; in is_locked() 67 BOOST_ASSERT(id_ == 0); in lock() 68 id_ = T::id; in lock() 75 BOOST_ASSERT(id_ == T::id); in unlock() [all …]
|
/third_party/mindspore/tests/ut/python/dataset/ |
D | test_apply.py | 72 def test_apply_flow_case_0(id_=0): argument 77 if id_ == 0: 79 elif id_ == 1: 81 elif id_ == 2: 93 if id_ == 0: 95 elif id_ == 1: 97 elif id_ == 2: 103 def test_apply_flow_case_1(id_=1): argument 108 if id_ == 0: 110 elif id_ == 1: [all …]
|
/third_party/boost/libs/spirit/example/qi/compiler_tutorial/conjure3/ |
D | conjure_static_switch_lexer.hpp | 46 std::size_t id_ = npos; in next_token_conjure_static_switch() local 111 id_ = 35; in next_token_conjure_static_switch() 124 id_ = 32; in next_token_conjure_static_switch() 139 id_ = 32; in next_token_conjure_static_switch() 154 id_ = 32; in next_token_conjure_static_switch() 169 id_ = 32; in next_token_conjure_static_switch() 186 id_ = 32; in next_token_conjure_static_switch() 201 id_ = 32; in next_token_conjure_static_switch() 216 id_ = 32; in next_token_conjure_static_switch() 247 id_ = 61; in next_token_conjure_static_switch() [all …]
|
/third_party/boost/libs/spirit/example/qi/compiler_tutorial/conjure2/ |
D | conjure_static_switch_lexer.hpp | 46 std::size_t id_ = npos; in next_token_conjure_static_switch() local 111 id_ = 35; in next_token_conjure_static_switch() 124 id_ = 32; in next_token_conjure_static_switch() 139 id_ = 32; in next_token_conjure_static_switch() 154 id_ = 32; in next_token_conjure_static_switch() 169 id_ = 32; in next_token_conjure_static_switch() 186 id_ = 32; in next_token_conjure_static_switch() 201 id_ = 32; in next_token_conjure_static_switch() 216 id_ = 32; in next_token_conjure_static_switch() 247 id_ = 61; in next_token_conjure_static_switch() [all …]
|
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/ |
D | hash_policy_testing.h | 39 WithId() : id_(next_id<Derived>()) {} in WithId() 40 WithId(const WithId& that) : id_(that.id_) {} in WithId() 41 WithId(WithId&& that) : id_(that.id_) { that.id_ = 0; } in WithId() 43 id_ = that.id_; 47 id_ = that.id_; 48 that.id_ = 0; 52 size_t id() const { return id_; } in id() 55 return a.id_ == b.id_; 60 explicit WithId(size_t id) : id_(id) {} in WithId() 63 size_t id_; [all …]
|
/third_party/abseil-cpp/absl/container/internal/ |
D | hash_policy_testing.h | 39 WithId() : id_(next_id<Derived>()) {} in WithId() 40 WithId(const WithId& that) : id_(that.id_) {} in WithId() 41 WithId(WithId&& that) : id_(that.id_) { that.id_ = 0; } in WithId() 43 id_ = that.id_; 47 id_ = that.id_; 48 that.id_ = 0; 52 size_t id() const { return id_; } in id() 55 return a.id_ == b.id_; 60 explicit WithId(size_t id) : id_(id) {} in WithId() 63 size_t id_; [all …]
|
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/core/ |
D | tensor_row.cc | 24 TensorRow::TensorRow() noexcept : id_(kDefaultRowId), path_({}), tensor_row_flag_(kFlagNone) {} in TensorRow() 27 : id_(kDefaultRowId), path_({}), row_(n, t), tensor_row_flag_(kFlagNone) {} in TensorRow() 30 : id_(kDefaultRowId), path_({}), row_(v), tensor_row_flag_(kFlagNone) {} in TensorRow() 33 : id_(id), path_({}), row_(lst), tensor_row_flag_(kFlagNone) {} in TensorRow() 36 : id_(tr.id_), path_(tr.path_), row_(tr.row_), tensor_row_flag_(tr.tensor_row_flag_) {} in TensorRow() 38 TensorRow::TensorRow(TensorRow::TensorRowFlags flag) : id_(kDefaultRowId), path_({}), tensor_row_fl… in TensorRow() 45 id_ = tr.id_; in operator =() 58 : id_(kDefaultRowId), path_({}), row_(std::move(v)), tensor_row_flag_(kFlagNone) {} in TensorRow() 61 : id_(id), path_({}), row_(std::move(lst)), tensor_row_flag_(kFlagNone) {} in TensorRow() 64 id_ = tr.id_; in TensorRow() [all …]
|
/third_party/boost/libs/container/test/ |
D | dummy_test_allocator.hpp | 111 : id_(++unique_id_) in propagation_test_allocator() 120 : id_(x.id_) in propagation_test_allocator() 136 : id_(x.id_) in propagation_test_allocator() 145 : id_(x.id_) in propagation_test_allocator() 155 id_ = x.id_; in operator =() 166 id_ = x.id_; in operator =() 185 { return EqualIfEqualIds ? a.id_ == b.id_ : true; } in operator ==() 188 { return EqualIfEqualIds ? a.id_ != b.id_ : false; } in operator !=() 193 boost::adl_move_swap(this->id_, r.id_); in swap() 206 unsigned int id_; member in boost::container::test::propagation_test_allocator
|
D | propagate_allocator_test.hpp | 124 BOOST_TEST (c.get_stored_allocator().id_ == 112); in test_propagate_allocator() 135 BOOST_TEST (c.get_stored_allocator().id_ == 223); in test_propagate_allocator() 139 BOOST_TEST (c2.get_stored_allocator().id_ == 223); in test_propagate_allocator() 150 BOOST_TEST (c.get_stored_allocator().id_ == 334); in test_propagate_allocator() 152 BOOST_TEST (c2.get_stored_allocator().id_ == 334); in test_propagate_allocator() 163 BOOST_TEST (c.get_stored_allocator().id_ == 445); in test_propagate_allocator() 165 BOOST_TEST (c2.get_stored_allocator().id_ == 446); in test_propagate_allocator() 167 BOOST_TEST (c2.get_stored_allocator().id_ == 445); in test_propagate_allocator() 178 BOOST_TEST (c.get_stored_allocator().id_ == 556); in test_propagate_allocator() 180 BOOST_TEST (c2.get_stored_allocator().id_ == 557); in test_propagate_allocator() [all …]
|
/third_party/boost/libs/hana/test/tuple/ |
D | cnstr.convert_copy.cpp | 11 int id_; member 12 constexpr A(int i) : id_(i) {} in A() 14 { return x.id_ == y.id_; } in operator ==() 18 int id_; member 19 explicit B(int i) : id_(i) {} in B() 23 int id_; member 24 constexpr explicit C(int i) : id_(i) {} in C() 26 { return x.id_ == y.id_; } in operator ==() 71 BOOST_HANA_RUNTIME_CHECK(hana::at_c<2>(t1).id_ == 3); in main() 79 d.id_ = 2; in main() [all …]
|
/third_party/boost/boost/thread/ |
D | testable_mutex.hpp | 39 atomic<thread::id> id_; member in boost::testable_mutex 47 testable_mutex() : id_(thread::id()) {} in testable_mutex() 53 id_ = this_thread::get_id(); in lock() 59 id_ = thread::id(); in unlock() 68 id_ = this_thread::get_id(); in try_lock() 83 id_ = this_thread::get_id(); in try_lock_for() 97 id_ = this_thread::get_id(); in try_lock_until() 109 return this_thread::get_id() == id_; in is_locked_by_this_thread() 113 return ! (thread::id() == id_); in is_locked() 118 return id_; in get_id()
|
/third_party/boost/libs/beast/test/beast/core/ |
D | test_handler.hpp | 26 std::size_t id_; member in boost::beast::simple_allocator 30 : id_([] in simple_allocator() 43 return lhs.id_ == rhs.id_; in operator ==() 51 return lhs.id_ != rhs.id_; in operator !=() 57 std::size_t id_; member in boost::beast::simple_executor 61 : id_([] in simple_executor() 88 return lhs.id_ == rhs.id_; in operator ==() 96 return lhs.id_ != rhs.id_; in operator !=()
|
/third_party/boost/boost/smart_ptr/detail/ |
D | shared_count.hpp | 120 int id_; member in boost::detail::shared_count 129 , id_(shared_count_id) in shared_count() 136 , id_(shared_count_id) in shared_count() 143 , id_(shared_count_id) in shared_count() 177 , id_(shared_count_id) in shared_count() 212 , id_(shared_count_id) in shared_count() 244 , id_(shared_count_id) in shared_count() 301 , id_(shared_count_id) in shared_count() 363 , id_(shared_count_id) in shared_count() 385 , id_(shared_count_id) in shared_count() [all …]
|
/third_party/boost/boost/interprocess/sync/windows/ |
D | mutex.hpp | 52 const sync_id id_; member in boost::interprocess::ipcdetail::windows_mutex 56 : id_(this) in windows_mutex() 62 (void)handles.obtain_mutex(this->id_, &open_or_created); in windows_mutex() 73 handles.destroy_handle(this->id_); in ~windows_mutex() 81 winapi_mutex_functions mut(handles.obtain_mutex(this->id_)); in lock() 90 winapi_mutex_functions mut(handles.obtain_mutex(this->id_)); in try_lock() 99 winapi_mutex_functions mut(handles.obtain_mutex(this->id_)); in timed_lock() 108 winapi_mutex_functions mut(handles.obtain_mutex(this->id_)); in unlock()
|
D | semaphore.hpp | 52 const sync_id id_; member in boost::interprocess::ipcdetail::windows_semaphore 56 : id_(this) in windows_semaphore() 62 handles.obtain_semaphore(this->id_, initialCount, &open_or_created); in windows_semaphore() 73 handles.destroy_handle(this->id_); in ~windows_semaphore() 81 winapi_semaphore_functions sem(handles.obtain_semaphore(this->id_, 0)); in wait() 90 winapi_semaphore_functions sem(handles.obtain_semaphore(this->id_, 0)); in try_wait() 99 winapi_semaphore_functions sem(handles.obtain_semaphore(this->id_, 0)); in timed_wait() 107 winapi_semaphore_functions sem(handles.obtain_semaphore(this->id_, 0)); in post()
|
/third_party/boost/boost/hof/ |
D | apply.hpp | 156 constexpr BOOST_HOF_SFINAE_MANUAL_RESULT(apply_mem_fn, id_<F>, id_<T>, id_<Ts>...) 165 constexpr BOOST_HOF_SFINAE_MANUAL_RESULT(apply_mem_fn, id_<F>, id_<U>, id_<Ts>...) 174 constexpr BOOST_HOF_SFINAE_MANUAL_RESULT(apply_mem_fn, id_<F>, id_<T&>, id_<Ts>...) 183 constexpr BOOST_HOF_SFINAE_MANUAL_RESULT(apply_mem_data, id_<F>, id_<T>) 192 constexpr BOOST_HOF_SFINAE_MANUAL_RESULT(apply_mem_data, id_<F>, id_<U>) 201 constexpr BOOST_HOF_SFINAE_MANUAL_RESULT(apply_mem_data, id_<F>, id_<T&>) 235 constexpr BOOST_HOF_SFINAE_MANUAL_RESULT(F, id_<Ts>...)
|
D | fold.hpp | 93 … BOOST_HOF_SFINAE_MANUAL_RESULT(const v_fold&, id_<const F&>, result_of<const F&, id_<State>, id_<… 130 …constexpr BOOST_HOF_SFINAE_RESULT(detail::v_fold, id_<const detail::callable_base<F>&>, id_<State>… 157 …constexpr BOOST_HOF_SFINAE_RESULT(detail::v_fold, id_<const detail::callable_base<F>&>, id_<Ts>...)
|
D | reverse_fold.hpp | 95 …NUAL_RESULT(const F&, result_of<const v_reverse_fold&, id_<const F&>, id_<State>, id_<Ts>...>, id_… 132 …r BOOST_HOF_SFINAE_RESULT(detail::v_reverse_fold, id_<const detail::callable_base<F>&>, id_<State>… 159 …nstexpr BOOST_HOF_SFINAE_RESULT(detail::v_reverse_fold, id_<const detail::callable_base<F>&>, id_<…
|
/third_party/cef/include/base/ |
D | cef_platform_thread.h | 67 PlatformThreadRef() : id_(0) {} in PlatformThreadRef() 69 explicit PlatformThreadRef(RefType id) : id_(id) {} in PlatformThreadRef() 71 bool operator==(PlatformThreadRef other) const { return id_ == other.id_; } 73 bool is_null() const { return id_ == 0; } in is_null() 76 RefType id_;
|
/third_party/boost/boost/spirit/home/support/detail/lexer/ |
D | input.hpp | 169 std::size_t id_ = *(ptr_ + id_index); in next() local 209 id_ = *(ptr_ + id_index); in next() 226 id_ = *(ptr_ + id_index); in next() 240 if (id_ == 0) in next() 255 id_ = npos; in next() 260 return id_; in next() 281 std::size_t id_ = *(ptr_ + id_index); in next() local 301 id_ = *(ptr_ + id_index); in next() 314 if (id_ == 0) goto again; in next() 320 id_ = npos; in next() [all …]
|
/third_party/flutter/engine/flutter/flow/ |
D | raster_cache_key.h | 17 RasterCacheKey(ID id, const SkMatrix& ctm) : id_(id), matrix_(ctm) { in RasterCacheKey() 25 ID id() const { return id_; } in id() 30 return std::hash<ID>()(key.id_); in operator() 37 return lhs.id_ == rhs.id_ && lhs.matrix_ == rhs.matrix_; in operator() 45 ID id_;
|
/third_party/mindspore/mindspore/ccsrc/frontend/optimizer/irpass/ |
D | item_tuple_or_list_eliminate.h | 53 inputs[2] = NewValueNode(id_); in operator() 77 id_ = idx + sequeue_abstract->size(); in Visit() 84 id_ = 0; in Reset() 91 int64_t id_{0}; 107 return tuple_->input(id_); in operator() 124 id_ = LongToSize(idx + 1); in Visit() 125 if (tuple_->size() > id_) { in Visit() 132 id_ = 0; in Reset() 139 size_t id_{0}; 155 auto out = NewValueNode((*tuple_)[id_]); in operator() [all …]
|
/third_party/boost/libs/smart_ptr/test/ |
D | shared_ptr_alloc2_test.cpp | 21 int id_; member 26 explicit test_allocator_base( int id ): id_( id ) in test_allocator_base() 87 BOOST_TEST( id_ == last_id_ ); in deallocate() 100 last_id_ = id_; in allocate() 102 last_global_id_ = id_; in allocate() 130 return a1.id_ == a2.id_; in operator ==() 135 return a1.id_ != a2.id_; in operator !=()
|