Home
last modified time | relevance | path

Searched refs:jsonString (Results 1 – 2 of 2) sorted by relevance

/test/xts/acts/testfwk/uitestScene/entry/src/main/ets/pages/
Ddrag.ets84 let jsonString:Record<string, number> = JSON.parse(extraParams)
86 this.text = this.numbers[jsonString.selectedIndex]
87 this.select = jsonString.selectedIndex
105 let jsonString:Record<string, number> = JSON.parse(extraParams)
107 this.numbers.splice(jsonString.insertIndex, 0, this.text)
110 this.numbers.splice(jsonString.selectedIndex, 1)
111 this.numbers.splice(jsonString.insertIndex, 0, this.text)
/test/xts/acts/commonlibrary/ark_runtime/ark_runtime_jsvm_test/entry/src/main/cpp/napi/
Dnapi_test.cpp7145 JSVM_Value jsonString = nullptr; in JsonParseNumber() local
7146 OH_JSVM_CreateStringUtf8(env, strNumber, strlen(strNumber), &jsonString); in JsonParseNumber()
7148 OH_JSVM_JsonParse(env, jsonString, &result); in JsonParseNumber()