/external/deqp/framework/common/ |
D | tcuMaybe.hpp | 34 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/v8/src/inspector/ |
D | v8-runtime-agent-impl.h | 50 using protocol::Maybe; 62 void evaluate(const String16& expression, Maybe<String16> objectGroup, 63 Maybe<bool> includeCommandLineAPI, Maybe<bool> silent, 64 Maybe<int> executionContextId, Maybe<bool> returnByValue, 65 Maybe<bool> generatePreview, Maybe<bool> userGesture, 66 Maybe<bool> awaitPromise, 68 void awaitPromise(const String16& promiseObjectId, Maybe<bool> returnByValue, 69 Maybe<bool> generatePreview, 73 Maybe<protocol::Array<protocol::Runtime::CallArgument>> optionalArguments, 74 Maybe<bool> silent, Maybe<bool> returnByValue, [all …]
|
D | v8-debugger-agent-impl.h | 28 using protocol::Maybe; 50 int lineNumber, Maybe<String16> optionalURL, 51 Maybe<String16> optionalURLRegex, Maybe<int> optionalColumnNumber, 52 Maybe<String16> optionalCondition, String16*, 57 Maybe<String16> optionalCondition, String16*, 64 Maybe<bool> optionalCaseSensitive, Maybe<bool> optionalIsRegex, 69 Maybe<protocol::Debugger::Location> end, 74 Maybe<bool> dryRun, 75 Maybe<protocol::Array<protocol::Debugger::CallFrame>>* optOutCallFrames, 76 Maybe<bool>* optOutStackChanged, [all …]
|
D | v8-runtime-agent-impl.cc | 120 std::move(wrappedValue), Maybe<protocol::Runtime::ExceptionDetails>()); in thenCallback() 222 Maybe<protocol::Runtime::ExceptionDetails> exceptionDetails; in wrapEvaluateResultAsync() 236 Maybe<int> executionContextId, int* contextId) { in ensureContext() 264 const String16& expression, Maybe<String16> objectGroup, in evaluate() 265 Maybe<bool> includeCommandLineAPI, Maybe<bool> silent, in evaluate() 266 Maybe<int> executionContextId, Maybe<bool> returnByValue, in evaluate() 267 Maybe<bool> generatePreview, Maybe<bool> userGesture, in evaluate() 268 Maybe<bool> awaitPromise, std::unique_ptr<EvaluateCallback> callback) { in evaluate() 329 const String16& promiseObjectId, Maybe<bool> returnByValue, in awaitPromise() 330 Maybe<bool> generatePreview, in awaitPromise() [all …]
|
D | v8-heap-profiler-agent-impl.h | 18 using protocol::Maybe; 31 Response startTrackingHeapObjects(Maybe<bool> trackAllocations) override; 32 Response stopTrackingHeapObjects(Maybe<bool> reportProgress) override; 36 Response takeHeapSnapshot(Maybe<bool> reportProgress) override; 39 const String16& heapSnapshotObjectId, Maybe<String16> objectGroup, 46 Response startSampling(Maybe<double> samplingInterval) override;
|
D | v8-debugger-agent-impl.cc | 32 using protocol::Maybe; 263 int lineNumber, Maybe<String16> optionalURL, in setBreakpointByUrl() 264 Maybe<String16> optionalURLRegex, Maybe<int> optionalColumnNumber, in setBreakpointByUrl() 265 Maybe<String16> optionalCondition, String16* outBreakpointId, in setBreakpointByUrl() 316 Maybe<String16> optionalCondition, String16* outBreakpointId, in setBreakpoint() 364 Maybe<protocol::Debugger::Location> end, in getPossibleBreakpoints() 499 Maybe<bool> optionalCaseSensitive, Maybe<bool> optionalIsRegex, in searchInContent() 517 const String16& scriptId, const String16& newContent, Maybe<bool> dryRun, in setScriptSource() 518 Maybe<protocol::Array<protocol::Debugger::CallFrame>>* newCallFrames, in setScriptSource() 519 Maybe<bool>* stackChanged, Maybe<StackTrace>* asyncStackTrace, in setScriptSource() [all …]
|
D | v8-heap-profiler-agent-impl.cc | 38 protocol::Maybe<bool>()); in ReportProgressValue() 171 startSampling(Maybe<double>(samplingInterval)); in restore() 181 Maybe<bool> trackAllocations) { in startTrackingHeapObjects() 191 Maybe<bool> reportProgress) { in stopTrackingHeapObjects() 215 Response V8HeapProfilerAgentImpl::takeHeapSnapshot(Maybe<bool> reportProgress) { in takeHeapSnapshot() 233 const String16& heapSnapshotObjectId, Maybe<String16> objectGroup, in getObjectByHeapObjectId() 320 Maybe<double> samplingInterval) { in startSampling()
|
D | injected-script.h | 51 using protocol::Maybe; 66 Maybe<protocol::Runtime::ExceptionDetails>*); 94 Maybe<protocol::Runtime::ExceptionDetails>* result); 99 Maybe<protocol::Runtime::ExceptionDetails>*);
|
D | v8-value-copier.h | 17 v8::Maybe<bool> createDataProperty(v8::Local<v8::Context>, 21 v8::Maybe<bool> createDataProperty(v8::Local<v8::Context>, v8::Local<v8::Array>,
|
/external/v8/src/ |
D | value-serializer.h | 56 Maybe<bool> WriteObject(Handle<Object> object) WARN_UNUSED_RESULT; 98 Maybe<bool> ExpandBuffer(size_t required_capacity); 108 Maybe<uint8_t*> ReserveRawBytes(size_t bytes); 115 Maybe<bool> WriteJSReceiver(Handle<JSReceiver> receiver) WARN_UNUSED_RESULT; 116 Maybe<bool> WriteJSObject(Handle<JSObject> object) WARN_UNUSED_RESULT; 117 Maybe<bool> WriteJSObjectSlow(Handle<JSObject> object) WARN_UNUSED_RESULT; 118 Maybe<bool> WriteJSArray(Handle<JSArray> array) WARN_UNUSED_RESULT; 120 Maybe<bool> WriteJSValue(Handle<JSValue> value) WARN_UNUSED_RESULT; 122 Maybe<bool> WriteJSMap(Handle<JSMap> map) WARN_UNUSED_RESULT; 123 Maybe<bool> WriteJSSet(Handle<JSSet> map) WARN_UNUSED_RESULT; [all …]
|
D | keys.h | 46 Maybe<bool> CollectKeys(Handle<JSReceiver> receiver, 48 Maybe<bool> CollectOwnElementIndices(Handle<JSReceiver> receiver, 50 Maybe<bool> CollectOwnPropertyNames(Handle<JSReceiver> receiver, 52 Maybe<bool> CollectAccessCheckInterceptorKeys( 90 Maybe<bool> CollectOwnKeys(Handle<JSReceiver> receiver, 92 Maybe<bool> CollectOwnJSProxyKeys(Handle<JSReceiver> receiver, 94 Maybe<bool> CollectOwnJSProxyTargetKeys(Handle<JSProxy> proxy, 96 Maybe<bool> AddKeysFromJSProxy(Handle<JSProxy> proxy,
|
D | keys.cc | 114 Maybe<bool> found = in FilterProxyKeys() 135 Maybe<bool> KeyAccumulator::AddKeysFromJSProxy(Handle<JSProxy> proxy, in AddKeysFromJSProxy() 152 Maybe<bool> KeyAccumulator::CollectKeys(Handle<JSReceiver> receiver, in CollectKeys() 173 Maybe<bool> result = Just(false); // Dummy initialization. in CollectKeys() 468 Maybe<bool> CollectInterceptorKeysInternal(Handle<JSReceiver> receiver, in CollectInterceptorKeysInternal() 491 Maybe<bool> CollectInterceptorKeys(Handle<JSReceiver> receiver, in CollectInterceptorKeys() 514 Maybe<bool> KeyAccumulator::CollectOwnElementIndices( in CollectOwnElementIndices() 587 Maybe<bool> KeyAccumulator::CollectOwnPropertyNames(Handle<JSReceiver> receiver, in CollectOwnPropertyNames() 641 Maybe<bool> KeyAccumulator::CollectAccessCheckInterceptorKeys( in CollectAccessCheckInterceptorKeys() 666 Maybe<bool> KeyAccumulator::CollectOwnKeys(Handle<JSReceiver> receiver, in CollectOwnKeys() [all …]
|
D | value-serializer.cc | 243 Maybe<uint8_t*> ValueSerializer::ReserveRawBytes(size_t bytes) { in ReserveRawBytes() 256 Maybe<bool> ValueSerializer::ExpandBuffer(size_t required_capacity) { in ExpandBuffer() 307 Maybe<bool> ValueSerializer::WriteObject(Handle<Object> object) { in WriteObject() 408 Maybe<bool> ValueSerializer::WriteJSReceiver(Handle<JSReceiver> receiver) { in WriteJSReceiver() 476 Maybe<bool> ValueSerializer::WriteJSObject(Handle<JSObject> object) { in WriteJSObject() 523 Maybe<bool> ValueSerializer::WriteJSObjectSlow(Handle<JSObject> object) { in WriteJSObjectSlow() 538 Maybe<bool> ValueSerializer::WriteJSArray(Handle<JSArray> array) { in WriteJSArray() 654 Maybe<bool> ValueSerializer::WriteJSValue(Handle<JSValue> value) { in WriteJSValue() 680 Maybe<bool> ValueSerializer::WriteJSMap(Handle<JSMap> map) { in WriteJSMap() 711 Maybe<bool> ValueSerializer::WriteJSSet(Handle<JSSet> set) { in WriteJSSet() [all …]
|
D | objects.h | 1162 MUST_USE_RESULT static Maybe<bool> IsArray(Handle<Object> object); 1210 MUST_USE_RESULT static Maybe<ComparisonResult> Compare(Handle<Object> x, 1214 MUST_USE_RESULT static Maybe<bool> Equals(Handle<Object> x, Handle<Object> y); 1319 MUST_USE_RESULT static inline Maybe<bool> GreaterThan(Handle<Object> x, 1321 MUST_USE_RESULT static inline Maybe<bool> GreaterThanOrEqual( 1323 MUST_USE_RESULT static inline Maybe<bool> LessThan(Handle<Object> x, 1325 MUST_USE_RESULT static inline Maybe<bool> LessThanOrEqual(Handle<Object> x, 1357 MUST_USE_RESULT static Maybe<bool> SetProperty(LookupIterator* it, 1370 MUST_USE_RESULT static Maybe<bool> SetSuperProperty( 1374 MUST_USE_RESULT static Maybe<bool> CannotCreateProperty( [all …]
|
/external/deqp/modules/gles31/functional/ |
D | es31fDrawBuffersIndexedTests.cpp | 69 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/deqp/external/vulkancts/framework/vulkan/ |
D | vkQueryUtil.hpp | 75 tcu::Maybe<deUint32> minVersion; 76 tcu::Maybe<deUint32> maxVersion; 79 tcu::Maybe<deUint32> minVersion_ = tcu::nothing<deUint32>(), in RequiredExtension() 80 tcu::Maybe<deUint32> maxVersion_ = tcu::nothing<deUint32>()) in RequiredExtension() 90 tcu::Maybe<deUint32> minSpecVersion; 91 tcu::Maybe<deUint32> maxSpecVersion; 92 tcu::Maybe<deUint32> minImplVersion; 93 tcu::Maybe<deUint32> maxImplVersion; 96 tcu::Maybe<deUint32> minSpecVersion_ = tcu::nothing<deUint32>(), in RequiredLayer() 97 tcu::Maybe<deUint32> maxSpecVersion_ = tcu::nothing<deUint32>(), in RequiredLayer() [all …]
|
/external/v8/src/compiler/ |
D | operation-typer.cc | 25 DCHECK(!truncating_to_zero->Maybe(Type::Integral32())); in OperationTyper() 231 bool maybe_nan = (lhs->Maybe(cache_.kSingletonZero) && in MultiplyRanger() 233 (rhs->Maybe(cache_.kSingletonZero) && in MultiplyRanger() 236 bool maybe_minuszero = (lhs->Maybe(cache_.kSingletonZero) && rmin < 0) || in MultiplyRanger() 237 (rhs->Maybe(cache_.kSingletonZero) && lmin < 0); in MultiplyRanger() 278 bool const maybe_nan = type->Maybe(Type::NaN()); in NumberAbs() 279 bool const maybe_minuszero = type->Maybe(Type::MinusZero()); in NumberAbs() 409 bool maybe_minuszero = type->Maybe(Type::MinusZero()); in NumberSign() 410 bool maybe_nan = type->Maybe(Type::NaN()); in NumberSign() 506 if (type->Maybe(Type::NaN())) return Type::Number(); in NumberSilenceNaN() [all …]
|
D | effect-control-linearizer.h | 114 Maybe<Node*> LowerFloat64RoundUp(Node* node); 115 Maybe<Node*> LowerFloat64RoundDown(Node* node); 116 Maybe<Node*> LowerFloat64RoundTiesEven(Node* node); 117 Maybe<Node*> LowerFloat64RoundTruncate(Node* node);
|
D | typer.cc | 423 if (type->Is(Type::Primitive()) && !type->Maybe(Type::Receiver())) { in ToPrimitive() 473 if (type->Maybe(Type::Symbol())) return Type::Name(); in ToName() 489 if (!type->Maybe(Type::OtherUndetectable())) { in ToObject() 508 if (!type->Maybe(Type::DetectableCallable())) return t->singleton_false_; in ObjectIsDetectableCallable() 514 if (!type->Maybe(Type::NonCallable())) return t->singleton_false_; in ObjectIsNonCallable() 520 if (!type->Maybe(Type::Number())) return t->singleton_false_; in ObjectIsNumber() 527 if (!type->Maybe(Type::Receiver())) return t->singleton_false_; in ObjectIsReceiver() 533 if (!type->Maybe(Type::SignedSmall())) return t->singleton_false_; in ObjectIsSmi() 539 if (!type->Maybe(Type::String())) return t->singleton_false_; in ObjectIsString() 545 if (!type->Maybe(Type::Undetectable())) return t->singleton_false_; in ObjectIsUndetectable() [all …]
|
/external/clang/unittests/Driver/ |
D | MultilibTest.cpp | 185 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/builtins/ |
D | builtins-reflect.cc | 44 Maybe<bool> result = in BUILTIN() 69 Maybe<bool> result = JSReceiver::DeletePropertyOrElement( in BUILTIN() 117 Maybe<bool> found = JSReceiver::GetOwnPropertyDescriptor( in BUILTIN() 159 Maybe<bool> result = in BUILTIN() 178 Maybe<bool> result = in BUILTIN() 219 Maybe<bool> result = JSReceiver::PreventExtensions( in BUILTIN() 246 Maybe<bool> result = Object::SetSuperProperty( in BUILTIN() 271 Maybe<bool> result = JSReceiver::SetPrototype( in BUILTIN()
|
/external/v8/src/runtime/ |
D | runtime-operators.cc | 116 Maybe<bool> result = Object::Equals(x, y); in RUNTIME_FUNCTION() 126 Maybe<bool> result = Object::Equals(x, y); in RUNTIME_FUNCTION() 152 Maybe<bool> result = Object::LessThan(x, y); in RUNTIME_FUNCTION() 162 Maybe<bool> result = Object::GreaterThan(x, y); in RUNTIME_FUNCTION() 172 Maybe<bool> result = Object::LessThanOrEqual(x, y); in RUNTIME_FUNCTION() 182 Maybe<bool> result = Object::GreaterThanOrEqual(x, y); in RUNTIME_FUNCTION()
|
/external/v8/include/ |
D | v8.h | 84 class Maybe; variable 1480 V8_WARN_UNUSED_RESULT Maybe<int> GetLineNumber(Local<Context> context) const; 1504 V8_WARN_UNUSED_RESULT Maybe<int> GetStartColumn(Local<Context> context) const; 1511 V8_WARN_UNUSED_RESULT Maybe<int> GetEndColumn(Local<Context> context) const; 1724 virtual Maybe<bool> WriteHostObject(Isolate* isolate, Local<Object> object); 1736 virtual Maybe<uint32_t> GetSharedArrayBufferId( 1769 V8_WARN_UNUSED_RESULT Maybe<bool> WriteValue(Local<Context> context, 1860 V8_WARN_UNUSED_RESULT Maybe<bool> ReadHeader(Local<Context> context); 2246 V8_WARN_UNUSED_RESULT Maybe<bool> BooleanValue(Local<Context> context) const; 2247 V8_WARN_UNUSED_RESULT Maybe<double> NumberValue(Local<Context> context) const; [all …]
|
/external/clang/include/clang/Analysis/Analyses/ |
D | UninitializedValues.h | 72 Maybe, enumerator 90 !branch_empty() ? Sometimes : Maybe; in getKind()
|
/external/deqp/modules/egl/ |
D | teglThreadCleanUpTests.cpp | 61 …y display, EGLSurface surface, EGLContext context, EGLConfig config, tcu::Maybe<eglu::Error>& erro… in Thread() 133 tcu::Maybe<eglu::Error>& m_error; 254 tcu::Maybe<eglu::Error> error; in iterate()
|