Home | History | Annotate | Download | only in runtime

Lines Matching refs:isolate

6 #include "src/isolate-inl.h"
13 HandleScope scope(isolate);
18 ASSIGN_RETURN_FAILURE_ON_EXCEPTION(isolate, result,
19 Object::Multiply(isolate, lhs, rhs));
25 HandleScope scope(isolate);
31 isolate, result, Object::Multiply(isolate, lhs, rhs, Strength::STRONG));
37 HandleScope scope(isolate);
42 ASSIGN_RETURN_FAILURE_ON_EXCEPTION(isolate, result,
43 Object::Divide(isolate, lhs, rhs));
49 HandleScope scope(isolate);
55 isolate, result, Object::Divide(isolate, lhs, rhs, Strength::STRONG));
61 HandleScope scope(isolate);
66 ASSIGN_RETURN_FAILURE_ON_EXCEPTION(isolate, result,
67 Object::Modulus(isolate, lhs, rhs));
73 HandleScope scope(isolate);
79 isolate, result, Object::Modulus(isolate, lhs, rhs, Strength::STRONG));
85 HandleScope scope(isolate);
90 ASSIGN_RETURN_FAILURE_ON_EXCEPTION(isolate, result,
91 Object::Add(isolate, lhs, rhs));
97 HandleScope scope(isolate);
103 isolate, result, Object::Add(isolate, lhs, rhs, Strength::STRONG));
109 HandleScope scope(isolate);
114 ASSIGN_RETURN_FAILURE_ON_EXCEPTION(isolate, result,
115 Object::Subtract(isolate, lhs, rhs));
121 HandleScope scope(isolate);
127 isolate, result, Object::Subtract(isolate, lhs, rhs, Strength::STRONG));
133 HandleScope scope(isolate);
138 ASSIGN_RETURN_FAILURE_ON_EXCEPTION(isolate, result,
139 Object::ShiftLeft(isolate, lhs, rhs));
145 HandleScope scope(isolate);
151 isolate, result, Object::ShiftLeft(isolate, lhs, rhs, Strength::STRONG));
157 HandleScope scope(isolate);
162 ASSIGN_RETURN_FAILURE_ON_EXCEPTION(isolate, result,
163 Object::ShiftRight(isolate, lhs, rhs));
169 HandleScope scope(isolate);
175 isolate, result, Object::ShiftRight(isolate, lhs, rhs, Strength::STRONG));
181 HandleScope scope(isolate);
187 isolate, result, Object::ShiftRightLogical(isolate, lhs, rhs));
193 HandleScope scope(isolate);
199 isolate, result,
200 Object::ShiftRightLogical(isolate, lhs, rhs, Strength::STRONG));
206 HandleScope scope(isolate);
211 ASSIGN_RETURN_FAILURE_ON_EXCEPTION(isolate, result,
212 Object::BitwiseAnd(isolate, lhs, rhs));
218 HandleScope scope(isolate);
224 isolate, result, Object::BitwiseAnd(isolate, lhs, rhs, Strength::STRONG));
230 HandleScope scope(isolate);
235 ASSIGN_RETURN_FAILURE_ON_EXCEPTION(isolate, result,
236 Object::BitwiseOr(isolate, lhs, rhs));
242 HandleScope scope(isolate);
248 isolate, result, Object::BitwiseOr(isolate, lhs, rhs, Strength::STRONG));
254 HandleScope scope(isolate);
259 ASSIGN_RETURN_FAILURE_ON_EXCEPTION(isolate, result,
260 Object::BitwiseXor(isolate, lhs, rhs));
266 HandleScope scope(isolate);
272 isolate, result, Object::BitwiseXor(isolate, lhs, rhs, Strength::STRONG));