Home
last modified time | relevance | path

Searched refs:decodeToString (Results 1 – 4 of 4) sorted by relevance

/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_sdk/api/@ohos/util/
DTextDecoderTest.ets45 let resStr = textDecoder.decodeToString(uint8);
54 let resStr = textDecoder.decodeToString(uint8);
64 let resStr = textDecoder.decodeToString(uint8);
74 let resStr = textDecoder.decodeToString(uint8);
84 let retStr = textDecoder.decodeToString(uint8, {stream: true});
88 let resStr = textDecoder.decodeToString(uint8arr, {stream: true});
97 let resStr = textDecoder.decodeToString(uint8);
106 let resStr = textDecode.decodeToString(uint8, {});
174 let retStr = textDecode.decodeToString(arr, decodeWithStreamOptions);
/arkcompiler/ets_frontend/ets2panda/bindings/src/
DPlatform.ts17 import { decodeToString } from './arrays';
34 return decodeToString(data);
Darrays.ts24 export function decodeToString(array: Uint8Array): string { function
/arkcompiler/runtime_core/static_core/plugins/ets/sdk/api/
D@ohos.util.ets694 public decodeToString(input: Uint8Array, options?: DecodeToStringOptions): string {