Home
last modified time | relevance | path

Searched refs:first (Results 1 - 25 of 47) sorted by relevance

12

/test/xts/acts/commonlibrary/thirdparty/musl/entry/src/main/cpp/
H A Dsemaphorendk.cpp46 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 Dschedndk.cpp47 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 Dselectndk.cpp48 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 Dctypendk.cpp120 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 Dwctypendk.cpp177 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()
/test/xts/acts/multimedia/media/media_cpp_standard/codecFormatNdk/
H A DActsCodecFormatNdkTest.cpp50 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 DSchemaJsTest.js34 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 DSchemaJsunit.test.js31 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 DActsAudioDecEncNdkTest.cpp65 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 DActsVideoDecEncNdkTest.cpp55 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()
/applications/standard/contacts_data/ability/datadisasterrecovery/src/
H A Ddatabase_disaster_recovery.cpp72 int ret = SQLiteCheckDb(store_, kv.first); in SQLiteCheckDb()
127 int ret = BackDatabase(kv.first); in BackDatabase()
128 HILOG_INFO("BackDatabase %{public}s status is %{public}d", kv.first.c_str(), ret); in BackDatabase()
/test/ostest/wukong/report/src/
H A Dstatistics_event.cpp35 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 Dstatistics_componment.cpp37 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()
/applications/standard/calendardata/calendarmanager/native/src/
H A Dnative_util.cpp685 if (iter->first == "FREQ") { in GetUTCTime()
689 if (iter->first == "COUNT") { in GetUTCTime()
693 if (iter->first == "INTERVAL") { in GetUTCTime()
697 if (iter->first == "UNTIL") { in GetUTCTime()
700 if (iter->first == "BYDAY") { in GetUTCTime()
704 if (iter->first == "BYWEEKNO") { in GetUTCTime()
708 if (iter->first == "BYMONTHDAY") { in GetUTCTime()
712 if (iter->first == "BYYEARDAY") { in GetUTCTime()
716 if (iter->first == "BYMONTH") { in GetUTCTime()
/test/testfwk/arkxtest/uitest/record/
H A Dpointer_info.h41 void SetFirstTouchEventInfo(TouchEventInfo& first) in SetFirstTouchEventInfo() argument
43 firstTouchEventInfo = first; in SetFirstTouchEventInfo()
/test/testfwk/xdevice/
H A Drun.bat35 @echo "Please install pip first!"
42 @echo "Please install setuptools first!"
/applications/standard/app_samples/code/BasicFeature/Media/ImageEffect/entry/src/main/cpp/backend/
H A Dimage_edit.cpp210 CHECK_AND_RETURN_RET_LOG(array_length.first == napi_ok, data, in GetFilters()
211 "GetFilters napi_get_array_length fail! status=%{public}d", array_length.first); in GetFilters()
220 CHECK_AND_RETURN_RET_LOG(child_length.first == napi_ok, data, in GetFilters()
221 "GetFilters child napi_get_array_length fail! status=%{public}d", child_length.first); in GetFilters()
/applications/standard/calendardata/calendarmanager/napi/src/
H A Dcalendar_enum_napi.cpp87 auto &enumClassName = enumClass.first; in JsEnumIntInit()
123 auto &enumClassName = it->first; in JsEnumStringInit()
/test/xts/hats/hdf/camera/cameraHdi/buffer_manager/
H A Dbuffer_manager_utest.cpp379 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 Dmock_idevice.cpp68 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 Dmock_idevice.cpp68 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 Dmock_idevice.cpp54 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 Dmock_idevice.cpp68 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 Dhdi_test_display.cpp154 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 Dtest_common.cpp56 std::string key = iter->first; in PrintMapString()

Completed in 17 milliseconds

12