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

1 2

  /external/flatbuffers/tests/FlatBuffers.Test/
FuzzTestData.cs 31 public static readonly int Int32Value = BitConverter.ToInt32(_overflowInt32, 0);
  /external/pdfium/fxjs/
fxjs_v8_embeddertest.cpp 85 EXPECT_EQ(0, engine()->ToInt32(empty));
99 EXPECT_EQ(0, engine()->ToInt32(nullz));
113 EXPECT_EQ(0, engine()->ToInt32(undef));
127 EXPECT_EQ(1, engine()->ToInt32(boolz));
141 EXPECT_EQ(42, engine()->ToInt32(num));
155 EXPECT_EQ(123, engine()->ToInt32(str));
169 EXPECT_EQ(1111111111, engine()->ToInt32(date));
195 EXPECT_EQ(0, engine()->ToInt32(array));
222 EXPECT_EQ(0, engine()->ToInt32(object));
cjs_publicmethods.cpp 882 int iDec = abs(pRuntime->ToInt32(params[0]));
883 int iSepStyle = ValidStyleOrZero(pRuntime->ToInt32(params[1]));
884 int iNegStyle = ValidStyleOrZero(pRuntime->ToInt32(params[2]));
1018 int iSepStyle = ValidStyleOrZero(pRuntime->ToInt32(params[1]));
1077 int iDec = abs(pRuntime->ToInt32(params[0]));
1078 int iSepStyle = ValidStyleOrZero(pRuntime->ToInt32(params[1]));
    [all...]
cjs_util.cpp 121 pRuntime->ToInt32(params[iIndex]));
168 switch (pRuntime->ToInt32(params[0])) {
383 int arg = pRuntime->ToInt32(params[0]);
cjs_v8.h 45 int ToInt32(v8::Local<v8::Value> pValue);
cjs_app.cpp 248 iIcon = pRuntime->ToInt32(newParams[1]);
252 iType = pRuntime->ToInt32(newParams[2]);
273 pRuntime->GetFormFillEnv()->JS_appBeep(pRuntime->ToInt32(params[0]));
307 uint32_t dwInterval = params.size() > 1 ? pRuntime->ToInt32(params[1]) : 1000;
334 uint32_t dwTimeOut = params.size() > 1 ? pRuntime->ToInt32(params[1]) : 1000;
cjs_document.cpp 195 int iPageNum = pRuntime->ToInt32(vp);
276 int nIndex = pRuntime->ToInt32(params[0]);
386 nStart = pRuntime->ToInt32(params[1]);
388 nEnd = pRuntime->ToInt32(params[2]);
    [all...]
cjs_event.cpp 194 pEvent->SetSelEnd(pRuntime->ToInt32(vp));
216 pEvent->SetSelStart(pRuntime->ToInt32(vp));
cjs_v8.cpp 143 int CJS_V8::ToInt32(v8::Local<v8::Value> pValue) {
147 v8::MaybeLocal<v8::Int32> maybe_int32 = pValue->ToInt32(context);
cjs_field.cpp 809 array.push_back(pRuntime->ToInt32(vp));
814 pRuntime->ToInt32(pRuntime->GetArrayElement(SelArray, i)));
    [all...]
  /external/protobuf/src/google/protobuf/util/internal/
object_writer.cc 45 ow->RenderInt32(name, data.ToInt32().ValueOrDie());
datapiece.h 117 util::StatusOr<int32> ToInt32() const;
datapiece.cc 115 StatusOr<int32> DataPiece::ToInt32() const {
278 StatusOr<int32> value = ToInt32();
proto_writer.cc 115 StatusOr<int32> i32 = data.ToInt32();
125 StatusOr<int32> i32 = data.ToInt32();
135 StatusOr<int32> i32 = data.ToInt32();
  /external/pdfium/fxjs/xfa/
cjx_instancemanager.cpp 141 int32_t iFrom = runtime->ToInt32(params[0]);
142 int32_t iTo = runtime->ToInt32(params[1]);
168 int32_t iIndex = runtime->ToInt32(params[0]);
208 SetInstances(runtime->ToInt32(params[0]));
259 int32_t iIndex = runtime->ToInt32(params[0]);
cjx_field.cpp 89 bool bValue = pWidgetAcc->DeleteItem(runtime->ToInt32(params[0]), true, true);
99 int32_t iIndex = runtime->ToInt32(params[0]);
139 int32_t state = pWidgetAcc->GetItemState(runtime->ToInt32(params[0]));
163 int32_t iIndex = runtime->ToInt32(params[0]);
188 int32_t iIndex = runtime->ToInt32(params[0]);
189 if (runtime->ToInt32(params[1]) != 0) {
cjx_hostpseudomodel.cpp 342 mark = runtime->ToInt32(params[3]) != 0;
420 dwType = runtime->ToInt32(params[0]);
510 messageType = runtime->ToInt32(params[2]);
517 buttonType = runtime->ToInt32(params[3]);
560 int32_t nStartPage = runtime->ToInt32(params[1]);
561 int32_t nEndPage = runtime->ToInt32(params[2]);
cjx_list.cpp 79 int32_t index = runtime->ToInt32(params[0]);
cjx_form.cpp 89 if (!pNotify || runtime->ToInt32(params[0]) != 0)
cjx_layoutpseudomodel.cpp 88 int32_t iIndex = params.size() >= 3 ? runtime->ToInt32(params[2]) : 0;
354 iIndex = runtime->ToInt32(params[0]);
cjx_node.cpp 164 int32_t iValue = params.size() >= 2 ? runtime->ToInt32(params[1]) : 0;
190 int32_t iIndex = params.size() == 3 ? runtime->ToInt32(params[2]) : 0;
  /external/v8/src/runtime/
runtime-utils.h 75 CHECK(args[index]->ToInt32(&__tmp_##name)); \
84 CHECK(args[index]->ToInt32(&name));
  /external/v8/src/compiler/
code-generator.cc     [all...]
code-generator-impl.h 51 return ToConstant(instr_->InputAt(index)).ToInt32();
  /external/v8/src/builtins/
builtins-sharedarraybuffer.cc 139 Object::ToInt32(isolate, value));

Completed in 402 milliseconds

1 2