/external/v8/src/runtime/ |
D | runtime-atomics.cc | 186 inline Object* ToObject(Isolate* isolate, int8_t t) { return Smi::FromInt(t); } in ToObject() function 188 inline Object* ToObject(Isolate* isolate, uint8_t t) { return Smi::FromInt(t); } in ToObject() function 190 inline Object* ToObject(Isolate* isolate, int16_t t) { return Smi::FromInt(t); } in ToObject() function 192 inline Object* ToObject(Isolate* isolate, uint16_t t) { in ToObject() function 197 inline Object* ToObject(Isolate* isolate, int32_t t) { in ToObject() function 202 inline Object* ToObject(Isolate* isolate, uint32_t t) { in ToObject() function 214 return ToObject(isolate, result); in DoCompareExchange() 221 return ToObject(isolate, result); in DoLoad() 239 return ToObject(isolate, result); in DoAdd() 248 return ToObject(isolate, result); in DoSub() [all …]
|
D | runtime-object.cc | 277 Execution::ToObject(isolate, object)); in RUNTIME_FUNCTION() 290 return *desc.ToObject(isolate); in RUNTIME_FUNCTION() 566 if (!JSReceiver::ToObject(isolate, object).ToHandle(&receiver)) { in DeleteProperty() 1066 if (JSReceiver::ToObject(isolate, object).ToHandle(&receiver)) { in RUNTIME_FUNCTION()
|
D | runtime-function.cc | 330 return *Object::ToObject(isolate, receiver).ToHandleChecked(); in RUNTIME_FUNCTION()
|
/external/pdfium/fpdfsdk/src/jsapi/ |
D | fxjs_v8.cpp | 302 ->ToObject(v8Context) in FXJS_InitializeRuntime() 309 ->ToObject(v8Context) in FXJS_InitializeRuntime() 353 context->Global()->GetPrototype()->ToObject(context).ToLocalChecked(); in FXJS_ReleaseRuntime() 458 return context->Global()->GetPrototype()->ToObject(context).ToLocalChecked(); in FXJS_GetThisObj() 526 v->ToObject(context) in FXJS_GetPrivate() 754 return pValue->ToObject(context).ToLocalChecked(); in FXJS_ToObject() 771 return v8::Local<v8::Array>::Cast(pValue->ToObject(context).ToLocalChecked()); in FXJS_ToArray()
|
/external/v8/src/ |
D | execution.cc | 148 isolate, receiver, Execution::ToObject(isolate, receiver), Object); in Call() 424 MaybeHandle<JSReceiver> Execution::ToObject(Isolate* isolate, in ToObject() function in v8::internal::Execution 427 if (JSReceiver::ToObject(isolate, obj).ToHandle(&receiver)) { in ToObject()
|
D | property-descriptor.h | 45 Handle<Object> ToObject(Isolate* isolate);
|
D | code-factory.h | 74 static Callable ToObject(Isolate* isolate);
|
D | execution.h | 53 MUST_USE_RESULT static MaybeHandle<JSReceiver> ToObject(Isolate* isolate,
|
D | property-descriptor.cc | 113 Handle<Object> PropertyDescriptor::ToObject(Isolate* isolate) { in ToObject() function in v8::internal::PropertyDescriptor
|
D | code-factory.cc | 179 Callable CodeFactory::ToObject(Isolate* isolate) { in ToObject() function in v8::internal::CodeFactory
|
D | messages.cc | 226 MaybeHandle<JSReceiver> maybe = Object::ToObject(isolate_, receiver_); in GetMethodName()
|
D | interface-descriptors.h | 31 V(ToObject) \
|
/external/v8/test/cctest/compiler/ |
D | test-run-stubs.cc | 57 Object::ToObject(isolate, ft.Val(testString)).ToHandleChecked(); in TEST()
|
/external/skia/experimental/SkV8Example/ |
D | DrawingMethods.cpp | 105 args[0]->ToObject()->GetInternalField(0)); in DrawPath()
|
/external/v8/test/unittests/compiler/ |
D | js-typed-lowering-unittest.cc | 357 Reduction r = Reduce(graph()->NewNode(javascript()->ToObject(), input, in TEST_F() 370 Reduction r = Reduce(graph()->NewNode(javascript()->ToObject(), input, in TEST_F() 1211 Node* dummy = graph()->NewNode(javascript()->ToObject(), instanceOf, context, in TEST_F() 1231 Node* dummy = graph()->NewNode(javascript()->ToObject(), instanceOf, context, in TEST_F() 1250 Node* dummy = graph()->NewNode(javascript()->ToObject(), instanceOf, context, in TEST_F()
|
D | js-operator-unittest.cc | 77 SHARED(ToObject, Operator::kNoProperties, 1, 1, 1, 1, 1, 1, 2),
|
D | instruction-selector-unittest.cc | 422 Callable callable = CodeFactory::ToObject(isolate()); in TARGET_TEST_F() 524 Callable callable = CodeFactory::ToObject(isolate()); in TARGET_TEST_F()
|
/external/pdfium/xfa/src/fxjse/src/ |
D | value.cpp | 83 return lpValue->ToObject(lpClass); in FXJSE_Value_ToObject() 273 void* CFXJSE_Value::ToObject(CFXJSE_Class* lpClass) const { in ToObject() function in CFXJSE_Value
|
D | value.h | 149 void* ToObject(CFXJSE_Class* lpClass) const;
|
D | dynprop.cpp | 235 v8::Local<v8::Object> hPropDescriptor = info[1]->ToObject(); in FXJSE_V8ProxyCallback_defineProperty()
|
/external/v8/src/interpreter/ |
D | bytecodes.h | 174 V(ToObject, OperandType::kNone) \
|
/external/v8/src/compiler/ |
D | js-operator.h | 508 const Operator* ToObject();
|
D | typer.cc | 241 static Type* ToObject(Type*, Typer*); 467 Type* Typer::Visitor::ToObject(Type* type, Typer* t) { in ToObject() function in v8::internal::compiler::Typer::Visitor 1204 return TypeUnaryOp(node, ToObject); in TypeJSToObject() 1589 return TypeUnaryOp(node, ToObject); in TypeJSCallRuntime()
|
/external/v8/src/full-codegen/ |
D | full-codegen.cc | 534 EmitIntrinsicAsStubCall(expr, CodeFactory::ToObject(isolate())); in EmitToObject() 938 Callable callable = CodeFactory::ToObject(isolate()); in VisitWithStatement()
|
/external/pdfium/fpdfsdk/src/javascript/ |
D | JS_Value.cpp | 806 v8::Local<v8::Object> o = v->ToObject(context).ToLocalChecked(); in JS_DateParse()
|