Home
last modified time | relevance | path

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

/external/pdfium/fxjs/
Dcjs_field.cpp1584 v8::Local<v8::Array> rcArray = pRuntime->NewArray(); in get_rect() local
1586 rcArray, 0, pRuntime->NewNumber(static_cast<int32_t>(crRect.left))); in get_rect()
1588 rcArray, 1, pRuntime->NewNumber(static_cast<int32_t>(crRect.top))); in get_rect()
1590 rcArray, 2, pRuntime->NewNumber(static_cast<int32_t>(crRect.right))); in get_rect()
1592 rcArray, 3, pRuntime->NewNumber(static_cast<int32_t>(crRect.bottom))); in get_rect()
1594 return CJS_Return(rcArray); in get_rect()
1603 v8::Local<v8::Array> rcArray = pRuntime->ToArray(vp); in set_rect() local
1604 if (pRuntime->GetArrayLength(rcArray) < 4) in set_rect()
1609 pRuntime->ToInt32(pRuntime->GetArrayElement(rcArray, 0))); in set_rect()
1611 pRuntime->ToInt32(pRuntime->GetArrayElement(rcArray, 1))); in set_rect()
[all …]