![]() |
Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
|
Functions | |
| bool | IsUndefined (v8::Local< v8::Value > value) |
| bool | IsNull (v8::Local< v8::Value > value) |
| bool | IsBoolean (v8::Local< v8::Value > value) |
| bool | IsString (v8::Local< v8::Value > value) |
| bool | IsNumber (v8::Local< v8::Value > value) |
| bool | IsInteger (v8::Local< v8::Value > value) |
| bool | IsObject (v8::Local< v8::Value > value) |
| bool | IsArray (v8::Local< v8::Value > value) |
| bool | IsDate (v8::Local< v8::Value > value) |
| bool | IsFunction (v8::Local< v8::Value > value) |
| v8::Local< v8::Value > | NewNullHelper (v8::Isolate *pIsolate) |
| v8::Local< v8::Value > | NewUndefinedHelper (v8::Isolate *pIsolate) |
| v8::Local< v8::Number > | NewNumberHelper (v8::Isolate *pIsolate, int number) |
| v8::Local< v8::Number > | NewNumberHelper (v8::Isolate *pIsolate, double number) |
| v8::Local< v8::Number > | NewNumberHelper (v8::Isolate *pIsolate, float number) |
| v8::Local< v8::Boolean > | NewBooleanHelper (v8::Isolate *pIsolate, bool b) |
| v8::Local< v8::String > | NewStringHelper (v8::Isolate *pIsolate, ByteStringView str) |
| v8::Local< v8::String > | NewStringHelper (v8::Isolate *pIsolate, WideStringView str) |
| v8::Local< v8::Array > | NewArrayHelper (v8::Isolate *pIsolate) |
| v8::Local< v8::Array > | NewArrayHelper (v8::Isolate *pIsolate, pdfium::span< v8::Local< v8::Value > > values) |
| v8::Local< v8::Object > | NewObjectHelper (v8::Isolate *pIsolate) |
| v8::Local< v8::Date > | NewDateHelper (v8::Isolate *pIsolate, double d) |
| WideString | ToWideString (v8::Isolate *pIsolate, v8::Local< v8::String > pValue) |
| ByteString | ToByteString (v8::Isolate *pIsolate, v8::Local< v8::String > pValue) |
| int32_t | ReentrantToInt32Helper (v8::Isolate *pIsolate, v8::Local< v8::Value > pValue) |
| bool | ReentrantToBooleanHelper (v8::Isolate *pIsolate, v8::Local< v8::Value > pValue) |
| float | ReentrantToFloatHelper (v8::Isolate *pIsolate, v8::Local< v8::Value > pValue) |
| double | ReentrantToDoubleHelper (v8::Isolate *pIsolate, v8::Local< v8::Value > pValue) |
| WideString | ReentrantToWideStringHelper (v8::Isolate *pIsolate, v8::Local< v8::Value > pValue) |
| ByteString | ReentrantToByteStringHelper (v8::Isolate *pIsolate, v8::Local< v8::Value > pValue) |
| v8::Local< v8::Object > | ReentrantToObjectHelper (v8::Isolate *pIsolate, v8::Local< v8::Value > pValue) |
| v8::Local< v8::Array > | ReentrantToArrayHelper (v8::Isolate *pIsolate, v8::Local< v8::Value > pValue) |
| v8::Local< v8::Value > | ReentrantGetObjectPropertyHelper (v8::Isolate *pIsolate, v8::Local< v8::Object > pObj, ByteStringView bsUTF8PropertyName) |
| std::vector< WideString > | ReentrantGetObjectPropertyNamesHelper (v8::Isolate *pIsolate, v8::Local< v8::Object > pObj) |
| bool | ReentrantHasObjectOwnPropertyHelper (v8::Isolate *pIsolate, v8::Local< v8::Object > pObj, ByteStringView bsUTF8PropertyName) |
| bool | ReentrantSetObjectOwnPropertyHelper (v8::Isolate *pIsolate, v8::Local< v8::Object > pObj, ByteStringView bsUTF8PropertyName, v8::Local< v8::Value > pValue) |
| bool | ReentrantPutObjectPropertyHelper (v8::Isolate *pIsolate, v8::Local< v8::Object > pObj, ByteStringView bsUTF8PropertyName, v8::Local< v8::Value > pPut) |
| void | ReentrantDeleteObjectPropertyHelper (v8::Isolate *pIsolate, v8::Local< v8::Object > pObj, ByteStringView bsUTF8PropertyName) |
| bool | ReentrantPutArrayElementHelper (v8::Isolate *pIsolate, v8::Local< v8::Array > pArray, size_t index, v8::Local< v8::Value > pValue) |
| v8::Local< v8::Value > | ReentrantGetArrayElementHelper (v8::Isolate *pIsolate, v8::Local< v8::Array > pArray, size_t index) |
| size_t | GetArrayLengthHelper (v8::Local< v8::Array > pArray) |
| void | ThrowExceptionHelper (v8::Isolate *pIsolate, ByteStringView str) |
| void | ThrowExceptionHelper (v8::Isolate *pIsolate, WideStringView str) |
| size_t fxv8::GetArrayLengthHelper | ( | v8::Local< v8::Array > | pArray | ) |
| bool fxv8::IsArray | ( | v8::Local< v8::Value > | value | ) |
Definition at line 48 of file fxv8.cpp.
Referenced by CFXJSE_FormCalcContext::concat_fm_object(), CFXJSE_FormCalcContext::is_fm_array(), and CJS_Field::set_text_color().
| bool fxv8::IsNull | ( | v8::Local< v8::Value > | value | ) |
Definition at line 24 of file fxv8.cpp.
Referenced by CFXJSE_FormCalcContext::Mod(), and CFXJSE_FormCalcContext::Round().
| bool fxv8::IsObject | ( | v8::Local< v8::Value > | value | ) |
Definition at line 44 of file fxv8.cpp.
Referenced by CFXJSE_FormCalcContext::Exists(), and CFXJSE_FormCalcContext::is_fm_object().
| bool fxv8::IsUndefined | ( | v8::Local< v8::Value > | value | ) |
Definition at line 20 of file fxv8.cpp.
Referenced by CFXJSE_Engine::GlobalPropertySetter().
| v8::Local< v8::Array > fxv8::NewArrayHelper | ( | v8::Isolate * | pIsolate | ) |
| v8::Local< v8::Array > fxv8::NewArrayHelper | ( | v8::Isolate * | pIsolate, |
| pdfium::span< v8::Local< v8::Value > > | values ) |
| v8::Local< v8::Boolean > fxv8::NewBooleanHelper | ( | v8::Isolate * | pIsolate, |
| bool | b ) |
| v8::Local< v8::Date > fxv8::NewDateHelper | ( | v8::Isolate * | pIsolate, |
| double | d ) |
| v8::Local< v8::Value > fxv8::NewNullHelper | ( | v8::Isolate * | pIsolate | ) |
| v8::Local< v8::Number > fxv8::NewNumberHelper | ( | v8::Isolate * | pIsolate, |
| double | number ) |
| v8::Local< v8::Number > fxv8::NewNumberHelper | ( | v8::Isolate * | pIsolate, |
| float | number ) |
| v8::Local< v8::Number > fxv8::NewNumberHelper | ( | v8::Isolate * | pIsolate, |
| int | number ) |
| v8::Local< v8::Object > fxv8::NewObjectHelper | ( | v8::Isolate * | pIsolate | ) |
| v8::Local< v8::String > fxv8::NewStringHelper | ( | v8::Isolate * | pIsolate, |
| ByteStringView | str ) |
| v8::Local< v8::String > fxv8::NewStringHelper | ( | v8::Isolate * | pIsolate, |
| WideStringView | str ) |
| v8::Local< v8::Value > fxv8::NewUndefinedHelper | ( | v8::Isolate * | pIsolate | ) |
| void fxv8::ReentrantDeleteObjectPropertyHelper | ( | v8::Isolate * | pIsolate, |
| v8::Local< v8::Object > | pObj, | ||
| ByteStringView | bsUTF8PropertyName ) |
| v8::Local< v8::Value > fxv8::ReentrantGetArrayElementHelper | ( | v8::Isolate * | pIsolate, |
| v8::Local< v8::Array > | pArray, | ||
| size_t | index ) |
| v8::Local< v8::Value > fxv8::ReentrantGetObjectPropertyHelper | ( | v8::Isolate * | pIsolate, |
| v8::Local< v8::Object > | pObj, | ||
| ByteStringView | bsUTF8PropertyName ) |
| std::vector< WideString > fxv8::ReentrantGetObjectPropertyNamesHelper | ( | v8::Isolate * | pIsolate, |
| v8::Local< v8::Object > | pObj ) |
| bool fxv8::ReentrantHasObjectOwnPropertyHelper | ( | v8::Isolate * | pIsolate, |
| v8::Local< v8::Object > | pObj, | ||
| ByteStringView | bsUTF8PropertyName ) |
| bool fxv8::ReentrantPutArrayElementHelper | ( | v8::Isolate * | pIsolate, |
| v8::Local< v8::Array > | pArray, | ||
| size_t | index, | ||
| v8::Local< v8::Value > | pValue ) |
| bool fxv8::ReentrantPutObjectPropertyHelper | ( | v8::Isolate * | pIsolate, |
| v8::Local< v8::Object > | pObj, | ||
| ByteStringView | bsUTF8PropertyName, | ||
| v8::Local< v8::Value > | pPut ) |
| bool fxv8::ReentrantSetObjectOwnPropertyHelper | ( | v8::Isolate * | pIsolate, |
| v8::Local< v8::Object > | pObj, | ||
| ByteStringView | bsUTF8PropertyName, | ||
| v8::Local< v8::Value > | pValue ) |
| v8::Local< v8::Array > fxv8::ReentrantToArrayHelper | ( | v8::Isolate * | pIsolate, |
| v8::Local< v8::Value > | pValue ) |
| bool fxv8::ReentrantToBooleanHelper | ( | v8::Isolate * | pIsolate, |
| v8::Local< v8::Value > | pValue ) |
| ByteString fxv8::ReentrantToByteStringHelper | ( | v8::Isolate * | pIsolate, |
| v8::Local< v8::Value > | pValue ) |
| double fxv8::ReentrantToDoubleHelper | ( | v8::Isolate * | pIsolate, |
| v8::Local< v8::Value > | pValue ) |
| float fxv8::ReentrantToFloatHelper | ( | v8::Isolate * | pIsolate, |
| v8::Local< v8::Value > | pValue ) |
| int fxv8::ReentrantToInt32Helper | ( | v8::Isolate * | pIsolate, |
| v8::Local< v8::Value > | pValue ) |
| v8::Local< v8::Object > fxv8::ReentrantToObjectHelper | ( | v8::Isolate * | pIsolate, |
| v8::Local< v8::Value > | pValue ) |
| WideString fxv8::ReentrantToWideStringHelper | ( | v8::Isolate * | pIsolate, |
| v8::Local< v8::Value > | pValue ) |
| void fxv8::ThrowExceptionHelper | ( | v8::Isolate * | pIsolate, |
| ByteStringView | str ) |
| void fxv8::ThrowExceptionHelper | ( | v8::Isolate * | pIsolate, |
| WideStringView | str ) |
Definition at line 336 of file fxv8.cpp.
Referenced by CFXJS_ObjDefinition::CallHandler().
| ByteString fxv8::ToByteString | ( | v8::Isolate * | pIsolate, |
| v8::Local< v8::String > | pValue ) |
| WideString fxv8::ToWideString | ( | v8::Isolate * | pIsolate, |
| v8::Local< v8::String > | pValue ) |