Home
last modified time | relevance | path

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

/external/pdfium/testing/resources/javascript/
Dpublic_methods_expected.txt298 Alert: PASS: AFSimple() threw AFSimple: Incorrect number of parameters passed to function.
299 Alert: PASS: AFSimple(1, 2, 3, 4) threw AFSimple: Incorrect number of parameters passed to function.
300 Alert: PASS: AFSimple(1, 2, 3) threw AFSimple: Incorrect parameter value.
301 Alert: PASS: AFSimple('nonesuch', 2, 3) threw AFSimple: Incorrect parameter value.
302 Alert: PASS: AFSimple('AVG', 2, 3) = 2.5
303 Alert: PASS: AFSimple('MIN', 2, 3) = 2
304 Alert: PASS: AFSimple('MAX', 2, 3) = 3
305 Alert: PASS: AFSimple('SUM', 2, 3) = 5
306 Alert: PASS: AFSimple('PRD', 2, 3) = 6
307 Alert: PASS: AFSimple('AVG', 2, 'nonesuch') threw AFSimple: Incorrect parameter value.
[all …]
Dpublic_methods.in495 expectError('', "AFSimple()", 2);
496 expectError('', "AFSimple(1, 2, 3, 4)");
497 expectError('', "AFSimple(1, 2, 3)");
498 expectError('', "AFSimple('nonesuch', 2, 3)");
499 expect('', "AFSimple('AVG', 2, 3)", 2.5);
500 expect('', "AFSimple('MIN', 2, 3)", 2);
501 expect('', "AFSimple('MAX', 2, 3)", 3);
502 expect('', "AFSimple('SUM', 2, 3)", 5);
503 expect('', "AFSimple('PRD', 2, 3)", 6);
504 expectError('', "AFSimple('AVG', 2, 'nonesuch')");
[all …]
/external/pdfium/fxjs/
Dcjs_publicmethods.h80 static CJS_Result AFSimple(CJS_Runtime* pRuntime,
Dcjs_publicmethods.cpp261 JS_STATIC_GLOBAL_FUN(AFSimple) in JS_STATIC_GLOBAL_FUN()
1246 CJS_Result CJS_PublicMethods::AFSimple( in AFSimple() function in CJS_PublicMethods