MCPcopy Create free account

hub / github.com/caoccao/Javet / functions

Functions4,340 in github.com/caoccao/Javet

↓ 12 callersMethodisI18nEnabled
Check if V8 internationalization support is enabled. @return true if internationalization is enabled
src/main/java/com/caoccao/javet/interop/IV8Native.java:651
↓ 12 callersMethodisNotEmpty
Is not empty. @param str the str @return true : not empty, false : empty @since 3.0.3
src/main/java/com/caoccao/javet/utils/StringUtils.java:107
↓ 12 callersFunctionrunCommand
(cmd: string[])
cpp/jni-build.ts:226
↓ 12 callersMethodsetConverter
Sets converter. @param converter the converter @since 0.9.1
src/main/java/com/caoccao/javet/interop/V8Runtime.java:3854
↓ 12 callersMethodstrictEquals
Strict equals. <p> The behavior is different from JS behavior but is the same as Java behavior. @param v8Value the V8 value @return true : strict equ
src/main/java/com/caoccao/javet/values/IV8Value.java:160
↓ 11 callersFunctionClearJNIException
cpp/jni/javet_exceptions.h:47
↓ 11 callersMethodcontainsV8Module
Contains a V8 module by resource name. @param resourceName the resource name @return true : yes, false : no @since 0.8.1
src/main/java/com/caoccao/javet/interop/V8Runtime.java:731
↓ 11 callersMethodfill
Polyfill Array.prototype.fill() The fill() method of Array instances changes all elements within a range of indices in an array to a static value. It
src/main/java/com/caoccao/javet/interop/proxy/plugins/JavetProxyPluginList.java:522
↓ 11 callersMethodfind
Polyfill Array.prototype.find(). The find() method of Array instances returns the first element in the provided array that satisfies the provided test
src/main/java/com/caoccao/javet/interop/proxy/plugins/JavetProxyPluginList.java:616
↓ 11 callersMethodgetCallbackContextCount
Gets callback context count. @return the callback context count @since 0.9.12
src/main/java/com/caoccao/javet/interop/V8Runtime.java:1558
↓ 11 callersMethodgetDetailedMessage
Gets detailed message. @return the detailed message @since 3.0.4
src/main/java/com/caoccao/javet/interfaces/IJavetEntityError.java:44
↓ 11 callersMethodgetIdleEngineCount
Gets idle engine count. @return the idle engine count @since 0.7.0
src/main/java/com/caoccao/javet/interop/engine/IJavetEnginePool.java:153
↓ 11 callersMethodgetJSScopeType
Gets {@link JSScopeType}. <p> Note: If a function is not properly initialized, this call may crash the whole JVM. @return the JS scope type @throws J
src/main/java/com/caoccao/javet/values/reference/IV8ValueFunction.java:423
↓ 11 callersMethodgetScopeObject
Gets scope object. @return the scope object @since 2.0.2
src/main/java/com/caoccao/javet/values/reference/IV8ValueFunction.java:721
↓ 11 callersMethodisFunction
Returns whether this scope type is {@link #Function}. @return {@code true} if this is a function scope, {@code false} otherwise
src/main/java/com/caoccao/javet/enums/JSScopeType.java:138
↓ 11 callersMethodisNull
Is null. @return true : null, false : not null @since 0.7.2
src/main/java/com/caoccao/javet/values/IV8Value.java:114
↓ 11 callersMethodisPresent
Is present. @return true : present, false : not present @since 1.0.7
src/main/java/com/caoccao/javet/values/primitive/V8ValuePrimitive.java:103
↓ 11 callersMethodlogWarn
Log warn. @param format the format @param objects the objects @since 0.7.0
src/main/java/com/caoccao/javet/interfaces/IJavetLogger.java:111
↓ 11 callersMethodwarn
Warn. @param message the message @since 0.7.0
src/main/java/com/caoccao/javet/interfaces/IJavetLogger.java:121
↓ 10 callersFunctionConvertFromStdStringToStringViewPointer
cpp/jni/javet_inspector.cpp:47
↓ 10 callersMethodaccept
Accept. @param key the key @param value the value @throws JavetException the javet exception @throws E the custom exception @since 0.8
src/main/java/com/caoccao/javet/interfaces/IJavetBiConsumer.java:41
↓ 10 callersMethodcreateV8ValueProxy
Create V8 value proxy. @return the V8 value proxy @throws JavetException the javet exception @since 0.9.6
src/main/java/com/caoccao/javet/interop/IV8Creatable.java:272
↓ 10 callersMethodcreateV8ValueSet
Create V8 value set. @return the V8 value set @throws JavetException the javet exception @since 0.7.0
src/main/java/com/caoccao/javet/interop/IV8Creatable.java:295
↓ 10 callersMethodgetDouble
Gets element as double by key object. @param index the index @return the element as double @throws JavetException the javet exception @since 2.0.1
src/main/java/com/caoccao/javet/values/reference/IV8Context.java:96
↓ 10 callersMethodgetGlobalObject
Gets the global object. By default, it is <code>globalThis</code>. @return the global object @throws JavetException the javet exception @since 0.7.0
src/main/java/com/caoccao/javet/interop/V8Runtime.java:1636
↓ 10 callersMethodgetJavetLogger
Gets javet logger. @return the javet logger @since 0.9.1
src/main/java/com/caoccao/javet/interop/engine/JavetEngineConfig.java:209
↓ 10 callersMethodgetOwnPropertyNames
Gets own property names. <p> The return value must be consumed, otherwise memory leak may occur. @return the own property names @throws JavetExceptio
src/main/java/com/caoccao/javet/values/reference/IV8ValueObject.java:516
↓ 10 callersMethodgetStatus
Gets status. @return the status @throws JavetException the javet exception @since 0.8.0
src/main/java/com/caoccao/javet/values/reference/IV8Module.java:173
↓ 10 callersMethodgetV8Instance
Gets V8 instance. <p> Note: V8 runtime library is loaded by a custom class loader. @return the V8 instance @since 0.8.0
src/main/java/com/caoccao/javet/interop/V8Host.java:161
↓ 10 callersMethodincludes
The includes() method of Array instances determines whether an array includes a certain value among its entries, returning true or false as appropriat
src/main/java/com/caoccao/javet/utils/ListUtils.java:91
↓ 10 callersMethodindexOf
The indexOf() method of Array instances returns the first index at which a given element can be found in the array, or -1 if it is not present. @para
src/main/java/com/caoccao/javet/utils/ListUtils.java:113
↓ 10 callersMethodinstantiate
Instantiate. @return true : instantiated, false : not instantiated @throws JavetException the javet exception @since 0.8.0
src/main/java/com/caoccao/javet/values/reference/IV8Module.java:182
↓ 10 callersMethodinvokeInteger
Invoke function and return an integer by function name and objects as arguments. @param functionName the function name @param objects the object
src/main/java/com/caoccao/javet/values/reference/IV8ValueObject.java:1101
↓ 10 callersMethodregister
Register the interceptor to the given V8 value object. @param iV8ValueObjects the V8 value objects @return true: success, false: failure @throws Jave
src/main/java/com/caoccao/javet/interfaces/IJavetInterceptor.java:36
↓ 9 callersMethodClearExternalException
cpp/jni/javet_v8_runtime.h:60
↓ 9 callersFunctionIS_V8_PROMISE
cpp/jni/javet_enums.h:217
↓ 9 callersFunctionInitialize
cpp/jni/javet_native.cpp:88
↓ 9 callersFunctionIsV8ValueInteger
cpp/jni/javet_converter.h:55
↓ 9 callersFunctionToJavaIntegerFromV8ValueInteger
cpp/jni/javet_converter.h:70
↓ 9 callersMethodcopyOf
Get a copy of the array object. @param object the array object @return the new array @since 3.0.4
src/main/java/com/caoccao/javet/utils/ArrayUtils.java:38
↓ 9 callersMethodget
Get the property value by a property key with this object passed in. @param thisObject the this object @return the V8 value @throws JavetException th
src/main/java/com/caoccao/javet/interop/callback/IJavetDirectCallable.java:96
↓ 9 callersMethodgetActiveEngineCount
Gets active engine count. @return the active engine count @since 0.7.0
src/main/java/com/caoccao/javet/interop/engine/IJavetEnginePool.java:42
↓ 9 callersMethodgetCachedData
Get cached data. @return the cached data @since 2.0.3
src/main/java/com/caoccao/javet/interop/executors/IV8Executor.java:152
↓ 9 callersMethodgetCallbackMethod
Gets callback method. @param <T> the type parameter @return the callback method @since 0.9.1
src/main/java/com/caoccao/javet/interop/callback/JavetCallbackContext.java:228
↓ 9 callersMethodgetResourceName
Gets resource name. @return the resource name @since 0.8.0
src/main/java/com/caoccao/javet/interop/executors/IV8Executor.java:160
↓ 9 callersMethodgetSourceCode
Gets source code. @return the source code @throws JavetException the javet exception @since 0.8.8
src/main/java/com/caoccao/javet/values/reference/IV8ValueFunction.java:468
↓ 9 callersMethodgetStack
Gets stack. @return the stack @since 3.0.4
src/main/java/com/caoccao/javet/interfaces/IJavetEntityError.java:60
↓ 9 callersMethodgetTargetObject
Gets target object. @return the target object @since 0.9.6
src/main/java/com/caoccao/javet/interop/proxy/IJavetProxyHandler.java:244
↓ 9 callersMethodinvokeString
Invoke function and return a string by function name and objects as arguments. @param functionName the function name @param objects the objects
src/main/java/com/caoccao/javet/values/reference/IV8ValueObject.java:1159
↓ 9 callersMethodisEmpty
Test if the input byte array is empty. @param array the array @return true : empty, false : not empty @since 3.0.3
src/main/java/com/caoccao/javet/utils/ArrayUtils.java:96
↓ 9 callersMethodisEmpty
Is empty. @return true : empty, false : not empty @since 1.0.7
src/main/java/com/caoccao/javet/values/primitive/V8ValuePrimitive.java:93
↓ 9 callersMethodisRevoked
Is revoked. @return the boolean @throws JavetException the javet exception @since 0.9.6
src/main/java/com/caoccao/javet/values/reference/IV8ValueProxy.java:55
↓ 9 callersMethodreceiveNotification
Receive a notification message from the V8 inspector. @param message the notification message
src/main/java/com/caoccao/javet/interop/IV8InspectorListener.java:73
↓ 9 callersMethodsetSourceCode
Sets source code with default options. 1. Do not perform the position calculation at the native layer. 2. Do not trim the tailing characters. 3. Do no
src/main/java/com/caoccao/javet/values/reference/IV8ValueFunction.java:556
↓ 9 callersMethodtoV8Value
Convert object to V8 value. @param <T> the type parameter @param <V> the type parameter @param object the object @return the V8 value @throws J
src/main/java/com/caoccao/javet/interop/IV8Convertible.java:77
↓ 8 callersFunctionIS_V8_SYMBOL
cpp/jni/javet_enums.h:222
↓ 8 callersFunctionThrowV8Exception
cpp/jni/javet_exceptions.cpp:193
↓ 8 callersMethodbindFunction
Binds function by name symbol and callback context. <p> It is for creating a Java code based function in V8. @param javetCallbackContext the javet ca
src/main/java/com/caoccao/javet/values/reference/IV8ValueObject.java:88
↓ 8 callersMethodcompileV8ValueFunction
Compile V8 value function. @return the V8 value function @throws JavetException the javet exception @since 2.0.3
src/main/java/com/caoccao/javet/interop/executors/IV8Executor.java:116
↓ 8 callersMethodgetCallCount
()
src/test/java/com/caoccao/javet/mock/MockDirectProxyListHandler.java:40
↓ 8 callersMethodgetDetailedMessage
Gets detailed message. @return the detailed message @since 1.0.7
src/main/java/com/caoccao/javet/exceptions/JavetScriptingError.java:137
↓ 8 callersMethodgetException
Gets exception. @return the exception @throws JavetException the javet exception @since 0.8.0
src/main/java/com/caoccao/javet/values/reference/IV8Module.java:116
↓ 8 callersMethodgetJSFunctionType
()
src/main/java/com/caoccao/javet/values/reference/V8ValueFunction.java:149
↓ 8 callersMethodgetJSFunctionType
Gets {@link JSFunctionType}. @return the JS function type @throws JavetException the javet exception @since 0.8.8
src/main/java/com/caoccao/javet/values/reference/IV8ValueFunction.java:412
↓ 8 callersMethodgetPropertyInteger
Gets property value as integer by key object. @param key the key @return the property value as integer @throws JavetException the javet exception @si
src/main/java/com/caoccao/javet/values/reference/IV8ValueObject.java:741
↓ 8 callersMethodgetResult
Gets result. @param <Value> the type parameter @return the result @throws JavetException the javet exception @since 0.8.0
src/main/java/com/caoccao/javet/values/reference/IV8ValuePromise.java:101
↓ 8 callersMethodgetSourceLine
Gets source line. @return the source line
src/main/java/com/caoccao/javet/exceptions/JavetScriptingError.java:196
↓ 8 callersMethodgetSymbolType
Gets symbol type. @return the symbol type @since 0.9.11
src/main/java/com/caoccao/javet/interop/binding/MethodDescriptor.java:89
↓ 8 callersMethodisBuiltInModuleResolution
Is built-in module resolution enabled. @return true if built-in module resolution is enabled @since 5.0.6
src/main/java/com/caoccao/javet/interop/options/NodeRuntimeOptions.java:72
↓ 8 callersMethodisDigital
Is digital. @param str the str @return true : yes, false : no @since 1.0.6
src/main/java/com/caoccao/javet/utils/StringUtils.java:66
↓ 8 callersFunctionmapSet
cpp/jni/javet_jni_map.cpp:62
↓ 8 callersMethodmax
Returns the larger of two half-precision float values (the value closest to positive infinity). Special values are handled in the following ways: <ul>
src/main/java/com/caoccao/javet/utils/Float16.java:382
↓ 8 callersFunctionobjectSet
cpp/jni/javet_jni_object.cpp:87
↓ 8 callersMethodsameValue
Same value. <p> The behavior is different from JS behavior but is the same as Java behavior. @param v8Value the V8 value @return true : same, false :
src/main/java/com/caoccao/javet/values/IV8Value.java:148
↓ 8 callersMethodsetCalled
(boolean called)
src/test/java/com/caoccao/javet/mock/MockCallbackReceiver.java:180
↓ 8 callersMethodsetProxyListEnabled
Sets proxy list enabled. @param proxyListEnabled the proxy list enabled @return the self @since 3.0.3
src/main/java/com/caoccao/javet/interop/converters/JavetConverterConfig.java:526
↓ 8 callersMethodsetReflectionObjectFactory
Sets reflection object factory. @param reflectionObjectFactory the reflection object factory @return the self @since 2.0.1
src/main/java/com/caoccao/javet/interop/converters/JavetConverterConfig.java:583
↓ 8 callersMethodsetScriptSource
Sets script source. @param scriptSource the script source @return true : success, false : failure @throws JavetException the javet exception @since 2
src/main/java/com/caoccao/javet/values/reference/IV8ValueFunction.java:530
↓ 8 callersMethodsetWeak
Set a V8 value as a weak reference with an associated object reference. @param v8RuntimeHandle the V8 runtime handle @param v8ValueHandle the V8 va
src/main/java/com/caoccao/javet/interop/IV8Native.java:1895
↓ 8 callersMethodtoApproximatePrimitive
To approximate primitive object. @param expectedClass the expected class @param object the object @return the object @since 1.0.1
src/main/java/com/caoccao/javet/utils/JavetTypeUtils.java:46
↓ 8 callersMethodtoExactPrimitive
To exact primitive object. @param expectedClass the expected class @param object the object @return the object @since 0.9.13
src/main/java/com/caoccao/javet/utils/JavetTypeUtils.java:166
↓ 7 callersFunctionToV8Integer
cpp/jni/javet_converter.h:245
↓ 7 callersMethodbatchGet
Batch get the given range of items from the array. @param v8Values the V8 values @param startIndex the start index @param endIndex the end index
src/main/java/com/caoccao/javet/values/reference/IV8ValueArray.java:83
↓ 7 callersMethodcreateV8ValueArrayBuffer
Create V8 value array buffer from a given length. @param length the length @return the V8 value array buffer @throws JavetException the javet excepti
src/main/java/com/caoccao/javet/interop/IV8Creatable.java:68
↓ 7 callersMethodgetBuiltInObject
Gets built-in Object. @return the built-in Object @throws JavetException the javet exception @since 0.9.2
src/main/java/com/caoccao/javet/values/reference/V8ValueGlobalObject.java:92
↓ 7 callersMethodgetEndColumn
Gets end column. @return the end column @since 0.9.1
src/main/java/com/caoccao/javet/exceptions/JavetScriptingError.java:147
↓ 7 callersMethodgetFieldMap
Gets field map. @return the field map @since 1.1.7
src/main/java/com/caoccao/javet/interop/binding/ClassDescriptor.java:204
↓ 7 callersMethodgetId
()
src/test/java/com/caoccao/javet/interop/callback/TestV8FunctionCallback.java:110
↓ 7 callersMethodgetLibFile
(JSRuntimeType jsRuntimeType)
src/test/java/com/caoccao/javet/BaseTestJavet.java:93
↓ 7 callersFunctiongetLibraryFileName
(config: BuildConfig)
cpp/jni-build.ts:290
↓ 7 callersMethodgetLineNumber
Gets line number. @return the line number @since 0.9.1
src/main/java/com/caoccao/javet/exceptions/JavetScriptingError.java:167
↓ 7 callersMethodgetLogger
()
src/test/java/com/caoccao/javet/tutorial/DecimalJavetInV8Mode.java:66
↓ 7 callersMethodgetResourceName
Gets resource name. @return the resource name @since 0.9.1
src/main/java/com/caoccao/javet/exceptions/JavetScriptingError.java:187
↓ 7 callersMethodgetStartColumn
Gets start column. @return the start column @since 0.9.1
src/main/java/com/caoccao/javet/exceptions/JavetScriptingError.java:216
↓ 7 callersMethodgetV8RuntimeCount
Gets V8 runtime count. @return the V8 runtime count @since 0.8.0
src/main/java/com/caoccao/javet/interop/V8Host.java:443
↓ 7 callersMethodisWeak
Check if a V8 value is a weak reference. @param v8RuntimeHandle the V8 runtime handle @param v8ValueHandle the V8 value handle @param v8ValueType
src/main/java/com/caoccao/javet/interop/IV8Native.java:677
↓ 7 callersMethodload
Load. @throws JavetException the javet exception @since 0.8.0
src/main/java/com/caoccao/javet/interop/loader/JavetLibLoader.java:324
↓ 7 callersMethodmapSetNull
Set a null value in a Map by key. @param v8RuntimeHandle the V8 runtime handle @param v8ValueHandle the V8 value handle @param v8ValueType the
src/main/java/com/caoccao/javet/interop/IV8Native.java:910
↓ 7 callersMethodobjectSetAccessor
Set a property accessor (getter/setter) on an Object. @param v8RuntimeHandle the V8 runtime handle @param v8ValueHandle the V8 value handle @param
src/main/java/com/caoccao/javet/interop/IV8Native.java:1346
↓ 7 callersMethodobjectSetNull
Set a null property on an Object by key. @param v8RuntimeHandle the V8 runtime handle @param v8ValueHandle the V8 value handle @param v8ValueType
src/main/java/com/caoccao/javet/interop/IV8Native.java:1407
← previousnext →201–300 of 4,340, ranked by callers