HomeSort by relevance Sort by last modified time
    Searched refs:ToObject (Results 1 - 25 of 56) sorted by null

1 2 3

  /external/v8/test/mjsunit/es7/
array-includes-to-object-sloppy.js 9 // Array.prototype.includes should use ToObject on this, so that when called
array-includes-to-object-strict.js 9 // Array.prototype.includes should use ToObject on this, so that when called
  /external/v8/src/runtime/
runtime-atomics.cc 186 inline Object* ToObject(Isolate* isolate, int8_t t) { return Smi::FromInt(t); }
188 inline Object* ToObject(Isolate* isolate, uint8_t t) { return Smi::FromInt(t); }
190 inline Object* ToObject(Isolate* isolate, int16_t t) { return Smi::FromInt(t); }
192 inline Object* ToObject(Isolate* isolate, uint16_t t) {
197 inline Object* ToObject(Isolate* isolate, int32_t t) {
202 inline Object* ToObject(Isolate* isolate, uint32_t t) {
214 return ToObject(isolate, result);
221 return ToObject(isolate, result);
239 return ToObject(isolate, result);
248 return ToObject(isolate, result)
    [all...]
runtime-function.cc 330 return *Object::ToObject(isolate, receiver).ToHandleChecked();
runtime-object.cc 275 // 1. Let obj be ? ToObject(O).
277 Execution::ToObject(isolate, object));
290 return *desc.ToObject(isolate);
566 if (!JSReceiver::ToObject(isolate, object).ToHandle(&receiver)) {
    [all...]
  /external/v8/src/
property-descriptor.h 45 Handle<Object> ToObject(Isolate* isolate);
execution.cc 148 isolate, receiver, Execution::ToObject(isolate, receiver), Object);
424 MaybeHandle<JSReceiver> Execution::ToObject(Isolate* isolate,
427 if (JSReceiver::ToObject(isolate, obj).ToHandle(&receiver)) {
code-factory.h 74 static Callable ToObject(Isolate* isolate);
execution.h 53 MUST_USE_RESULT static MaybeHandle<JSReceiver> ToObject(Isolate* isolate,
property-descriptor.cc 113 Handle<Object> PropertyDescriptor::ToObject(Isolate* isolate) {
code-factory.cc 179 Callable CodeFactory::ToObject(Isolate* isolate) {
interface-descriptors.h 31 V(ToObject) \
  /external/v8/test/cctest/compiler/
test-run-stubs.cc 57 Object::ToObject(isolate, ft.Val(testString)).ToHandleChecked();
  /external/v8/test/mjsunit/regress/
regress-builtinbust-6.js 19 // Test that ToObject on primitive values is only called once.
regress-877615.js 36 assertEquals([1].toLocaleString(), 'invalid'); // Uses ToObject on elements.
  /external/pdfium/fpdfsdk/src/jsapi/
fxjs_v8.cpp 302 ->ToObject(v8Context)
309 ->ToObject(v8Context)
353 context->Global()->GetPrototype()->ToObject(context).ToLocalChecked();
458 return context->Global()->GetPrototype()->ToObject(context).ToLocalChecked();
526 v->ToObject(context)
754 return pValue->ToObject(context).ToLocalChecked();
771 return v8::Local<v8::Array>::Cast(pValue->ToObject(context).ToLocalChecked());
  /external/skia/experimental/SkV8Example/
DrawingMethods.cpp 105 args[0]->ToObject()->GetInternalField(0));
  /external/v8/test/mjsunit/
array-tostring.js 104 // Test that ToObject is called before getting "join", so the instance
144 // ToObject is called first and the same object is being used for the
  /external/v8/test/mjsunit/es6/
object-assign.js 49 // Calls ToObject for target
  /external/pdfium/xfa/src/fxjse/src/
value.h 149 void* ToObject(CFXJSE_Class* lpClass) const;
value.cpp 83 return lpValue->ToObject(lpClass);
273 void* CFXJSE_Value::ToObject(CFXJSE_Class* lpClass) const {
  /external/v8/test/unittests/compiler/
js-operator-unittest.cc 77 SHARED(ToObject, Operator::kNoProperties, 1, 1, 1, 1, 1, 1, 2),
js-typed-lowering-unittest.cc 357 Reduction r = Reduce(graph()->NewNode(javascript()->ToObject(), input,
370 Reduction r = Reduce(graph()->NewNode(javascript()->ToObject(), input,
    [all...]
instruction-selector-unittest.cc 422 Callable callable = CodeFactory::ToObject(isolate());
524 Callable callable = CodeFactory::ToObject(isolate());
  /external/v8/src/compiler/
js-operator.h 508 const Operator* ToObject();

Completed in 250 milliseconds

1 2 3