Home
last modified time | relevance | path

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

/external/pdfium/fxjs/xfa/
Dcjx_template.cpp35 return CJS_Return(runtime->NewBoolean(true)); in formNodes()
54 runtime->NewBoolean(!!ToNode(GetXFAObject())->GetWidgetAcc())); in execInitialize()
62 return CJS_Return(runtime->NewBoolean(true)); in recalculate()
71 runtime->NewBoolean(!!ToNode(GetXFAObject())->GetWidgetAcc())); in execCalculate()
80 runtime->NewBoolean(!!ToNode(GetXFAObject())->GetWidgetAcc())); in execValidate()
Dcjx_signaturepseudomodel.cpp42 return CJS_Return(runtime->NewBoolean(false)); in sign()
58 return CJS_Return(runtime->NewBoolean(false)); in clear()
Dcjx_field.cpp62 return CJS_Return(runtime->NewBoolean(iRet != XFA_EVENTERROR_Error)); in execEvent()
90 return CJS_Return(runtime->NewBoolean(bValue)); in deleteItem()
140 return CJS_Return(runtime->NewBoolean(state != 0)); in getItemState()
228 return CJS_Return(runtime->NewBoolean(false)); in execValidate()
232 return CJS_Return(runtime->NewBoolean(iRet != XFA_EVENTERROR_Error)); in execValidate()
Dcjx_form.cpp118 return CJS_Return(runtime->NewBoolean(false)); in execValidate()
122 return CJS_Return(runtime->NewBoolean(iRet != XFA_EVENTERROR_Error)); in execValidate()
Dcjx_wsdlconnection.cpp30 return CJS_Return(runtime->NewBoolean(false)); in execute()
Dcjx_subform.cpp74 return CJS_Return(runtime->NewBoolean(false)); in execValidate()
78 return CJS_Return(runtime->NewBoolean(iRet != XFA_EVENTERROR_Error)); in execValidate()
Dcjx_manifest.cpp31 runtime->NewBoolean(!!ToNode(GetXFAObject())->GetWidgetAcc())); in evaluate()
Dcjx_exclgroup.cpp76 return CJS_Return(runtime->NewBoolean(false)); in execValidate()
79 return CJS_Return(runtime->NewBoolean(iRet != XFA_EVENTERROR_Error)); in execValidate()
Dcjx_model.cpp83 runtime->NewBoolean(TryNamespace().value_or(WideString()) == nameSpace)); in isCompatibleNS()
Dcjx_node.cpp187 return CJS_Return(runtime->NewBoolean(true)); in isPropertySpecified()
199 return CJS_Return(runtime->NewBoolean(bHas)); in isPropertySpecified()
/external/pdfium/fxjs/
Dcjs_event.cpp99 return CJS_Return(pRuntime->NewBoolean(pEvent->FieldFull())); in get_field_full()
110 return CJS_Return(pRuntime->NewBoolean(pEvent->KeyDown())); in get_key_down()
120 return CJS_Return(pRuntime->NewBoolean(pEvent->Modifier())); in get_modifier()
140 return CJS_Return(pRuntime->NewBoolean(pEvent->Rc())); in get_rc()
223 return CJS_Return(pRuntime->NewBoolean(pEvent->Shift())); in get_shift()
301 return CJS_Return(pRuntime->NewBoolean(pEvent->WillCommit())); in get_will_commit()
Dcjs_field.cpp589 pRuntime->NewBoolean(pFormControl->GetIconFit().GetFittingBounds())); in get_button_fit_bounds()
637 return CJS_Return(pRuntime->NewBoolean( in get_button_scale_how()
744 pRuntime->NewBoolean(!!(pFormField->GetFieldFlags() & FIELDFLAG_COMB))); in get_comb()
765 return CJS_Return(pRuntime->NewBoolean( in get_commit_on_sel_change()
896 return CJS_Return(pRuntime->NewBoolean( in get_do_not_scroll()
919 return CJS_Return(pRuntime->NewBoolean( in get_do_not_spell_check()
939 return CJS_Return(pRuntime->NewBoolean(m_bDelay)); in get_delay()
1043 pRuntime->NewBoolean(!!(pFormField->GetFieldFlags() & FIELDFLAG_EDIT))); in get_editable()
1109 return CJS_Return(pRuntime->NewBoolean( in get_file_select()
1193 return CJS_Return(pRuntime->NewBoolean(ANNOTFLAG_INVISIBLE & dwFlags || in get_hidden()
[all …]
Dfxjs_v8_embeddertest.cpp120 TEST_F(FXJSV8EmbedderTest, NewBoolean) { in TEST_F() argument
125 auto boolz = engine()->NewBoolean(true); in TEST_F()
Dcjs_annot.cpp51 return CJS_Return(pRuntime->NewBoolean( in get_hidden()
Dcjs_global.cpp296 return CJS_Return(pRuntime->NewBoolean(pData->bData)); in GetProperty()
383 pRuntime->NewBoolean(pData->data.bData == 1)); in UpdateGlobalPersistentVariables()
516 pRuntime->NewBoolean(pObjData->bData == 1)); in PutObjectProperty()
Dcjs_v8.h40 v8::Local<v8::Boolean> NewBoolean(bool b);
Dcjs_document.cpp159 return CJS_Return(pRuntime->NewBoolean(!!m_pFormFillEnv->GetChangeMark())); in get_dirty()
705 pObj, wsKey, pRuntime->NewBoolean(!!pValueObj->GetInteger())); in get_info()
768 return CJS_Return(pRuntime->NewBoolean(m_bDelay)); in get_delay()
852 return CJS_Return(pRuntime->NewBoolean(true)); in get_external()
913 return CJS_Return(pRuntime->NewBoolean(!!pInterForm->IsCalculateEnabled())); in get_calculate()
Dcjs_app.cpp114 return CJS_Return(pRuntime->NewBoolean(m_bCalculate)); in get_calculate()
478 return CJS_Return(pRuntime->NewBoolean(m_bRuntimeHighLight)); in get_runtime_highlight()
Dcjs_v8.cpp111 v8::Local<v8::Boolean> CJS_V8::NewBoolean(bool b) { in NewBoolean() function in CJS_V8
Dcjs_color.cpp301 return CJS_Return(pRuntime->NewBoolean(color1 == color2)); in equal()