MCPcopy Create free account
hub / github.com/NativeScript/android / OneByteString

Function OneByteString

test-app/runtime/src/main/cpp/Util.h:55–62  ·  view source on GitHub ↗

Helpers from Node

Source from the content-addressed store, hash-verified

53
54// Helpers from Node
55inline v8::Local<v8::String> OneByteString(v8::Isolate* isolate,
56 const char* data,
57 int length) {
58 return v8::String::NewFromOneByte(isolate,
59 reinterpret_cast<const uint8_t*>(data),
60 v8::NewStringType::kNormal,
61 length).ToLocalChecked();
62}
63inline v8::Local<v8::String> OneByteString(v8::Isolate* isolate,
64 const signed char* data,
65 int length) {

Callers 2

FIXED_ONE_BYTE_STRINGFunction · 0.85
SetConstructorFunctionFunction · 0.85

Calls 1

ToLocalCheckedMethod · 0.80

Tested by

no test coverage detected