Home
last modified time | relevance | path

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

/third_party/node/test/js-native-api/test_typedarray/
Dtest_typedarray.c20 bool is_typedarray; in Multiply() local
21 NODE_API_CALL(env, napi_is_typedarray(env, input_array, &is_typedarray)); in Multiply()
23 NODE_API_ASSERT(env, is_typedarray, in Multiply()
134 bool is_typedarray; in CreateTypedArray() local
135 NODE_API_CALL(env, napi_is_typedarray(env, input_array, &is_typedarray)); in CreateTypedArray()
137 NODE_API_ASSERT(env, is_typedarray, in CreateTypedArray()
195 bool is_typedarray; in Detach() local
196 NODE_API_CALL(env, napi_is_typedarray(env, args[0], &is_typedarray)); in Detach()
198 env, is_typedarray, in Detach()
/third_party/node/benchmark/napi/function_args/
Dnapi_binding.c126 bool is_typedarray = false; in CallWithTypedarray() local
127 status = napi_is_typedarray(env, args[0], &is_typedarray); in CallWithTypedarray()
130 assert(is_typedarray); in CallWithTypedarray()
131 if (is_typedarray) { in CallWithTypedarray()
/third_party/jerryscript/tests/unit-core/
Dtest-typedarray.cpp432 bool is_typedarray = jerry_value_is_typedarray (values[idx]); variable
433 TEST_ASSERT (is_typedarray == false);