HomeSort by relevance Sort by last modified time
    Searched refs:ToLength (Results 1 - 24 of 24) sorted by null

  /external/v8/test/mjsunit/harmony/
to-length.js 7 assertEquals(0, %ToLength(NaN));
10 assertEquals(0, %ToLength(-Infinity));
13 assertEquals(0, %ToLength(0));
16 assertEquals(0, %ToLength(.5));
19 assertEquals(42, %ToLength(42.99999));
22 assertEquals(9007199254740991, %ToLength(9007199254740991));
25 assertEquals(9007199254740991, %ToLength(Infinity));
28 assertEquals(0, %ToLength(null));
31 assertEquals(1, %ToLength(true));
34 assertEquals(0, %ToLength(false))
    [all...]
  /external/v8/test/mjsunit/es6/
typedarray-set-length.js 24 // ToLength should convert these to usable lengths.
36 // This will fail if you use ToLength on it.
array-copywithin.js 297 // 2^53 - 1 is the maximum value returned from ToLength()
  /external/v8/src/interpreter/
interpreter-intrinsics.h 44 V(ToLength, to_length, 1) \
interpreter-intrinsics.cc 280 Node* IntrinsicsHelper::ToLength(Node* input, Node* arg_count, Node* context) {
281 return IntrinsicAsStubCall(input, context, CodeFactory::ToLength(isolate()));
  /external/v8/src/
code-factory.h 76 static Callable ToLength(Isolate* isolate);
code-factory.cc 187 Callable CodeFactory::ToLength(Isolate* isolate) {
code-stubs.h 138 V(ToLength) \
    [all...]
builtins.cc     [all...]
objects.h     [all...]
objects.cc 220 MaybeHandle<Object> Object::ToLength(Isolate* isolate, Handle<Object> input) {
705 // 4. Let len be ? ToLength(? Get(obj, "length")).
762 return Object::ToLength(isolate, val);
    [all...]
  /external/v8/src/compiler/
js-operator.h 410 const Operator* ToLength();
js-intrinsic-lowering.cc 384 NodeProperties::ChangeOp(node, javascript()->ToLength());
js-operator.cc 408 V(ToLength, Operator::kNoProperties, 1, 1) \
    [all...]
typer.cc 241 static Type* ToLength(Type*, Typer*);
417 Type* Typer::Visitor::ToLength(Type* type, Typer* t) {
418 // ES6 section 7.1.15 ToLength ( argument )
    [all...]
js-generic-lowering.cc 84 REPLACE_STUB_CALL(ToLength)
  /external/v8/test/mjsunit/es7/
array-includes.js 154 // Array.prototype.includes should terminate if ToLength ends up being called on
  /external/v8/src/full-codegen/
full-codegen.h 529 F(ToLength) \
    [all...]
full-codegen.cc 589 EmitIntrinsicAsStubCall(expr, CodeFactory::ToLength(isolate()));
    [all...]
  /external/v8/src/runtime/
runtime-object.cc 835 RETURN_RESULT_OR_FAILURE(isolate, Object::ToLength(isolate, input));
runtime-simd.cc     [all...]
runtime.h 422 F(ToLength, 1, 1) \
    [all...]
  /external/v8/src/crankshaft/
hydrogen.h     [all...]
hydrogen.cc     [all...]

Completed in 3110 milliseconds