Home
last modified time | relevance | path

Searched refs:Maybe (Results 1 – 25 of 118) sorted by relevance

12345

/external/deqp/framework/common/
DtcuMaybe.hpp34 class Maybe class
37 Maybe (void);
38 ~Maybe (void);
40 Maybe (const T& val);
41 Maybe<T>& operator= (const T& val);
43 Maybe (const Maybe<T>& other);
44 Maybe<T>& operator= (const Maybe<T>& other);
63 Maybe<T> nothing (void) in nothing()
65 return Maybe<T>(); in nothing()
69 Maybe<T> just (const T& value) in just()
[all …]
/external/deqp/external/vulkancts/framework/vulkan/
DvkQueryUtil.hpp61 tcu::Maybe<deUint32> minVersion;
62 tcu::Maybe<deUint32> maxVersion;
65 tcu::Maybe<deUint32> minVersion_ = tcu::nothing<deUint32>(), in RequiredExtension()
66 tcu::Maybe<deUint32> maxVersion_ = tcu::nothing<deUint32>()) in RequiredExtension()
76 tcu::Maybe<deUint32> minSpecVersion;
77 tcu::Maybe<deUint32> maxSpecVersion;
78 tcu::Maybe<deUint32> minImplVersion;
79 tcu::Maybe<deUint32> maxImplVersion;
82 tcu::Maybe<deUint32> minSpecVersion_ = tcu::nothing<deUint32>(), in RequiredLayer()
83 tcu::Maybe<deUint32> maxSpecVersion_ = tcu::nothing<deUint32>(), in RequiredLayer()
[all …]
/external/deqp/modules/gles31/functional/
Des31fDrawBuffersIndexedTests.cpp69 using tcu::Maybe;
163 BlendState (const Maybe<bool>& enableBlend_, in BlendState()
164 const Maybe<Either<BlendEq, SeparateBlendEq> >& blendEq_, in BlendState()
165 const Maybe<Either<BlendFunc, SeparateBlendFunc> >& blendFunc_, in BlendState()
166 const Maybe<BVec4>& colorMask_) in BlendState()
179 Maybe<bool> enableBlend;
180 Maybe<Either<BlendEq, SeparateBlendEq> > blendEq;
181 Maybe<Either<BlendFunc, SeparateBlendFunc> > blendFunc;
182 Maybe<BVec4> colorMask;
1514 Maybe<Either<BlendFunc, SeparateBlendFunc> >(BlendFunc(GL_ONE, GL_ONE)), in createDiffTest()
[all …]
/external/clang/unittests/Driver/
DMultilibTest.cpp185 MS.Maybe(Multilib("64").flag("+m64")); in TEST()
200 MS.Maybe(Multilib("sof").flag("+sof")); in TEST()
201 MS.Maybe(Multilib("el").flag("+EL")); in TEST()
242 MS.Maybe(Multilib("one")); in TEST()
243 MS.Maybe(Multilib("two")); in TEST()
244 MS.Maybe(Multilib("three")); in TEST()
258 MS.Maybe(Multilib("orange")); in TEST()
259 MS.Maybe(Multilib("pear")); in TEST()
260 MS.Maybe(Multilib("plum")); in TEST()
287 .Maybe(Multilib("64").flag("+m64")); in TEST()
[all …]
/external/v8/src/runtime/
Druntime-interpreter.cc19 Maybe<bool> result = Object::Equals(x, y); in RUNTIME_FUNCTION()
33 Maybe<bool> result = Object::Equals(x, y); in RUNTIME_FUNCTION()
47 Maybe<bool> result = Object::LessThan(x, y); in RUNTIME_FUNCTION()
61 Maybe<bool> result = Object::GreaterThan(x, y); in RUNTIME_FUNCTION()
75 Maybe<bool> result = Object::LessThanOrEqual(x, y); in RUNTIME_FUNCTION()
89 Maybe<bool> result = Object::GreaterThanOrEqual(x, y); in RUNTIME_FUNCTION()
Druntime-object.cc121 Maybe<bool> Runtime::DeleteObjectProperty(Isolate* isolate, in DeleteObjectProperty()
215 Maybe<PropertyAttributes> maybe = JSObject::GetPropertyAttributes(&it); in GetOwnProperty()
285 Maybe<bool> found = JSReceiver::GetOwnPropertyDescriptor( in RUNTIME_FUNCTION()
477 Maybe<PropertyAttributes> maybe = JSReceiver::GetPropertyAttributes(&it); in RUNTIME_FUNCTION()
506 Maybe<PropertyAttributes> maybe = JSReceiver::GetPropertyAttributes(&it); in RUNTIME_FUNCTION()
570 Maybe<bool> result = in DeleteProperty()
600 Maybe<bool> maybe = JSReceiver::HasOwnProperty(object, key); in HasOwnPropertyImplementation()
640 Maybe<bool> maybe = Nothing<bool>(); in RUNTIME_FUNCTION()
668 Maybe<bool> result = in RUNTIME_FUNCTION()
698 Maybe<bool> maybe = JSReceiver::HasProperty(receiver, name); in RUNTIME_FUNCTION()
[all …]
Druntime-forin.cc34 Maybe<bool> result = JSReceiver::HasProperty(receiver, name); in RUNTIME_FUNCTION()
59 Maybe<bool> result = JSReceiver::HasProperty(receiver, name); in RUNTIME_FUNCTION()
/external/clang/include/clang/Analysis/Analyses/
DUninitializedValues.h72 Maybe, enumerator
90 !branch_empty() ? Sometimes : Maybe; in getKind()
/external/v8/src/
Dobjects.h1055 MUST_USE_RESULT static Maybe<bool> IsArray(Handle<Object> object);
1127 MUST_USE_RESULT static Maybe<ComparisonResult> Compare(
1131 MUST_USE_RESULT static Maybe<bool> Equals(Handle<Object> x, Handle<Object> y);
1219 MUST_USE_RESULT static inline Maybe<bool> GreaterThan(
1221 MUST_USE_RESULT static inline Maybe<bool> GreaterThanOrEqual(
1223 MUST_USE_RESULT static inline Maybe<bool> LessThan(
1225 MUST_USE_RESULT static inline Maybe<bool> LessThanOrEqual(
1249 MUST_USE_RESULT static Maybe<bool> SetProperty(LookupIterator* it,
1258 MUST_USE_RESULT static Maybe<bool> SetSuperProperty(
1267 MUST_USE_RESULT static Maybe<bool> CannotCreateProperty(
[all …]
Dcontexts.cc149 static Maybe<bool> UnscopableLookup(LookupIterator* it) { in UnscopableLookup()
152 Maybe<bool> found = JSReceiver::HasProperty(it); in UnscopableLookup()
276 Maybe<PropertyAttributes> maybe = Nothing<PropertyAttributes>(); in Lookup()
286 Maybe<bool> found = UnscopableLookup(&it); in Lookup()
Dproperty-descriptor.cc23 Maybe<bool> has_property = JSReceiver::HasProperty(&it); in GetPropertyIfPresent()
107 Maybe<bool> result = JSObject::CreateDataProperty(&it, value); in CreateDataProperty()
Dobjects.cc262 Maybe<ComparisonResult> Object::Compare(Handle<Object> x, Handle<Object> y, in Compare()
300 Maybe<bool> Object::Equals(Handle<Object> x, Handle<Object> y) { in Equals()
626 Maybe<bool> Object::IsArray(Handle<Object> object) { in IsArray()
743 Maybe<bool> JSReceiver::HasProperty(LookupIterator* it) { in HasProperty()
754 Maybe<PropertyAttributes> result = in HasProperty()
762 Maybe<PropertyAttributes> result = in HasProperty()
874 Maybe<bool> target_found = in GetProperty()
1114 Maybe<bool> is_extensible = JSReceiver::IsExtensible(target); in GetPrototype()
1196 Maybe<bool> Object::SetPropertyWithAccessor(LookupIterator* it, in SetPropertyWithAccessor()
1271 Maybe<bool> Object::SetPropertyWithDefinedSetter(Handle<Object> receiver, in SetPropertyWithDefinedSetter()
[all …]
/external/v8/include/
Dv8.h85 class Maybe; variable
1475 V8_WARN_UNUSED_RESULT Maybe<int> GetLineNumber(Local<Context> context) const;
1494 V8_WARN_UNUSED_RESULT Maybe<int> GetStartColumn(Local<Context> context) const;
1501 V8_WARN_UNUSED_RESULT Maybe<int> GetEndColumn(Local<Context> context) const;
2018 V8_WARN_UNUSED_RESULT Maybe<bool> BooleanValue(Local<Context> context) const;
2019 V8_WARN_UNUSED_RESULT Maybe<double> NumberValue(Local<Context> context) const;
2020 V8_WARN_UNUSED_RESULT Maybe<int64_t> IntegerValue(
2022 V8_WARN_UNUSED_RESULT Maybe<uint32_t> Uint32Value(
2024 V8_WARN_UNUSED_RESULT Maybe<int32_t> Int32Value(Local<Context> context) const;
2034 V8_WARN_UNUSED_RESULT Maybe<bool> Equals(Local<Context> context,
[all …]
/external/v8/src/compiler/
Dtyper.cc53 DCHECK(!truncating_to_zero->Maybe(Type::Integral32())); in Typer()
393 if (type->Is(Type::Primitive()) && !type->Maybe(Type::Receiver())) { in ToPrimitive()
438 if (type->Maybe(Type::Symbol())) return Type::Name(); in ToName()
471 if (!type->Maybe(Type::Undetectable())) return Type::DetectableReceiver(); in ToObject()
701 if (!JSType(lhs)->Maybe(JSType(rhs))) return t->singleton_false_; in JSStrictEqualTyper()
708 !lhs->Maybe(rhs)) { in JSStrictEqualTyper()
734 if (lhs->Maybe(Type::String()) && rhs->Maybe(Type::String())) { in JSCompareTyper()
760 if (lhs->Maybe(Type::NaN()) || rhs->Maybe(Type::NaN())) { in JSCompareTyper()
984 if (lhs->Maybe(Type::String()) || rhs->Maybe(Type::String())) { in JSAddTyper()
1055 bool maybe_nan = (lhs->Maybe(t->cache_.kSingletonZero) && in JSMultiplyRanger()
[all …]
Dbranch-elimination.cc57 Maybe<bool> condition_value = from_input->LookupCondition(condition); in ReduceBranch()
237 Maybe<bool> BranchElimination::ControlPathConditions::LookupCondition( in LookupCondition()
/external/chromium-trace/catapult/third_party/WebOb/docs/pycon2011/
Drequest_table.rst86 args cached_property Maybe maps to params
89 values cached_property Maybe maps to params
/external/v8/test/cctest/compiler/
Dtest-run-jsexceptions.cc53 v8::Maybe<bool> t = v8::Just(true); in TEST()
76 v8::Maybe<bool> t = v8::Just(true); in TEST()
/external/deqp/external/vulkancts/modules/vulkan/
DvktRenderPassTests.cpp58 using tcu::Maybe;
1432 const Maybe<RenderQuad>& renderQuad, in SubpassRenderInfo()
1434 const Maybe<DepthStencilClear>& depthStencilClear) in SubpassRenderInfo()
1461 const Maybe<RenderQuad>& getRenderQuad (void) const { return m_renderQuad; } in getRenderQuad()
1463 …const Maybe<DepthStencilClear>& getDepthStencilClear (void) const { return m_depthStencilClear;… in getDepthStencilClear()
1469Maybe<VkImageLayout> getDepthStencilAttachmentLayout (void) const { return m_depthStencilAttach… in getDepthStencilAttachmentLayout()
1470Maybe<deUint32> getDepthStencilAttachmentIndex (void) const { return m_depthStencilAttachment… in getDepthStencilAttachmentIndex()
1471 …const Maybe<Attachment>& getDepthStencilAttachment (void) const { return m_depthStencilAttachme… in getDepthStencilAttachment()
1481 Maybe<RenderQuad> m_renderQuad;
1483 Maybe<DepthStencilClear> m_depthStencilClear;
[all …]
/external/v8/test/cctest/
Dtest-types.cc157 CHECK(type1->Maybe(type2)); in CheckOverlap()
158 CHECK(type2->Maybe(type1)); in CheckOverlap()
164 CHECK(!type1->Maybe(type2)); in CheckDisjoint()
165 CHECK(!type2->Maybe(type1)); in CheckDisjoint()
620 of_type->Is(type) || type->Maybe(const_type)); in Of()
662 nowof_type->NowIs(type) || type->Maybe(const_type)); in NowOf()
675 nowof_type->Is(type) || type->Maybe(const_type)); in NowOf()
1221 void Maybe() { in Maybe() function
1225 CHECK(type->Maybe(T.Any) == type->IsInhabited()); in Maybe()
1231 CHECK(!type->Maybe(T.None)); in Maybe()
[all …]
/external/ltrace/sysdeps/linux-gnu/
DREADME11 * NOTE: This does not currently work for cross-compilers; Maybe
/external/dnsmasq/contrib/try-all-ns/
DREADME-2.475 Maybe the patch in question is not acceptible
/external/skia/tools/
Dtsan.supp12 # Maybe because it's diagnosed as a use-after-free, not as a race?
/external/chromium-trace/catapult/third_party/Paste/docs/
Dfuture.txt93 Maybe ScriptTest?
102 Maybe this should be moved to paste.script (i.e., paster serve)
/external/v8/src/ic/
Dic-state.h121 Maybe<int> fixed_right_arg() const { return fixed_right_arg_; } in fixed_right_arg()
161 Maybe<int> fixed_right_arg_;
/external/llvm/tools/gold/
Dgold-plugin.cpp598 StringSet<> &Internalize, StringSet<> &Maybe, in getModuleForFile() argument
722 Maybe.insert(GV->getName()); in getModuleForFile()
899 StringSet<> Maybe; in allSymbolsReadHook() local
904 Context, F, InputFile.file(), ApiFile, Internalize, Maybe, Keep); in allSymbolsReadHook()
920 for (const auto &Name : Maybe) { in allSymbolsReadHook()

12345