/test/xts/acts/commonlibrary/thirdparty/musl/entry/src/main/cpp/ |
H A D | semaphorendk.cpp | 46 int first = PARAM_0;
in SemGetvalue() local 47 napi_get_value_int32(env, args[0], &first);
in SemGetvalue() 49 int ret = sem_getvalue(&semp, &first);
in SemGetvalue() 104 int first = PARAM_0;
in SemInit() local 105 napi_get_value_int32(env, args[0], &first);
in SemInit() 107 int ret = sem_init(&bin_sem, PARAM_0, first);
in SemInit() 136 int first = PARAM_0;
in SemPost() local 137 napi_get_value_int32(env, args[0], &first);
in SemPost() 155 int first = PARAM_0;
in SemWait() local 156 napi_get_value_int32(env, args[0], &first);
in SemWait() 171 int first = PARAM_0; SemTrywait() local 187 int first = PARAM_0; SemTimedwait() local [all...] |
H A D | schedndk.cpp | 47 int first = PARAM_0;
in SchedGetPriorityMax() local 48 napi_get_value_int32(env, args[0], &first);
in SchedGetPriorityMax() 49 int maxvalue = sched_get_priority_max(first);
in SchedGetPriorityMax() 60 int first = PARAM_0;
in SchedGetPriorityMin() local 61 napi_get_value_int32(env, args[0], &first);
in SchedGetPriorityMin() 62 int minvalue = sched_get_priority_min(first);
in SchedGetPriorityMin() 92 int first = PARAM_0;
in SchedGetscheduler() local 93 napi_get_value_int32(env, args[0], &first);
in SchedGetscheduler() 96 if (first == PARAM_0) {
in SchedGetscheduler() 100 if (first in SchedGetscheduler() 115 int first = PARAM_0; SchedSetparam() local 144 int first = PARAM_0; SchedSetscheduler() local 206 int first = PARAM_0; SchedRrGetInterval() local [all...] |
H A D | selectndk.cpp | 48 int first = PARAM_0;
in Select() local 50 napi_get_value_int32(env, args[0], &first);
in Select() 51 if (first == PARAM_0) {
in Select()
|
H A D | ctypendk.cpp | 120 int first;
in Isascii() local 121 napi_get_value_int32(env, args[0], &first);
in Isascii() 122 int retVal = isascii(first);
in Isascii() 175 int first;
in Iscntrl() local 176 napi_get_value_int32(env, args[0], &first);
in Iscntrl() 177 int retVal = iscntrl(first);
in Iscntrl() 192 int first;
in IscntrlL() local 193 napi_get_value_int32(env, args[0], &first);
in IscntrlL() 194 int retVal = iscntrl_l(first, INPUT_VALUE_ZERO);
in IscntrlL()
|
H A D | wctypendk.cpp | 177 int first;
in Iswcntrl() local 178 napi_get_value_int32(env, args[0], &first);
in Iswcntrl() 179 int retVal = iswcntrl(first);
in Iswcntrl() 195 int first;
in IswcntrlL() local 196 napi_get_value_int32(env, args[0], &first);
in IswcntrlL() 197 int retVal = iswcntrl_l(first, PARAM_0);
in IswcntrlL()
|
H A D | mathndk.cpp | 1903 double first;
in Scalblnl() local 1904 napi_get_value_double(env, args[0], &first);
in Scalblnl() 1907 double value = scalblnl(first, second);
in Scalblnl() 1918 double first;
in Scalbn() local 1919 napi_get_value_double(env, args[0], &first);
in Scalbn() 1922 double value = scalbn(first, second);
in Scalbn() 1933 double first;
in Scalblnf() local 1934 napi_get_value_double(env, args[0], &first);
in Scalblnf() 1937 double value = scalblnf(first, second);
in Scalblnf() 1948 double first;
in Scalbnf() local 1963 double first; Scalbnl() local [all...] |
/test/xts/acts/multimedia/media/media_cpp_standard/codecFormatNdk/ |
H A D | ActsCodecFormatNdkTest.cpp | 50 if (t.second.first) { in CheckDecDesc() 51 res = OH_AVFormat_GetLongValue(OutDesc, t.first.c_str(), &out_int64); in CheckDecDesc() 54 res = OH_AVFormat_GetIntValue(OutDesc, t.first.c_str(), &out_int32); in CheckDecDesc() 56 cout << "key: " << t.first << "; out: " << out_int32 << endl; in CheckDecDesc() 58 cout << "OH_AVFormat_Get Value Fail. key:" << t.first << endl; in CheckDecDesc() 62 cout << "OH_AVFormat_Get Value error. key: " << t.first in CheckDecDesc() 75 key = t.first.c_str(); in SetFormat() 77 if (t.second.first) { in SetFormat() 83 cout << "OH_AV_Format Put Value Fail. format key: " << t.first in SetFormat()
|
/test/xts/acts/distributeddatamgr/distributedKVStoretest/distributedKVStorejstest/hap/entry/src/ohosTest/js/test/ |
H A D | SchemaJsTest.js | 34 value : '{"english":{"first":"leda' + i + '", "second":"yang"}}'
68 query.like('$.english.first', 'led%');
153 let first = new ddm.FieldNode('first');
154 first.type = ddm.ValueType.STRING;
155 first.nullable = false;
156 first.default = 'first name';
165 english.appendChild(first);
170 schema.indexes = ['$.english.first', ' [all...] |
/test/xts/acts/distributeddatamgr/kvStoretest/kvStorejstest/hap/entry/src/ohosTest/js/test/ |
H A D | SchemaJsunit.test.js | 31 value : '{"english":{"first":"leda' + i + '", "second":"yang"}}' 65 query.like('$.english.first', 'led%'); 157 let first = new ddm.FieldNode('first'); 158 first.type = ddm.ValueType.STRING; 159 first.nullable = false; 160 first.default = 'first name'; 169 english.appendChild(first); 174 schema.indexes = ['$.english.first', ' [all...] |
/test/xts/acts/multimedia/media/media_cpp_standard/audioDecEncNdk/src/ |
H A D | ActsAudioDecEncNdkTest.cpp | 65 bool res = OH_AVFormat_GetIntValue(OutDesc, t.first.c_str(), &out); in CheckDecDesc() 66 cout << "key: " << t.first << "; out: " << out <<endl; in CheckDecDesc() 68 cout << "OH_AVFormat_GetIntValue Fail. key:" << t.first << endl; in CheckDecDesc() 72 cout << "OH_AVFormat_GetIntValue error. key: " << t.first in CheckDecDesc() 86 key = t.first.c_str(); in SetFormat() 88 cout << "OH_AV_FormatPutIntValue Fail. format key: " << t.first in SetFormat()
|
/test/xts/acts/multimedia/media/media_cpp_standard/videoDecEncNdk/src/ |
H A D | ActsVideoDecEncNdkTest.cpp | 55 bool res = OH_AVFormat_GetIntValue(OutDesc, t.first.c_str(), &out); in CheckDecDesc() 56 cout << "key: " << t.first << "; out: " << out <<endl; in CheckDecDesc() 58 cout << "OH_AVFormat_GetIntValue Fail. key:" << t.first << endl; in CheckDecDesc() 62 cout << "OH_AVFormat_GetIntValue error. key: " << t.first in CheckDecDesc() 82 key = t.first.c_str(); in SetFormat() 84 cout << "OH_AV_FormatPutIntValue Fail. format key: " << t.first in SetFormat()
|
/test/ostest/wukong/report/src/ |
H A D | statistics_event.cpp | 35 DEBUG_LOG_STR("start bundlename{%s}", bundle.first.c_str()); in StatisticsDetail() 53 table->SetName(bundle.first); in StatisticsDetail() 55 destTables[bundle.first] = table; in StatisticsDetail()
|
H A D | statistics_componment.cpp | 37 DEBUG_LOG_STR("start bundlename{%s}", bundle.first.c_str()); in StatisticsDetail() 57 table->SetName(bundle.first); in StatisticsDetail() 59 destTables[bundle.first] = table; in StatisticsDetail()
|
H A D | statistics_ability.cpp | 42 DEBUG_LOG_STR("start bundlename{%s}", bundle.first.c_str()); in StatisticsDetail()
|
/test/testfwk/arkxtest/uitest/record/ |
H A D | pointer_info.h | 41 void SetFirstTouchEventInfo(TouchEventInfo& first) in SetFirstTouchEventInfo() argument 43 firstTouchEventInfo = first; in SetFirstTouchEventInfo()
|
/test/testfwk/xdevice/ |
H A D | run.bat | 35 @echo "Please install pip first!" 42 @echo "Please install setuptools first!"
|
/test/xts/hats/hdf/camera/cameraHdi/buffer_manager/ |
H A D | buffer_manager_utest.cpp | 379 EXPECT_EQ(true, graph.front().first == "SourceNode"); in HWTEST_F() 381 EXPECT_EQ(true, graph.back().first == "SinkNode"); in HWTEST_F() 384 std::cout << "node [" << it->first << "] has buffer {"; in HWTEST_F() 578 return b.first == sb; in EnqueueBufferNonBlock() 620 surfaceBuffer = it->first; in DequeueBuffer()
|
/test/xts/acts/ai/neural_network_runtime/v2_0/common/ |
H A D | mock_idevice.cpp | 68 ret = iDevice->GetVersion(hdiVersion.first, hdiVersion.second); in HDIDeviceV2_0Creator() 74 version = 'v' + std::to_string(hdiVersion.first) + '_' + std::to_string(hdiVersion.second); in HDIDeviceV2_0Creator()
|
/test/xts/acts/ai/nncore/opstest/src/ |
H A D | mock_idevice.cpp | 68 ret = iDevice->GetVersion(hdiVersion.first, hdiVersion.second); in HDIDeviceV2_1Creator() 74 version = 'v' + std::to_string(hdiVersion.first) + '_' + std::to_string(hdiVersion.second); in HDIDeviceV2_1Creator()
|
/test/xts/acts/ai/neural_network_runtime/v1_0/common/ |
H A D | mock_idevice.cpp | 54 hdiRet = iDevice->GetVersion(hdiVersion.first, hdiVersion.second); in HDIDeviceV1_0Creator() 59 version = 'v' + std::to_string(hdiVersion.first) + '_' + std::to_string(hdiVersion.second); in HDIDeviceV1_0Creator()
|
/test/xts/acts/ai/nncore/common/ |
H A D | mock_idevice.cpp | 68 ret = iDevice->GetVersion(hdiVersion.first, hdiVersion.second); in HDIDeviceV2_0Creator() 74 version = 'v' + std::to_string(hdiVersion.first) + '_' + std::to_string(hdiVersion.second); in HDIDeviceV2_0Creator()
|
/test/xts/hats/hdf/display/composer/common/ |
H A D | hdi_test_display.cpp | 154 DISPLAY_TEST_LOGE("layer %{public}d Prepare failed", layerMap.first)); in PrepareDisplayLayers() 179 ClearColor(*handle, 0); // need clear the fb first in Commit() 233 uint32_t layerId = iter.first; in Clear()
|
/test/xts/acts/global_lite/i18n_lite/resource_parse_load/src/ |
H A D | test_common.cpp | 56 std::string key = iter->first; in PrintMapString()
|
/test/xts/acts/kernel_lite/sys_posix/src/ |
H A D | SysApiTest.cpp | 474 Myque *first = head; 480 } while (head != first);
|
/test/testfwk/arkxtest/uitest/core/ |
H A D | ui_driver.cpp | 522 events.emplace_back(KeyEvent {ActionStage::DOWN, pair.first, typeCharTimeMs}); in TextToKeyEvents() 526 events.emplace_back(KeyEvent {ActionStage::UP, pair.first, 0}); in TextToKeyEvents()
|