Home
last modified time | relevance | path

Searched defs:Optional (Results 1 – 25 of 34) sorted by relevance

12

/third_party/skia/third_party/externals/angle2/src/common/
DOptional.h16 struct Optional struct
18 Optional() : mValid(false), mValue(T()) {} in Optional() function
20 Optional(const T &valueIn) : mValid(true), mValue(valueIn) {} in Optional() argument
22 Optional(const Optional &other) : mValid(other.mValid), mValue(other.mValue) {} in Optional() function
52 static Optional Invalid() { return Optional(); } in Invalid() argument
58 bool operator==(const Optional &other) const argument
71 T mValue;
/third_party/flutter/skia/third_party/externals/angle2/src/common/
DOptional.h16 struct Optional struct
18 Optional() : mValid(false), mValue(T()) {} in Optional() function
20 Optional(const T &valueIn) : mValid(true), mValue(valueIn) {} in Optional() argument
22 Optional(const Optional &other) : mValid(other.mValid), mValue(other.mValue) {} in Optional() argument
47 static Optional Invalid() { return Optional(); } in Invalid() argument
52 bool operator==(const Optional &other) const argument
65 T mValue;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DOptional.h35 Optional(NoneType) : hasVal(false) {} in Optional() function
36 explicit Optional() : hasVal(false) {} in Optional() function
37 Optional(const T &y) : hasVal(true) { in Optional() function
40 Optional(const Optional &O) : hasVal(O.hasVal) { in Optional() function
45 Optional(T &&y) : hasVal(true) { in Optional() function
48 Optional(Optional<T> &&O) : hasVal(O) { in Optional() function
/third_party/skia/src/core/
DSkRecords.h99 Optional() : fPtr(nullptr) {} in Optional() function
100 Optional(T* ptr) : fPtr(ptr) {} in Optional() function
101 Optional(Optional&& o) : fPtr(o.fPtr) { in Optional() function
DSkImageFilterTypes.h83 static const ParameterSpace<T>* Optional(const T* ptr) { in Optional() function
/third_party/flutter/skia/src/core/
DSkRecords.h93 Optional() : fPtr(nullptr) {} in Optional() function
94 Optional(T* ptr) : fPtr(ptr) {} in Optional() function
95 Optional(Optional&& o) : fPtr(o.fPtr) { in Optional() function
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DOptional.h221 constexpr Optional() {} in Optional() function
222 constexpr Optional(NoneType) {} in Optional() function
224 Optional(const T &y) : Storage(optional_detail::in_place_t{}, y) {} in Optional() function
227 Optional(T &&y) : Storage(optional_detail::in_place_t{}, std::move(y)) {} in Optional() function
DAPInt.h33 template <typename T> class Optional; variable
/third_party/typescript/tests/baselines/reference/
DsubtypingWithObjectMembers5.js88 var Optional; variable
89 (function (Optional) { argument
/third_party/typescript/tests/cases/compiler/
DunspecializedConstraints.ts79 Optional = 1, enumerator
111 Optional = 1, enumerator
/third_party/typescript/tests/cases/conformance/controlFlow/
DtypeGuardsAsAssertions.ts7 export type Optional<a> = Some<a> | None; alias
/third_party/skia/third_party/externals/abseil-cpp/
Dabsl_hardening_test.cc23 TEST(AbslHardeningTest, Optional) { in TEST() argument
/third_party/skia/third_party/externals/abseil-cpp/absl/base/
Doptimization_test.cc81 TEST(PredictTest, Optional) { in TEST() argument
/third_party/abseil-cpp/absl/base/
Doptimization_test.cc81 TEST(PredictTest, Optional) { in TEST() argument
/third_party/skia/third_party/externals/dng_sdk/source/
Ddng_opcodes.h164 bool Optional () const in Optional() function
/third_party/abseil-cpp/absl/types/
Doptional_exception_safety_test.cc37 using Optional = absl::optional<Thrower>; typedef
/third_party/skia/third_party/externals/abseil-cpp/absl/types/
Doptional_exception_safety_test.cc37 using Optional = absl::optional<Thrower>; typedef
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/IR/
DFunction.h42 template <typename T> class Optional; variable
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DCommandLine.h124 Optional = 0x00, // Zero or One occurrence enumerator
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DFunction.h54 template <typename T> class Optional; variable
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DCommandLine.h103 Optional = 0x00, // Zero or One occurrence enumerator
/third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
DType.cs1058 [pbr::OriginalName("CARDINALITY_OPTIONAL")] Optional = 1, enumerator
/third_party/skia/third_party/externals/abseil-cpp/absl/debugging/internal/
Ddemangle.cc333 static bool Optional(bool /*status*/) { return true; } in Optional() function
/third_party/abseil-cpp/absl/hash/
Dhash_test.cc546 TEST(HashValueTest, Optional) { in TEST() argument
/third_party/abseil-cpp/absl/debugging/internal/
Ddemangle.cc333 static bool Optional(bool /*status*/) { return true; } in Optional() function

12