Searched refs:is_typedarray (Results 1 – 3 of 3) sorted by relevance
/third_party/node/test/js-native-api/test_typedarray/ |
D | test_typedarray.c | 20 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/ |
D | napi_binding.c | 126 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/ |
D | test-typedarray.cpp | 432 bool is_typedarray = jerry_value_is_typedarray (values[idx]); variable 433 TEST_ASSERT (is_typedarray == false);
|