Home
last modified time | relevance | path

Searched refs:IsStrong (Results 1 – 8 of 8) sorted by relevance

/external/v8/test/mjsunit/strong/
Dclass-literals.js10 assertFalse(%IsStrong(x));
11 assertFalse(%IsStrong(x.prototype));
12 assertFalse(%IsStrong(new x));
16 assertFalse(%IsStrong(x));
17 assertFalse(%IsStrong(x.prototype));
18 assertTrue(%IsStrong(new x));
22 assertTrue(%IsStrong(x));
23 assertTrue(%IsStrong(x.prototype));
24 assertFalse(%IsStrong(new x));
28 assertTrue(%IsStrong(x));
[all …]
Dliterals.js12 assertFalse(%IsStrong(x));
31 assertTrue(%IsStrong(x));
87 assertTrue(%IsStrong({__proto__: {}, get a() {}, set b(x) {}}));
97 assertFalse(%IsStrong(x));
117 assertTrue(%IsStrong(x));
136 assertFalse(%IsStrong(x));
137 assertFalse(%IsStrong(x.prototype));
166 assertTrue(%IsStrong(x));
195 assertTrue(%IsStrong(x));
226 assertFalse(%IsStrong(x));
[all …]
Ddestructuring.js14 assertTrue(%IsStrong(a));
22 assertFalse(%IsStrong(a));
30 assertFalse(%IsStrong(a));
/external/v8/src/js/
Dmacros.py91 macro IS_STRONG(arg) = (%IsStrong(arg));
/external/v8/src/compiler/
Djs-typed-lowering.cc222 bool IsStrong() const { in IsStrong() function in v8::internal::compiler::JSBinopReduction
460 if (r.NeitherInputCanBe(Type::StringOrReceiver()) && !r.IsStrong()) { in ReduceJSAdd()
502 if (r.IsStrong() || numberOp == simplified()->NumberModulus()) { in ReduceNumberBinop()
518 if (r.IsStrong()) { in ReduceInt32Binop()
538 if (r.IsStrong()) { in ReduceUI32Shift()
591 if (r.IsStrong() && !r.BothInputsAre(Type::Number())) { in ReduceJSComparison()
/external/v8/src/runtime/
Druntime.h458 F(IsStrong, 1, 1) \
/external/v8/src/
Dobjects-inl.h4664 set_bit_field3(IsStrong::update(bit_field3(), true)); in set_is_strong()
4669 return IsStrong::decode(bit_field3()); in is_strong()
Dobjects.h5482 class IsStrong : public BitField<bool, 26, 1> {};