Home
last modified time | relevance | path

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

/external/pdfium/fxjs/
Dcjs_field.cpp1696 v8::Local<v8::Array> rcArray = pRuntime->NewArray(); in get_rect() local
1698 rcArray, 0, pRuntime->NewNumber(static_cast<int32_t>(crRect.left))); in get_rect()
1700 rcArray, 1, pRuntime->NewNumber(static_cast<int32_t>(crRect.top))); in get_rect()
1702 rcArray, 2, pRuntime->NewNumber(static_cast<int32_t>(crRect.right))); in get_rect()
1704 rcArray, 3, pRuntime->NewNumber(static_cast<int32_t>(crRect.bottom))); in get_rect()
1706 return CJS_Result::Success(rcArray); in get_rect()
1715 v8::Local<v8::Array> rcArray = pRuntime->ToArray(vp); in set_rect() local
1716 if (pRuntime->GetArrayLength(rcArray) < 4) in set_rect()
1721 pRuntime->ToInt32(pRuntime->GetArrayElement(rcArray, 0))); in set_rect()
1723 pRuntime->ToInt32(pRuntime->GetArrayElement(rcArray, 1))); in set_rect()
[all …]