/third_party/skia/third_party/externals/abseil-cpp/absl/types/ |
H A D | compare.h | 157 : value_(static_cast<compare_internal::value_type>(v)) {} in static_cast() 167 return v.value_ == 0; 171 return v.value_ != 0; 175 return 0 == v.value_; 179 return 0 != v.value_; 183 return v1.value_ == v2.value_; 187 return v1.value_ != v2.value_; 191 compare_internal::value_type value_; member in absl::compare_internal::ord::weak_equality 242 compare_internal::value_type value_; global() member in absl::compare_internal::ord::strong_equality 337 compare_internal::value_type value_; global() member in absl::compare_internal::ord::partial_ordering 429 compare_internal::value_type value_; global() member in absl::compare_internal::ord::weak_ordering 528 compare_internal::value_type value_; global() member in absl::compare_internal::ord::strong_ordering [all...] |
/third_party/node/deps/v8/third_party/inspector_protocol/crdtp/ |
H A D | glue.h | 22 PtrMaybe(std::unique_ptr<T> value) : value_(std::move(value)) {} in PtrMaybe() 23 PtrMaybe(PtrMaybe&& other) noexcept : value_(std::move(other.value_)) {} in move() 24 void operator=(std::unique_ptr<T> value) { value_ = std::move(value); } in operator =() 26 assert(value_); in fromJust() 27 return value_.get(); in fromJust() 30 return value_ ? value_.get() : default_value; in fromMaybe() 32 bool isJust() const { return value_ != nullptr; } in isJust() 34 assert(value_); in takeJust() 39 std::unique_ptr<T> value_; global() member in v8_crdtp::glue::detail::PtrMaybe 69 T value_; global() member in v8_crdtp::glue::detail::ValueMaybe [all...] |
H A D | maybe.h | 22 PtrMaybe(std::unique_ptr<T> value) : value_(std::move(value)) {} in PtrMaybe() 23 PtrMaybe(PtrMaybe&& other) noexcept : value_(std::move(other.value_)) {} in move() 24 void operator=(std::unique_ptr<T> value) { value_ = std::move(value); } in operator =() 26 assert(value_); in fromJust() 27 return value_.get(); in fromJust() 30 return value_ ? value_.get() : default_value; in fromMaybe() 32 bool isJust() const { return value_ != nullptr; } in isJust() 34 assert(value_); in takeJust() 39 std::unique_ptr<T> value_; global() member in v8_crdtp::detail::PtrMaybe 69 T value_; global() member in v8_crdtp::detail::ValueMaybe [all...] |
/third_party/gn/src/gn/ |
H A D | string_atom.h | 69 StringAtom(const StringAtom& other) noexcept : value_(other.value_) {} in value_() function in StringAtom 78 StringAtom(StringAtom&& other) noexcept : value_(other.value_) {} in value_() function in StringAtom 87 bool empty() const { return value_.empty(); } in empty() 90 const std::string& str() const { return value_; } in str() 93 operator std::string_view() const { return {value_}; } in operator std::string_view() 100 return &value_ == &other.value_; in SameAs() 105 return value_ in operator ==() 154 const std::string& value_; global() member in StringAtom [all...] |
H A D | tagged_pointer.h | 18 : value_(reinterpret_cast<uintptr_t>(ptr)) { in TaggedPointer() 21 value_ |= static_cast<uintptr_t>(tag); in TaggedPointer() 24 T* ptr() const { return reinterpret_cast<T*>(value_ & ~kTagMask); } in ptr() 25 unsigned tag() const { return static_cast<unsigned>(value_ & kTagMask); } in tag() 29 value_ = reinterpret_cast<uintptr_t>(ptr) | (value_ & kTagMask); in set_ptr() 34 value_ = (value_ & ~kTagMask) | tag; in set_tag() 37 bool operator==(TaggedPointer other) const { return value_ == other.value_; } in operator ==() 55 uintptr_t value_ = 0; global() member in TaggedPointer [all...] |
H A D | output_file.cc | 10 OutputFile::OutputFile(std::string&& v) : value_(std::move(v)) {} in OutputFile() 12 OutputFile::OutputFile(const std::string& v) : value_(v) {} in OutputFile() 16 : value_(RebasePath(source_file.value(), in OutputFile() 21 DCHECK(!value_.empty()); in AsSourceFile() 22 DCHECK(value_[value_.size() - 1] != '/'); in AsSourceFile() 25 path.append(value_); in AsSourceFile() 30 if (!value_.empty()) { in AsSourceDir() 33 DCHECK(value_[value_ in AsSourceDir() [all...] |
H A D | source_file.h | 60 bool is_null() const { return value_.empty(); } in is_null() 61 const std::string& value() const { return value_.str(); } in value() 101 return value_.SameAs(other.value_); in operator ==() 105 return value_ < other.value_; in operator <() 110 return StringAtom::PtrCompare()(a.value_, b.value_); 115 return StringAtom::PtrHash()(s.value_); 121 return StringAtom::PtrEqual()(a.value_, 130 StringAtom value_; global() member in SourceFile [all...] |
H A D | output_file.h | 28 std::string& value() { return value_; } in value() 29 const std::string& value() const { return value_; } in value() 38 return value_ == other.value_; in operator ==() 41 return value_ != other.value_; in operator !=() 44 return value_ < other.value_; in operator <() 48 std::string value_; member in OutputFile
|
H A D | source_dir.h | 87 bool is_null() const { return value_.empty(); } in is_null() 88 const std::string& value() const { return value_.str(); } in value() 93 const std::string& v = value_.str(); in is_source_absolute() 110 const std::string& v = value_.str(); in SourceAbsoluteWithOneSlash() 119 const std::string& v = value_.str(); in SourceWithNoTrailingSlash() 126 return value_.SameAs(other.value_); in operator ==() 129 bool operator<(const SourceDir& other) const { return value_ < other.value_; } in operator <() 131 size_t hash() const { return value_ 135 StringAtom value_; global() member in SourceDir [all...] |
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/ |
H A D | test_instance_tracker.h | 34 explicit BaseCountedInstance(int x) : value_(x) { in BaseCountedInstance() 39 : value_(x.value_), is_live_(x.is_live_) { in BaseCountedInstance() 45 : value_(x.value_), is_live_(x.is_live_) { in BaseCountedInstance() 56 value_ = x.value_; in operator =() 64 value_ = x.value_; in operator =() 74 return value_ in operator ==() 133 int value_; global() member in absl::test_internal::BaseCountedInstance [all...] |
/third_party/node/deps/v8/src/codegen/ |
H A D | source-position.h | 48 : value_(0) { in SourcePosition() 70 bool IsExternal() const { return IsExternalField::decode(value_); } in IsExternal() 75 return ExternalLineField::decode(value_); in ExternalLine() 80 return ExternalFileIdField::decode(value_); in ExternalFileId() 94 return ScriptOffsetField::decode(value_) - 1; in ScriptOffset() 96 int InliningId() const { return InliningIdField::decode(value_) - 1; } in InliningId() 99 value_ = IsExternalField::update(value_, external); in SetIsExternal() 104 value_ = ExternalLineField::update(value_, lin in SetExternalLine() [all...] |
/third_party/protobuf/src/google/protobuf/ |
H A D | inlined_string_field.h | 159 std::string value_; member in google::protobuf::internal::InlinedStringField 165 : value_(default_value) {} in InlinedStringField() 169 value_ = from.value_; in AssignWithDefault() 173 return value_; in GetNoArena() 177 return &value_; in MutableNoArena() 183 value_.assign(*default_value); in SetAllocatedNoArena() 185 value_.assign(std::move(*value)); in SetAllocatedNoArena() 197 value_.clear(); in ClearNonDefaultToEmptyNoArena() 202 value_ in ClearToDefaultNoArena() [all...] |
H A D | wrappers.pb.cc | 191 PROTOBUF_FIELD_OFFSET(PROTOBUF_NAMESPACE_ID::DoubleValue, value_), 197 PROTOBUF_FIELD_OFFSET(PROTOBUF_NAMESPACE_ID::FloatValue, value_), 203 PROTOBUF_FIELD_OFFSET(PROTOBUF_NAMESPACE_ID::Int64Value, value_), 209 PROTOBUF_FIELD_OFFSET(PROTOBUF_NAMESPACE_ID::UInt64Value, value_), 215 PROTOBUF_FIELD_OFFSET(PROTOBUF_NAMESPACE_ID::Int32Value, value_), 221 PROTOBUF_FIELD_OFFSET(PROTOBUF_NAMESPACE_ID::UInt32Value, value_), 227 PROTOBUF_FIELD_OFFSET(PROTOBUF_NAMESPACE_ID::BoolValue, value_), 233 PROTOBUF_FIELD_OFFSET(PROTOBUF_NAMESPACE_ID::StringValue, value_), 239 PROTOBUF_FIELD_OFFSET(PROTOBUF_NAMESPACE_ID::BytesValue, value_), 321 value_ in DoubleValue() [all...] |
/third_party/node/deps/v8/include/v8-include/cppgc/internal/ |
H A D | member-storage.h | 78 V8_INLINE CompressedPointer() : value_(0u) {} in CompressedPointer() 80 : value_(Compress(ptr)) {} in CompressedPointer() 81 V8_INLINE explicit CompressedPointer(std::nullptr_t) : value_(0u) {} in CompressedPointer() 83 : value_(kCompressedSentinel) {} in CompressedPointer() 85 V8_INLINE const void* Load() const { return Decompress(value_); } in Load() 88 reinterpret_cast<const std::atomic<IntegralType>&>(value_).load( in LoadAtomic() 92 V8_INLINE void Store(const void* ptr) { value_ = Compress(ptr); } in Store() 94 reinterpret_cast<std::atomic<IntegralType>&>(value_).store( in StoreAtomic() 98 V8_INLINE void Clear() { value_ = 0u; } in Clear() 99 V8_INLINE bool IsCleared() const { return !value_; } in IsCleared() 178 IntegralType value_; global() member in cppgc::internal::final [all...] |
/third_party/node/deps/v8/src/objects/ |
H A D | property-details.h | 271 : value_(KindField::encode(kind) | in PropertyDetails() 285 : value_(KindField::encode(kind) | in PropertyDetails() 297 : value_( in PropertyDetails() 310 return value_ == other.value_; in operator ==() 314 return value_ != other.value_; in operator !=() 317 int pointer() const { return DescriptorPointer::decode(value_); } in pointer() 320 return PropertyDetails(value_, i); in set_pointer() 325 details.value_ in set_cell_type() [all...] |
/third_party/node/deps/v8/src/heap/base/ |
H A D | active-system-pages.cc | 46 const bitset_t added_pages = ~value_ & mask; in Add() 47 value_ |= mask; in Add() 52 DCHECK_EQ(~value_ & updated_value.value_, 0); in Reduce() 53 const bitset_t removed_pages(value_ & ~updated_value.value_); in Reduce() 54 value_ = updated_value.value_; in Reduce() 59 const size_t removed_pages = value_.count(); in Clear() 60 value_ in Clear() [all...] |
/third_party/libabigail/include/ |
H A D | abg-cxx-compat.h | 41 T value_; 44 optional() : has_value_(false), value_() {} 45 optional(const T& value) : has_value_(true), value_(value) {} 58 return value_; 66 return value_; 71 { return value_; } 75 { return value_; } 79 { return &value_; } 83 { return &value_; } 89 value_ [all...] |
/third_party/skia/third_party/externals/tint/src/inspector/ |
H A D | scalar.cc | 23 value_.b = val; in Scalar() 27 value_.u = val; in Scalar() 31 value_.i = val; in Scalar() 35 value_.f = val; in Scalar() 59 return value_.b; in AsBool() 63 return value_.u; in AsU32() 67 return value_.i; in AsI32() 71 return value_.f; in AsFloat()
|
/third_party/node/deps/v8/src/heap/ |
H A D | progress-bar.h | 28 void Initialize() { value_ = kDisabledSentinel; } in Initialize() 29 void Enable() { value_ = 0; } in Enable() 31 return value_.load(std::memory_order_acquire) != kDisabledSentinel; in IsEnabled() 36 return value_.load(std::memory_order_acquire); in Value() 42 return value_.compare_exchange_strong(old_value, new_value, in TrySetNewValue() 48 value_.store(0, std::memory_order_release); in ResetIfEnabled() 55 std::atomic<size_t> value_; member in v8::internal::final
|
/third_party/protobuf/src/google/protobuf/stubs/ |
H A D | statusor.h | 160 T value_; member in google::protobuf::util::StatusOr 211 value_ = value; in StatusOr() 217 : status_(other.status_), value_(other.value_) { in StatusOr() 223 value_ = other.value_; in operator =() 230 : status_(other.status_), value_(other.status_.ok() ? other.value_ : T()) { in StatusOr() 237 if (status_.ok()) value_ = other.value_; in operator =() [all...] |
/third_party/node/deps/v8/src/compiler/backend/ |
H A D | instruction.h | 61 Kind kind() const { return KindField::decode(value_); } in kind() 118 return this->value_ == that.value_; in Equals() 122 return this->value_ < that.value_; in Compare() 147 explicit InstructionOperand(Kind kind) : value_(KindField::encode(kind)) {} in InstructionOperand() 153 uint64_t value_; 207 value_ |= BasicPolicyField::encode(EXTENDED_POLICY); in UnallocatedOperand() 208 value_ |= ExtendedPolicyField::encode(policy); in UnallocatedOperand() 209 value_ | in UnallocatedOperand() 1187 int64_t value_; global() member in v8::internal::compiler::final [all...] |
/third_party/protobuf/conformance/third_party/jsoncpp/ |
H A D | jsoncpp.cpp | 2724 value_.int_ = 0; in Value() 2727 value_.real_ = 0.0; in Value() 2730 value_.string_ = 0; in Value() 2734 value_.map_ = new ObjectValues(); in Value() 2737 value_.bool_ = false; in Value() 2746 value_.int_ = value; in Value() 2751 value_.uint_ = value; in Value() 2756 value_.int_ = value; in Value() 2760 value_.uint_ = value; in Value() 2766 value_ in Value() [all...] |
/third_party/skia/third_party/externals/spirv-headers/tools/buildHeaders/jsoncpp/dist/ |
H A D | jsoncpp.cpp | 2700 value_.int_ = 0; 2703 value_.real_ = 0.0; 2706 value_.string_ = 0; 2710 value_.map_ = new ObjectValues(); 2713 value_.bool_ = false; 2722 value_.int_ = value; 2727 value_.uint_ = value; 2732 value_.int_ = value; 2736 value_.uint_ = value; 2742 value_ [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Headers/tools/buildHeaders/jsoncpp/dist/ |
H A D | jsoncpp.cpp | 2700 value_.int_ = 0; 2703 value_.real_ = 0.0; 2706 value_.string_ = 0; 2710 value_.map_ = new ObjectValues(); 2713 value_.bool_ = false; 2722 value_.int_ = value; 2727 value_.uint_ = value; 2732 value_.int_ = value; 2736 value_.uint_ = value; 2742 value_ [all...] |
/third_party/spirv-headers/tools/buildHeaders/jsoncpp/dist/ |
H A D | jsoncpp.cpp | 2700 value_.int_ = 0; 2703 value_.real_ = 0.0; 2706 value_.string_ = 0; 2710 value_.map_ = new ObjectValues(); 2713 value_.bool_ = false; 2722 value_.int_ = value; 2727 value_.uint_ = value; 2732 value_.int_ = value; 2736 value_.uint_ = value; 2742 value_ [all...] |