Home
last modified time | relevance | path

Searched refs:ToInteger (Results 1 – 25 of 43) sorted by relevance

12

/external/v8/src/compiler-dispatcher/
Dunoptimized-compile-job.cc71 main_thread_id_(isolate->thread_id().ToInteger()), in UnoptimizedCompileJob()
94 DCHECK_EQ(ThreadId::Current().ToInteger(), main_thread_id_); in ~UnoptimizedCompileJob()
98 DCHECK_EQ(ThreadId::Current().ToInteger(), main_thread_id_); in ~UnoptimizedCompileJob()
109 DCHECK_EQ(ThreadId::Current().ToInteger(), main_thread_id_); in PrepareOnMainThread()
110 DCHECK_EQ(isolate->thread_id().ToInteger(), main_thread_id_); in PrepareOnMainThread()
262 DCHECK_EQ(ThreadId::Current().ToInteger(), main_thread_id_); in FinalizeOnMainThread()
263 DCHECK_EQ(isolate->thread_id().ToInteger(), main_thread_id_); in FinalizeOnMainThread()
300 DCHECK_EQ(ThreadId::Current().ToInteger(), main_thread_id_); in ReportErrorsOnMainThread()
301 DCHECK_EQ(isolate->thread_id().ToInteger(), main_thread_id_); in ReportErrorsOnMainThread()
322 DCHECK_EQ(ThreadId::Current().ToInteger(), main_thread_id_); in ResetDataOnMainThread()
[all …]
/external/v8/src/builtins/
Dbuiltins-typed-array.cc64 isolate, num, Object::ToInteger(isolate, args.at<Object>(1))); in BUILTIN()
69 isolate, num, Object::ToInteger(isolate, args.at<Object>(2))); in BUILTIN()
75 Object::ToInteger(isolate, end)); in BUILTIN()
137 isolate, num, Object::ToInteger(isolate, num)); in BUILTIN()
143 isolate, num, Object::ToInteger(isolate, num)); in BUILTIN()
183 isolate, num, Object::ToInteger(isolate, args.at<Object>(2))); in BUILTIN()
215 isolate, num, Object::ToInteger(isolate, args.at<Object>(2))); in BUILTIN()
246 isolate, num, Object::ToInteger(isolate, args.at<Object>(2))); in BUILTIN()
Dbuiltins-number.cc42 isolate, fraction_digits, Object::ToInteger(isolate, fraction_digits)); in BUILTIN()
87 isolate, fraction_digits, Object::ToInteger(isolate, fraction_digits)); in BUILTIN()
166 Object::ToInteger(isolate, precision)); in BUILTIN()
211 Object::ToInteger(isolate, radix)); in BUILTIN()
Darray-copywithin.tq19 // 3. Let relativeTarget be ? ToInteger(target).
26 // 5. Let relativeStart be ? ToInteger(start).
34 // else let relativeEnd be ? ToInteger(end).
Dbuiltins-arraybuffer.cc73 Object::ToInteger(isolate, length)); in BUILTIN()
151 Object::ToInteger(isolate, start)); in SliceHelper()
168 Object::ToInteger(isolate, end)); in SliceHelper()
Dbuiltins-conversion-gen.cc335 TF_BUILTIN(ToInteger, CodeStubAssembler) { in TF_BUILTIN() argument
339 Return(ToInteger(context, input, kNoTruncation)); in TF_BUILTIN()
346 Return(ToInteger(context, input, kTruncateMinusZero)); in TF_BUILTIN()
Dbuiltins-string.cc30 if (Object::ToInteger(isolate, value).ToHandleChecked()->Number() != in IsValidCodePoint()
149 Object::ToInteger(isolate, position)); in BUILTIN()
316 Object::ToInteger(isolate, position)); in BUILTIN()
Dbuiltins-bigint.cc109 Object::ToInteger(isolate, radix)); in BigIntToStringImpl()
Dbuiltins-sharedarraybuffer.cc106 Object::ToInteger(isolate, count)); in BUILTIN()
Darray.tq129 // 3. Let relativeStart be ? ToInteger(start).
158 // b. Let dc be ? ToInteger(deleteCount).
/external/pdfium/fxjs/
Dcfxjse_formcalc_context_embeddertest.cpp29 EXPECT_EQ(123, value->ToInteger()) << "Program: " << input; in TEST_F()
68 EXPECT_EQ(tests[i].result, value->ToInteger()) in TEST_F()
184 EXPECT_EQ(tests[i].result, value->ToInteger()) in TEST_F()
202 EXPECT_EQ(tests[i].result, value->ToInteger()) in TEST_F()
222 EXPECT_EQ(tests[i].result, value->ToInteger()) in TEST_F()
242 EXPECT_EQ(tests[i].result, value->ToInteger()) in TEST_F()
264 EXPECT_EQ(tests[i].result, value->ToInteger()) in TEST_F()
282 EXPECT_EQ(tests[i].result, value->ToInteger()) in TEST_F()
323 EXPECT_EQ(tests[i].result, value->ToInteger()) in TEST_F()
362 EXPECT_EQ(tests[i].result, value->ToInteger()) in TEST_F()
[all …]
Dcfxjse_value.h40 int32_t ToInteger() const;
Dcfxjse_formcalc_context.cpp665 int32_t iLength = lengthValue->ToInteger(); in Avg()
740 int32_t iLength = lengthValue->ToInteger(); in Count()
812 int32_t iLength = lengthValue->ToInteger(); in Max()
886 int32_t iLength = lengthValue->ToInteger(); in Min()
1047 int32_t iLength = lengthValue->ToInteger(); in Sum()
2671 int32_t iLength = lengthValue->ToInteger(); in Choose()
2882 ASSERT(lengthValue->ToInteger() >= 3); in Ref()
4794 int32_t iLeftLength = leftLengthValue->ToInteger(); in assign_value_operator()
4946 if (firstFlagValue->ToInteger() != 3 || secondFlagValue->ToInteger() != 3) in fm_ref_equal()
5248 int32_t iLength = pLengthValue->ToInteger(); in dot_accessor()
[all …]
Dcfxjse_value.cpp375 int32_t CFXJSE_Value::ToInteger() const { in ToInteger() function in CFXJSE_Value
/external/pdfium/fxjs/xfa/
Dcjx_occur.cpp26 occur->SetMax(pValue->ToInteger()); in max()
37 occur->SetMin(pValue->ToInteger()); in min()
Dcjx_eventpseudomodel.cpp30 iValue = pValue->ToInteger(); in InterProperty()
Dcjx_instancemanager.cpp326 SetInstances(pValue->ToInteger()); in count()
Dcjx_field.cpp356 int32_t iIndex = pValue->ToInteger(); in selectedIndex()
Dcjx_hostpseudomodel.cpp112 pNotify->GetDocEnvironment()->SetCurrentPage(hDoc, pValue->ToInteger()); in currentPage()
/external/v8/src/interpreter/
Dinterpreter-intrinsics.h39 V(ToInteger, to_integer, 1) \
Dinterpreter-intrinsics-generator.cc247 Node* IntrinsicsGenerator::ToInteger( in ToInteger() function in v8::internal::interpreter::IntrinsicsGenerator
/external/v8/src/runtime/
Druntime-array.cc766 Object::ToInteger(isolate, from_index)); in RUNTIME_FUNCTION()
868 Object::ToInteger(isolate, from_index)); in RUNTIME_FUNCTION()
/external/v8/src/compiler/
Dtyper.cc264 static Type ToInteger(Type, Typer*);
485 Type Typer::Visitor::ToInteger(Type type, Typer* t) { in ToInteger() function in v8::internal::compiler::Typer::Visitor
501 type = ToInteger(type, t); in ToLength()
1118 return TypeUnaryOp(node, ToInteger); in TypeJSToInteger()
1726 return TypeUnaryOp(node, ToInteger); in TypeJSCallRuntime()
Djs-intrinsic-lowering.cc262 NodeProperties::ChangeOp(node, javascript()->ToInteger()); in ReduceToInteger()
/external/v8/src/
Disolate.h372 int ToInteger() const { return static_cast<int>(base::Relaxed_Load(&id_)); } in ToInteger() function
1569 return std::hash<int>()(t.ToInteger()); in operator()

12