/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/ |
H A D | serial_utils.h | 24 constexpr ResourceSerial() : mValue(kDirty) {} in ResourceSerial() 25 explicit constexpr ResourceSerial(uintptr_t value) : mValue(value) {} in ResourceSerial() 26 constexpr bool operator==(ResourceSerial other) const { return mValue == other.mValue; } in operator ==() 27 constexpr bool operator!=(ResourceSerial other) const { return mValue != other.mValue; } in operator !=() 29 void dirty() { mValue = kDirty; } in dirty() 30 void clear() { mValue = kEmpty; } in clear() 32 constexpr bool valid() const { return mValue != kEmpty && mValue ! 39 uintptr_t mValue; global() member in rx::ResourceSerial 78 uint64_t mValue; global() member in rx::final [all...] |
/third_party/skia/third_party/externals/dawn/src/common/ |
H A D | RefBase.h | 39 RefBase() : mValue(Traits::kNullValue) { in RefBase() 43 Release(mValue); in ~RefBase() 56 RefBase(T value) : mValue(value) { in RefBase() 66 RefBase(const RefBase<T, Traits>& other) : mValue(other.mValue) { in RefBase() 67 Reference(other.mValue); in RefBase() 71 Set(other.mValue); in operator =() 76 mValue = other.Detach(); in RefBase() 81 Release(mValue); in operator =() 82 mValue in operator =() 180 T mValue; global() member in RefBase [all...] |
H A D | TypedInteger.h | 68 T mValue; variable 71 constexpr TypedIntegerImpl() : mValue(0) { in TypedIntegerImpl() 82 explicit constexpr TypedIntegerImpl(I rhs) : mValue(static_cast<T>(rhs)) { in TypedIntegerImpl() 89 return static_cast<T>(this->mValue); in operator T() 95 return mValue op rhs.mValue; \ 107 ASSERT(this->mValue < std::numeric_limits<T>::max()); in operator ++() 108 ++this->mValue; in operator ++() 115 ASSERT(this->mValue < std::numeric_limits<T>::max()); in operator ++() 116 ++this->mValue; in operator ++() [all...] |
/third_party/skia/third_party/externals/angle2/src/common/ |
H A D | SynchronizedValue.h | 29 ConstStrictLockPtr(const T &value, Lockable &mutex) : mLock(mutex), mValue(value) {} in ConstStrictLockPtr() 31 : mLock(mutex, std::adopt_lock), mValue(value) in mValue() function in angle::ConstStrictLockPtr 35 : mLock(std::move(other.mLock)), mValue(other.mValue) in mValue() function in angle::ConstStrictLockPtr 43 const T *operator->() const { return &mValue; } in operator ->() 44 const T &operator*() const { return mValue; } in operator *() 48 T const &mValue; member in angle::ConstStrictLockPtr 72 T *operator->() { return const_cast<T *>(&this->mValue); } in operator ->() 73 T &operator*() { return const_cast<T &>(this->mValue); } in operator *() 98 ConstUniqueLockPtr(const T &value, Lockable &mutex) : BaseType(mutex), mValue(valu 100 : BaseType(mutex, std::adopt_lock), mValue(value) mValue() function in angle::ConstUniqueLockPtr 103 : BaseType(mutex, std::defer_lock), mValue(value) mValue() function in angle::ConstUniqueLockPtr 106 : BaseType(mutex, std::try_to_lock), mValue(value) mValue() function in angle::ConstUniqueLockPtr 110 : BaseType(std::move(static_cast<BaseType &&>(other))), mValue(other.mValue) mValue() function in angle::ConstUniqueLockPtr 130 T const &mValue; global() member in angle::ConstUniqueLockPtr 354 T &mValue; global() member in angle::SynchronizedValue::DerefValue 377 const T &mValue; global() member in angle::SynchronizedValue::ConstDerefValue 389 os << mValue; save() local 396 is >> mValue; load() local 484 T mValue; global() member in angle::SynchronizedValue [all...] |
H A D | Optional.h | 18 Optional() : mValid(false), mValue(T()) {} in Optional() 20 Optional(const T &valueIn) : mValid(true), mValue(valueIn) {} in Optional() 22 Optional(const Optional &other) : mValid(other.mValid), mValue(other.mValue) {} in Optional() 27 this->mValue = other.mValue; in operator =() 33 mValue = value; in operator =() 40 mValue = std::move(value); in operator =() 49 return std::move(mValue); in release() 55 T &value() { return mValue; } in value() 71 T mValue; global() member [all...] |
H A D | debug.h | 173 FmtHexHelper(const char *prefix, T value) : mPrefix(prefix), mValue(value) {} in FmtHexHelper() 174 explicit FmtHexHelper(T value) : mPrefix(nullptr), mValue(value) {} in FmtHexHelper() 178 T mValue; member in gl::priv::FmtHexHelper 186 return FmtHexAutoSized(os, fmt.mValue); in operator <<()
|
H A D | PackedEnums.h | 47 EnumIterator(E value) : mValue(static_cast<UnderlyingType>(value)) {} in EnumIterator() 50 mValue++; in operator ++() 53 bool operator==(const EnumIterator &other) const { return mValue == other.mValue; } in operator ==() 54 bool operator!=(const EnumIterator &other) const { return mValue != other.mValue; } in operator !=() 55 E operator*() const { return static_cast<E>(mValue); } in operator *() 58 UnderlyingType mValue; member in angle::final
|
/third_party/skia/third_party/externals/angle2/src/common/spirv/ |
H A D | spirv_types.h | 25 BoxedUint32() : mValue{0} {} in BoxedUint32() 26 explicit BoxedUint32(uint32_t value) : mValue{value} {} in BoxedUint32() 30 return T{mValue}; in as() 34 operator uint32_t() const { return mValue.value; } in operator uint32_t() 35 bool operator==(const BoxedUint32 &other) const { return mValue.value == other.mValue.value; } in operator ==() 37 bool valid() const { return static_cast<bool>(mValue.value); } in valid() 40 Helper mValue; member in angle::spirv::BoxedUint32 58 return mValue.value; in operator uint32_t()
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/TranslatorMetalDirect/ |
H A D | SymbolEnv.cpp | 86 TemplateArg::TemplateArg(bool value) : mKind(Kind::Bool), mValue(value) {} in TemplateArg() 88 TemplateArg::TemplateArg(int value) : mKind(Kind::Int), mValue(value) {} in TemplateArg() 90 TemplateArg::TemplateArg(unsigned value) : mKind(Kind::UInt), mValue(value) {} in TemplateArg() 92 TemplateArg::TemplateArg(const TType &value) : mKind(Kind::Type), mValue(value) {} in TemplateArg() 104 return mValue.b == other.mValue.b; in operator ==() 106 return mValue.i == other.mValue.i; in operator ==() 108 return mValue.u == other.mValue in operator ==() [all...] |
H A D | SymbolEnv.h | 107 Value value() const { return mValue; } in value() 111 Value mValue; member in sh::TemplateArg
|
/third_party/skia/third_party/externals/dawn/src/tests/unittests/ |
H A D | ConcurrentCacheTests.cpp | 25 explicit SimpleCachedObject(size_t value) : mValue(value) { in SimpleCachedObject() 29 return mValue; in GetValue() 34 return a->mValue == b->mValue; in operator ()() 40 return obj->mValue; in operator ()() 45 size_t mValue; member in __anon20567::SimpleCachedObject
|
/third_party/skia/third_party/externals/oboe/include/oboe/ |
H A D | ResultWithValue.h | 56 : mValue{} in ResultWithValue() 65 : mValue(value) in ResultWithValue() 82 return mValue; in value() 135 const T mValue; member in oboe::ResultWithValue
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
H A D | ResourceMap.h | 72 IndexAndResource mValue; member in gl::final::final 319 return &mValue; in operator ->() 326 return mValue; in operator *() 334 mValue.first = mFlatIndex; in updateValue() 335 mValue.second = mOrigin.mFlatResources[mFlatIndex]; in updateValue() 339 mValue.first = mHashIndex->first; in updateValue() 340 mValue.second = mHashIndex->second; in updateValue()
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/vulkan/ |
H A D | VulkanFunctions.h | 313 return mValue; in VkResult() 318 constexpr VkResult(::VkResult value) : mValue(value) { in VkResult() 321 ::VkResult mValue; member in dawn_native::vulkan::VkResult
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/ |
H A D | stylo.hpp | 1692 const E mValue; 1696 : mValue(aValue) 1699 constexpr operator E() const { return mValue; } 1703 operator DestinationType() const { return DestinationType(mValue); } 1705 constexpr bool operator !() const { return !bool(mValue); } [all...] |
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/ |
H A D | GLSLTest.cpp | 9218 const std::array<GLfloat, 32> mValue = {{0.5f, 0.0f, 0.0f, 0.0f, 0.0f, 0.5f, 0.0f, 0.0f, 9222 glUniformMatrix4fv(matrixLocation, 2, false, mValue.data());
|