/third_party/json/include/nlohmann/detail/ |
H A D | exceptions.hpp | 50 exception(int id_, const char* what_arg) : id(id_), m(what_arg) {} // NOLINT(bugprone-throw-keyword-missing) in exception() argument 52 static std::string name(const std::string& ename, int id_) in name() argument 54 return concat("[json.exception.", ename, '.', std::to_string(id_), "] "); in name() 139 @param[in] id_ the id of the exception 147 static parse_error create(int id_, const position_t& pos, const std::string& what_arg, BasicJsonContext context) in create() argument 149 std::string w = concat(exception::name("parse_error", id_), "parse error", in create() 151 return {id_, pos.chars_read_total, w.c_str()}; in create() 155 static parse_error create(int id_, std::size_t byte_, const std::string& what_arg, BasicJsonContext context) in create() argument 157 std::string w = concat(exception::name("parse_error", id_), "pars in create() 175 parse_error(int id_, std::size_t byte_, const char* what_arg) parse_error() argument 191 create(int id_, const std::string& what_arg, BasicJsonContext context) create() argument 199 invalid_iterator(int id_, const char* what_arg) invalid_iterator() argument 209 create(int id_, const std::string& what_arg, BasicJsonContext context) create() argument 217 type_error(int id_, const char* what_arg) type_error() argument 226 create(int id_, const std::string& what_arg, BasicJsonContext context) create() argument 234 out_of_range(int id_, const char* what_arg) out_of_range() argument 243 create(int id_, const std::string& what_arg, BasicJsonContext context) create() argument 251 other_error(int id_, const char* what_arg) other_error() argument [all...] |
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/ |
H A 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_; in operator =() 47 id_ = that.id_; in operator =() 63 size_t id_; global() member 143 size_t id_ = (std::numeric_limits<size_t>::max)(); global() member [all...] |
H A D | raw_hash_set_allocator_test.cc | 48 explicit CheckedAlloc(size_t id) : id_(id) {} in CheckedAlloc() 54 : id_(that.id_), state_(that.state_) {} in CheckedAlloc() 87 return a.id_ == b.id_; in operator ==() 97 swap(id_, that.id_); in swap() 104 return o << "alloc(" << a.id_ << ")"; in operator <<() 120 size_t id_ = std::numeric_limits<size_t>::max(); member in absl::container_internal::__anon19186::CheckedAlloc 442 explicit PAlloc(size_t id) noexcept : id_(i function in absl::container_internal::__anon19186::PAlloc 447 PAlloc(const PAlloc<U>& that) noexcept : id_(that.id_) {} // NOLINT id_() function in absl::container_internal::__anon19186::PAlloc 466 size_t id_ = std::numeric_limits<size_t>::max(); global() member in absl::container_internal::__anon19186::PAlloc [all...] |
/third_party/node/deps/v8/src/execution/ |
H A D | thread-id.h | 19 bool operator==(const ThreadId& other) const { return id_ == other.id_; } in operator ==() 20 bool operator!=(const ThreadId& other) const { return id_ != other.id_; } in operator !=() 23 bool IsValid() const { return id_ != kInvalidId; } in IsValid() 26 constexpr int ToInteger() const { return id_; } in ToInteger() 44 explicit constexpr ThreadId(int id) noexcept : id_(id) {} in id_() function in v8::internal::ThreadId 48 int id_; member in v8::internal::ThreadId
|
H A D | v8threads.h | 29 void set_id(ThreadId id) { id_ = id; } in set_id() 30 ThreadId id() { return id_; } in id() 41 ThreadId id_; member in v8::internal::ThreadState
|
/third_party/node/deps/v8/src/compiler/ |
H A D | escape-analysis.h | 85 Variable() : id_(kInvalid) {} in Variable() 86 bool operator==(Variable other) const { return id_ == other.id_; } in operator ==() 87 bool operator!=(Variable other) const { return id_ != other.id_; } in operator !=() 88 bool operator<(Variable other) const { return id_ < other.id_; } in operator <() 91 return base::hash_value(v.id_); in hash_value() 94 return os << var.id_; in operator <<() 99 explicit Variable(Id id) : id_(i 100 Id id_; global() member in v8::internal::compiler::Variable 158 Id id_; global() member in v8::internal::compiler::VirtualObject [all...] |
/third_party/node/src/inspector/ |
H A D | worker_inspector.cc | 19 : id_(id), in WorkerStartedRequest() 24 manager->WorkerStarted(id_, info_, waiting_); 33 uint64_t id_; member in node::inspector::__anon15353::WorkerStartedRequest 64 : id_(id), in ParentInspectorHandle() 72 std::unique_ptr<Request>(new WorkerFinishedRequest(id_))); in ~ParentInspectorHandle() 78 new WorkerStartedRequest(id_, url_, worker_thread, waiting, name_)); in WorkerStarted() 135 manager_->SetWaitOnStartForDelegate(id_, wait_on_start); in SetWaitOnStart() 139 manager_->RemoveAttachDelegate(id_); in ~WorkerManagerEventHandle()
|
/third_party/node/src/tracing/ |
H A D | agent.h | 76 inline AgentWriterHandle(Agent* agent, int id) : agent_(agent), id_(id) {} in AgentWriterHandle() 79 int id_ = 0; member in node::tracing::AgentWriterHandle 160 agent_->Disconnect(id_); in reset() 167 id_ = other.id_; in operator =() 177 if (agent_ != nullptr) agent_->Enable(id_, categories); in Enable() 181 if (agent_ != nullptr) agent_->Disable(id_, categories); in Disable() 185 return agent_ != nullptr && id_ == Agent::kDefaultHandleId; in IsDefaultHandle()
|
/third_party/node/deps/v8/include/v8-include/ |
H A D | v8-metrics.h | 177 ContextId() : id_(kEmptyId) {} in ContextId() 179 bool IsEmpty() const { return id_ == kEmptyId; } in IsEmpty() 182 bool operator==(const ContextId& other) const { return id_ == other.id_; } in operator ==() 183 bool operator!=(const ContextId& other) const { return id_ != other.id_; } in operator !=() 189 explicit ContextId(uintptr_t id) : id_(id) {} in ContextId() 192 uintptr_t id_; member in v8::metrics::Recorder::ContextId
|
/third_party/node/deps/v8/include/ |
H A D | v8-metrics.h | 185 ContextId() : id_(kEmptyId) {} in ContextId() 187 bool IsEmpty() const { return id_ == kEmptyId; } in IsEmpty() 190 bool operator==(const ContextId& other) const { return id_ == other.id_; } in operator ==() 191 bool operator!=(const ContextId& other) const { return id_ != other.id_; } in operator !=() 197 explicit ContextId(uintptr_t id) : id_(id) {} in ContextId() 200 uintptr_t id_; member in v8::metrics::Recorder::ContextId
|
/third_party/node/deps/v8/src/torque/ |
H A D | source-positions.h | 21 bool IsValid() const { return id_ != -1; } in IsValid() 22 int operator==(const SourceId& s) const { return id_ == s.id_; } in operator ==() 23 bool operator<(const SourceId& s) const { return id_ < s.id_; } in operator <() 26 explicit SourceId(int id) : id_(id) {} in SourceId() 27 int id_; member in v8::internal::torque::SourceId
|
/third_party/skia/third_party/externals/tint/src/ |
H A D | program_builder.cc | 30 : id_(ProgramID::New()), in ProgramBuilder() 31 ast_(ast_nodes_.Create<ast::Module>(id_, Source{})) {} in ProgramBuilder() 34 : id_(std::move(rhs.id_)), in ProgramBuilder() 51 id_ = std::move(rhs.id_); in operator =() 65 builder.id_ = program->ID(); in Wrap()
|
H A D | program.cc | 37 : id_(std::move(program.id_)), in Program() 52 id_ = builder.ID(); in Program() 87 id_ = std::move(program.id_); in operator =()
|
H A D | program.h | 67 ProgramID ID() const { return id_; } in ID() 179 ProgramID id_; member in tint::Program 185 SymbolTable symbols_{id_};
|
/third_party/node/deps/v8/src/wasm/ |
H A D | stacks.h | 47 PrintF("Delete stack #%d\n", id_); in ~StackMemory() 62 int id() { return id_; } in id() 91 id_ = next_id.fetch_add(1); in StackMemory() 100 PrintF("Allocate stack #%d\n", id_); in StackMemory() 110 id_ = 0; in StackMemory() 118 int id_; member in v8::internal::wasm::StackMemory
|
/third_party/vk-gl-cts/external/openglcts/modules/common/ |
H A D | glcConfigList.hpp | 66 Config(ConfigType type_, int id_, deUint32 surfaceTypes_) : type(type_), id(id_), surfaceTypes(surfaceTypes_) in Config() 81 ExcludedConfig(ConfigType type_, int id_, ExcludeReason reason_) : type(type_), id(id_), reason(reason_) in ExcludedConfig() 96 AOSPConfig(ConfigType type_, int id_, deUint32 surfaceTypes_, deInt32 redBits_, deInt32 greenBits_, in AOSPConfig() 99 , id(id_) in AOSPConfig()
|
/third_party/node/deps/v8/src/heap/ |
H A D | base-space.h | 32 AllocationSpace identity() const { return id_; } in identity() 37 const char* name() const { return GetSpaceName(id_); } in name() 66 : heap_(heap), id_(id), committed_(0), max_committed_(0) {} in BaseSpace() 72 AllocationSpace id_; member in v8::internal::BaseSpace
|
/third_party/skia/third_party/externals/spirv-tools/source/val/ |
H A D | basic_block.h | 51 uint32_t id() const { return id_; } in id() 126 bool operator==(const BasicBlock& other) const { return other.id_ == id_; } in operator ==() 129 bool operator==(const uint32_t& other_id) const { return other_id == id_; } in operator ==() 209 const uint32_t id_; member in spvtools::val::BasicBlock
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/val/ |
H A D | basic_block.h | 51 uint32_t id() const { return id_; } in id() 126 bool operator==(const BasicBlock& other) const { return other.id_ == id_; } in operator ==() 129 bool operator==(const uint32_t& other_id) const { return other_id == id_; } in operator ==() 209 const uint32_t id_; member in spvtools::val::BasicBlock
|
/third_party/node/deps/v8/src/utils/ |
H A D | utils.h | 464 FeedbackSlot() : id_(kInvalidSlot) {} in FeedbackSlot() 465 explicit FeedbackSlot(int id) : id_(id) {} in FeedbackSlot() 467 int ToInt() const { return id_; } in ToInt() 470 bool IsInvalid() const { return id_ == kInvalidSlot; } in IsInvalid() 472 bool operator==(FeedbackSlot that) const { return this->id_ == that.id_; } in operator ==() 480 return FeedbackSlot(id_ + offset); in WithOffset() 486 int id_; member in v8::internal::FeedbackSlot 493 explicit constexpr BytecodeOffset(int id) : id_(id) {} in BytecodeOffset() 494 constexpr int ToInt() const { return id_; } in ToInt() 531 int id_; global() member in v8::internal::BytecodeOffset [all...] |
/third_party/spirv-tools/source/val/ |
H A D | basic_block.h | 51 uint32_t id() const { return id_; } in id() 165 bool operator==(const BasicBlock& other) const { return other.id_ == id_; } in operator ==() 168 bool operator==(const uint32_t& other_id) const { return other_id == id_; } in operator ==() 271 const uint32_t id_; member in spvtools::val::BasicBlock
|
/third_party/ninja/src/ |
H A D | graph.h | 108 int id() const { return id_; }
in id() 109 void set_id(int id) { id_ = id; }
in set_id() 168 int id_ = -1;
member 181 id_(0), outputs_ready_(false), deps_loaded_(false),
in Edge() 218 size_t id_ = 0;
member 269 return a->id_ < b->id_;
in operator ()()
|
/third_party/skia/third_party/externals/spirv-tools/source/opt/ |
H A D | type_manager.h | 213 UnresolvedType(uint32_t i, Type* t) : id_(i), type_(t) {} in UnresolvedType() 216 : id_(that.id_), type_(std::move(that.type_)) {} in UnresolvedType() 218 uint32_t id() { return id_; } in id() 224 uint32_t id_; member in spvtools::opt::analysis::TypeManager::UnresolvedType
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/ |
H A D | type_manager.h | 220 UnresolvedType(uint32_t i, Type* t) : id_(i), type_(t) {} in UnresolvedType() 223 : id_(that.id_), type_(std::move(that.type_)) {} in UnresolvedType() 225 uint32_t id() { return id_; } in id() 231 uint32_t id_; member in spvtools::opt::analysis::TypeManager::UnresolvedType
|
/third_party/spirv-tools/source/opt/ |
H A D | type_manager.h | 224 UnresolvedType(uint32_t i, Type* t) : id_(i), type_(t) {} in UnresolvedType() 227 : id_(that.id_), type_(std::move(that.type_)) {} in UnresolvedType() 229 uint32_t id() { return id_; } in id() 235 uint32_t id_; member in spvtools::opt::analysis::TypeManager::UnresolvedType
|