Home
last modified time | relevance | path

Searched refs:res4 (Results 1 – 16 of 16) sorted by relevance

/ohos5.0/commonlibrary/rust/ylong_http/ylong_http/src/h1/response/
H A Ddecoder.rs647 ($res1:expr, $res2:expr, $res3:expr, $res4:expr, $res5:expr) => {{
652 assert_eq!($res4.len(), result.0.headers.len());
653 for (key, value) in $res4 {
664 ($res1:expr, $res2:expr, $res3:expr, $res4:expr, $res5:expr) => {{
671 assert_eq!($res4.len(), result.0.headers.len());
672 for (key, value) in $res4 {
/ohos5.0/commonlibrary/ets_utils/js_sys_module/console/test/
H A Dtest_console.cpp148 napi_value res4 = nullptr; variable
151 napi_call_function(env, nullptr, cb, argc, argv, &res4);
152 ASSERT_CHECK_VALUE_TYPE(env, res4, napi_undefined);
601 napi_value res4 = nullptr; variable
603 napi_call_function(env, nullptr, cb, argc2, argv2, &res4);
604 ASSERT_CHECK_VALUE_TYPE(env, res4, napi_undefined);
788 napi_value res4 = nullptr; variable
791 napi_call_function(env, nullptr, cb, argc, argv, &res4);
792 ASSERT_CHECK_VALUE_TYPE(env, res4, napi_undefined);
/ohos5.0/foundation/deviceprofile/device_info_manager/services/core/test/unittest/
H A Dprofile_utils_test.cpp1178 bool res4 = ProfileUtils::IsPropertyValid(propertyMap, property, i64MinValue, i64MaxValue); variable
1179 EXPECT_EQ(false, res4);
1208 bool res4 = ProfileUtils::IsPropertyValid(propertyMap, property, maxValue); variable
1209 EXPECT_EQ(false, res4);
1239 bool res4 = ProfileUtils::IsPropertyValid(propertyMap, property, minValue, maxValue); variable
1240 EXPECT_EQ(false, res4);
1270 bool res4 = ProfileUtils::IsPropertyValid(propertyMap, property, minValue, maxValue); variable
1271 EXPECT_EQ(false, res4);
1301 bool res4 = ProfileUtils::IsPropertyValid(propertyMap, property, minValue, maxValue); variable
1302 EXPECT_EQ(false, res4);
/ohos5.0/foundation/arkui/ace_engine/test/unittest/interfaces/
H A Ddrawable_descriptor_test.cpp124 auto res4 = imageConverter.BitmapToPixelMap(bitmap, opts); variable
125 EXPECT_EQ(res4, nullptr);
180 … auto res4 = drawableDescriptorFactory.Create(drawableInfoName, resourceMgr, state, drawableType); variable
181 EXPECT_EQ(res4, nullptr);
/ohos5.0/foundation/multimedia/image_framework/frameworks/innerkitsimpl/test/unittest/pixel_map_test/
H A Dimage_pixel_map_switch_test.cpp940 uint32_t res4 = pixelMap.ReadPixels(bufferSize, offset, stride, rect, dst); variable
941 ASSERT_EQ(res4, ERR_IMAGE_INVALID_PARAMETER);
1009 uint32_t res4 = pixelMap.ReadPixels(bufferSize, offset, stride, rect, dst); variable
1010 ASSERT_EQ(res4, ERR_IMAGE_INVALID_PARAMETER);
1146 uint32_t res4 = pixelMap.SetAlpha(percent); variable
1147 ASSERT_EQ(res4, ERR_IMAGE_DATA_UNSUPPORT);
/ohos5.0/foundation/distributeddatamgr/pasteboard/interfaces/ndk/unittest/
H A Dpasteboard_capi_test.cpp287 int res4 = OH_Pasteboard_Subscribe(pasteboard, NOTIFY_LOCAL_DATA_CHANGE, nullptr); variable
288 EXPECT_EQ(res4, ERR_INVALID_PARAMETER);
336 int res4 = OH_Pasteboard_Unsubscribe(pasteboard, NOTIFY_LOCAL_DATA_CHANGE, nullptr); variable
337 EXPECT_EQ(res4, ERR_INVALID_PARAMETER);
/ohos5.0/foundation/distributeddatamgr/pasteboard/framework/test/src/
H A Dserializable_test.cpp165 bool res4; variable
178 ret = Serializable::GetValue(node, GET_NAME(param4), res4);
180 ASSERT_TRUE(res4);
/ohos5.0/foundation/multimedia/media_library/frameworks/innerkitsimpl/test/unittest/medialibrary_helper_test/src/
H A Dmedia_file_utils_test.cpp844 auto res4 = MediaFileUtils::OpenAsset(filePath4, mode4); variable
845 EXPECT_EQ(res4, -209);
880 auto res4 = MediaFileUtils::GetTableNameByDisplayName(displayName4); variable
881 EXPECT_EQ(res4, "");
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_installer_test/
H A Dbms_bundle_install_checker_test.cpp2142 bool res4 = installChecker.VaildInstallPermissionForShare(checkParam, hapVerifyRes); variable
2143 EXPECT_FALSE(res4);
2182 bool res4 = installChecker.VaildInstallPermissionForShare(checkParam, hapVerifyRes); variable
2183 EXPECT_FALSE(res4);
2219 bool res4 = installChecker.VaildEnterpriseInstallPermissionForShare(checkParam, provisionInfo); variable
2220 EXPECT_TRUE(res4);
H A Dbms_bundle_app_service_fwk_installer.cpp339 auto res4 = appServiceFwkInstaller.BeforeInstall(emptyVector, installParam); variable
340 EXPECT_EQ(res4, ERR_APPEXECFWK_INSTALL_PARAM_ERROR);
H A Dbms_bundle_install_driver_test.cpp1943 auto res4 = driverInstaller->CreateDriverSoDestinedDir(BUNDLE_NAME, variable
1945 EXPECT_TRUE(res4.empty());
/ohos5.0/foundation/ability/ability_runtime/test/unittest/mission_list_test/
H A Dmission_list_test.cpp874 bool res4 = missionList->MatchedInitialMission(mission1, "bundle1", 0); variable
875 EXPECT_FALSE(res4);
/ohos5.0/foundation/multimedia/media_library/frameworks/innerkitsimpl/test/unittest/medialibrary_thumbnail_service_test/src/
H A Dmedialibrary_thumbnail_service_test.cpp736 auto res4 = ThumbnailUtils::TrySaveFile(data, type4); variable
737 EXPECT_EQ(res4, -2302);
/ohos5.0/base/telephony/call_manager/test/unittest/call_manager_zero_gtest/src/
H A Dzero_branch6_test.cpp629 int32_t res4 = proxy->GetOnlineDeviceList(devList); variable
640 EXPECT_NE(res4, TELEPHONY_SUCCESS);
/ohos5.0/foundation/distributeddatamgr/pasteboard/interfaces/kits/napi/test/unittest/pasteboardapi/
H A DPasteBoardPromiseJsunit.test.js123 const res4 = await systemPasteboard.hasPasteData();
124 expect(res4).assertEqual(true);
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_manager_test/
H A Dbms_bundle_manager_test.cpp1402 bool res4 = BundleFileUtil::GetHapFilesFromBundlePath("", hapFileList); variable
1409 EXPECT_EQ(res4, false);