Home
last modified time | relevance | path

Searched refs:testString (Results 1 – 11 of 11) sorted by relevance

/test/xts/acts/arkui/ace_napi_test/entry/src/main/ets/test/
DNativeApiStringTest.ets57 console.info('aceNapiTest038 testString result is: ' + value + "--" + JSON.stringify(value));
61 console.info('aceNapiTest038 testString result is: ' + value + "--" + JSON.stringify(value));
62 …//console.info('aceNapiTest038 testString Object.getPrototypeOf(testObj) is: ' + Object.getPrototy…
75 console.info('aceNapiTest0121 testString result is: ' + value);
88 console.info('aceNapiTest0122 testString result is: ' + value);
101 console.info('aceNapiTest0137 testString result is: ' + value);
114 console.info('aceNapiTest0138 testString result is: ' + value);
134 console.info('aceNapiTest0139 testString result is: ' + e.data);
161 console.info('aceNapiTest0140 testString result is: ' + e.data);
181 console.info('aceNapiTest0141 testString result is: ' + value);
[all …]
DNapiTest.ets5065 console.info('testCheckTypeTag0001 testString isTag is: ' + isTag);
5066 console.info('testCheckTypeTag0001 testString isTag1 is: ' + isTag1);
5256 console.info('testGetNewInstance0001 testString result is: ' + value);
5277 console.info('testGetNewInstance0002 testString result is: ' + value);
5298 console.info('testDefineClass0001 testString result is: ' + value);
5319 console.info('testDefineClass0002 testString result is: ' + value);
5340 console.info('testDefineClass0003 testString result is: ' + value);
5361 console.info('testDefineClass0004 testString result is: ' + value);
5382 console.info('testDefineClass0005 testString result is: ' + value);
5403 console.info('testUnwrap0001 testString result is: ' + value);
[all …]
/test/xts/acts/commonlibrary/ets_utils/codeparsingtest/specialchartest/entry/src/ohosTest/ets/test/Emoji/
DEmoji_Builints_String.test.ets745 * @tc.name : testString.prototype.codePointAtEmoji0001
751 it('testString.prototype.codePointAtEmoji0001', 0, () => {
752 const TAG = "testString.prototype.codePointAtEmoji0001";
763 * @tc.name : testString.prototype.codePointAtEmoji0002
769 it('testString.prototype.codePointAtEmoji0002', 0, () => {
770 const TAG = "testString.prototype.codePointAtEmoji0002";
781 * @tc.name : testString.prototype.codePointAtEmoji0003
787 it('testString.prototype.codePointAtEmoji0003', 0, () => {
788 const TAG = "testString.prototype.codePointAtEmoji0003";
799 * @tc.name : testString.prototype.codePointAtEmoji0004
[all …]
/test/xts/acts/commonlibrary/ark_runtime/ark_runtime_jsvm_test/entry/src/main/ets/test/
DJsvmTest.ets54 console.info('JsvmTest001 testString result is:'+ value + "--" + JSON.stringify(value) );
65 console.info('JsvmTest002 testString result is:'+ value + "--" + JSON.stringify(value) );
77 console.info('JsvmTest003 testString result is:'+ value + "--" + JSON.stringify(value) );
89 console.info('JsvmTest004 testString result is:'+ value + "--" + JSON.stringify(value) );
101 console.info('JsvmTest005 testString result is:'+ value + "--" + JSON.stringify(value) );
113 console.info('JsvmTest006 testString result is:'+ value + "--" + JSON.stringify(value) );
125 console.info('JsvmTest007 testString result is:'+ value + "--" + JSON.stringify(value) );
137 console.info('JsvmTest008 testString result is:'+ value + "--" + JSON.stringify(value) );
149 console.info('Jsvm009 testString result is:'+ value + "--" + JSON.stringify(value) );
161 console.info('JsvmTest010 testString result is:'+ value + "--" + JSON.stringify(value) );
[all …]
/test/xts/acts/ability/ability_runtime/capichildprocess/entry/src/main/cpp/
Dhello.cpp219 auto testString = "test"; in StartChildWithArgs() local
220 write(fd, testString, strlen(testString)); in StartChildWithArgs()
/test/xts/acts/arkcompiler/ecmanewfeatures/entry/src/ohosTest/ets/test/
DES2020.test.ets146 * @tc.name : testString.prototype.matchAll
152 it('testString.prototype.matchAll', 0, () => {
/test/xts/acts/arkui/ace_ets_web_dev_webviewControllerError/entry/src/main/ets/MainAbility/pages/
DwebViewContJsMessageExtReturnError.ets206 'testString()',
/test/xts/acts/commonlibrary/ets_utils/taskpool_lib_standard/entry/src/ohosTest/ets/test/
DtestFunclist.ets64 export async function testString(args: string): Promise<void> {
DAbility.test.ets20 testString, testTime, testNumber, testTaskPool, promiseCase, asyncSum,
951 let task: taskpool.Task = new taskpool.Task(testString, "hello");
/test/xts/acts/arkui/ace_napi_test/entry/src/main/cpp/napi/
Dnapi_test.cpp1426 napi_value testString = nullptr; in strictEquals() local
1427 napi_create_string_utf8(env, testStringStr, strlen(testStringStr), &testString); in strictEquals()
1429 napi_strict_equals(env, testString, testString, &isStrictEquals); in strictEquals()
6578 napi_value testString = nullptr; in strictEqualsFirstValueNull() local
6579 napi_create_string_utf8(env, testStringStr, strlen(testStringStr), &testString); in strictEqualsFirstValueNull()
6581 napi_status status = napi_strict_equals(env, nullptr, testString, &isStrictEquals); in strictEqualsFirstValueNull()
6591 napi_value testString = nullptr; in strictEqualsSecondValueNull() local
6592 napi_create_string_utf8(env, testStringStr, strlen(testStringStr), &testString); in strictEqualsSecondValueNull()
6594 napi_status status = napi_strict_equals(env, testString, nullptr, &isStrictEquals); in strictEqualsSecondValueNull()
6604 napi_value testString = nullptr; in strictEqualsResultNull() local
[all …]
/test/xts/acts/commonlibrary/ark_runtime/ark_runtime_jsvm_test/entry/src/main/cpp/napi/
Dnapi_test.cpp1356 JSVM_Value testString = nullptr; in testValueOperation2() local
1357 OH_JSVM_CreateStringUtf8(env, testStringStr, strlen(testStringStr), &testString); in testValueOperation2()
1359 OH_JSVM_StrictEquals(env, testString, testString, &isStrictEquals); in testValueOperation2()