Home
last modified time | relevance | path

Searched refs:value_ (Results 1 - 25 of 336) sorted by relevance

12345678910>>...14

/third_party/skia/third_party/externals/abseil-cpp/absl/types/
H A Dcompare.h157 : 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 Dglue.h22 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 Dmaybe.h22 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...]
/kernel/linux/linux-6.6/tools/cgroup/
H A Diocost_monitor.py43 plid = prog['blkcg_policy_iocost'].plid.value_()
47 IOC_RUNNING = prog['IOC_RUNNING'].value_()
48 WEIGHT_ONE = prog['WEIGHT_ONE'].value_()
49 VTIME_PER_SEC = prog['VTIME_PER_SEC'].value_()
50 VTIME_PER_USEC = prog['VTIME_PER_USEC'].value_()
51 AUTOP_SSD_FAST = prog['AUTOP_SSD_FAST'].value_()
52 AUTOP_SSD_DFL = prog['AUTOP_SSD_DFL'].value_()
53 AUTOP_SSD_QD1 = prog['AUTOP_SSD_QD1'].value_()
54 AUTOP_HDD = prog['AUTOP_HDD'].value_()
74 not (blkcg.css.flags.value_()
[all...]
/third_party/gn/src/gn/
H A Dstring_atom.h69 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 Dtagged_pointer.h18 : 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 Doutput_file.cc10 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 Doutput_file.h28 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 Dsource_file.h60 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 Dsource_dir.h87 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...]
/kernel/linux/linux-5.10/tools/cgroup/
H A Diocost_monitor.py43 plid = prog['blkcg_policy_iocost'].plid.value_()
47 IOC_RUNNING = prog['IOC_RUNNING'].value_()
48 WEIGHT_ONE = prog['WEIGHT_ONE'].value_()
49 VTIME_PER_SEC = prog['VTIME_PER_SEC'].value_()
50 VTIME_PER_USEC = prog['VTIME_PER_USEC'].value_()
51 AUTOP_SSD_FAST = prog['AUTOP_SSD_FAST'].value_()
52 AUTOP_SSD_DFL = prog['AUTOP_SSD_DFL'].value_()
53 AUTOP_SSD_QD1 = prog['AUTOP_SSD_QD1'].value_()
54 AUTOP_HDD = prog['AUTOP_HDD'].value_()
69 not (blkcg.css.flags.value_()
[all...]
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/
H A Dtest_instance_tracker.h34 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...]
/drivers/hdf_core/framework/tools/hcs-view/hcsWebView/src/hcs/
H A DNodeTools.js127 node.value_.type_ === DataType.REFERENCE
129 refname = node.value_.value_;
152 for (let n in node.value_) {
153 NodeTools.recursionNode(node.value_[n], callback);
163 for (let i = 0; i < node.value_.length; i++) {
164 if (NodeTools.recursionAll(node.value_[i], callback, isForward)) {
178 for (let i in pn.value_) {
179 if (nameMap.indexOf(pn.value_[i].name_) >= 0) {
180 pn.value_[
[all...]
H A DGenerator.js54 ret.value_ = [];
57 ret.value_.push(this.astToObj(child, ret));
79 ret.value_ = node.integerValue_;
83 ret.value_ = node.stringValue_;
89 ret.value_ = this.astToObj(node.child_, ret);
92 ret.value_ = [];
95 ret.value_.push(this.astToObj(child, ret));
102 ret.value_ = node.stringValue_;
105 ret.value_ = null;
109 ret.value_
[all...]
H A DModifyNode.js27 for (let i in node.value_) {
28 if (node.value_[i].name_ === name) {
75 node.value_.push(newAttr);
77 newAttr.value_.parent_ = newAttr;
93 node.value_.push(newNode);
106 for (let i in parent.value_) {
107 if (parent.value_[i] === node) {
108 parent.value_.splice(i, 1);
121 for (let i in parent.value_) {
122 let pn = parent.value_[
[all...]
/third_party/node/deps/v8/src/codegen/
H A Dsource-position.h48 : 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 Dinlined_string_field.h159 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...]
/third_party/node/deps/v8/include/v8-include/cppgc/internal/
H A Dmember-storage.h78 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 Dproperty-details.h271 : 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 Dactive-system-pages.cc46 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 Dabg-cxx-compat.h41 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 Dscalar.cc23 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 Dprogress-bar.h28 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 Dstatusor.h160 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...]
/drivers/hdf_core/framework/tools/hdi-gen/ast/
H A Dast_attribute.h26 explicit ASTAttr(Attribute value = ASTAttr::NONE) : value_(value) {} in ASTAttr()
34 value_ |= value; in SetValue()
39 return value_; in GetValue()
44 return (value_ & attr) != 0; in HasValue()
50 Attribute value_; member in OHOS::HDI::ASTAttr
60 explicit ASTParamAttr(ParamAttr value) : ASTNode(), value_(value) {} in ASTParamAttr()
67 ParamAttr value_; member in OHOS::HDI::ASTParamAttr

Completed in 10 milliseconds

12345678910>>...14