/test/testfwk/arkxtest/uitest/cj/ |
H A D | ui_event_observer_impl.cpp | 41 if (paramList.size() < 1 || paramList.at(0).type() != detail::value_t::string) { in PreprocessCallOnce() 81 DCHECK(in.paramList_.size() > INDEX_ZERO && in.paramList_.at(INDEX_ZERO).type() == detail::value_t::object); in InitCallbackContext() 82 DCHECK(in.paramList_.size() > INDEX_ONE && in.paramList_.at(INDEX_ONE).type() == detail::value_t::string); in InitCallbackContext() 83 DCHECK(in.paramList_.size() > INDEX_TWO && in.paramList_.at(INDEX_TWO).type() == detail::value_t::boolean); in InitCallbackContext() 84 DCHECK(in.paramList_.size() > INDEX_THREE && in.paramList_.at(INDEX_THREE).type() == detail::value_t::boolean); in InitCallbackContext()
|
H A D | uitest_ffi.cpp | 84 if (paramList.at(INDEX_ZERO).type() == nlohmann::detail::value_t::string) { in PreprocessTransaction() 88 if (paramList.at(INDEX_ONE).type() == nlohmann::detail::value_t::string) { in PreprocessTransaction() 92 if (paramList.size() < 1 || paramList.at(0).type() != nlohmann::detail::value_t::string) { in PreprocessTransaction()
|
/test/testfwk/arkxtest/uitest/napi/ |
H A D | ui_event_observer_napi.cpp | 45 if (paramList.size() < 1 || paramList.at(0).type() != detail::value_t::string) { in PreprocessCallOnce() 99 DCHECK(in.paramList_.size() > INDEX_ZERO && in.paramList_.at(INDEX_ZERO).type() == detail::value_t::object); in InitCallbackContext() 100 DCHECK(in.paramList_.size() > INDEX_ONE && in.paramList_.at(INDEX_ONE).type() == detail::value_t::string); in InitCallbackContext() 101 DCHECK(in.paramList_.size() > INDEX_TWO && in.paramList_.at(INDEX_TWO).type() == detail::value_t::boolean); in InitCallbackContext() 102 DCHECK(in.paramList_.size() > INDEX_THREE && in.paramList_.at(INDEX_THREE).type() == detail::value_t::boolean); in InitCallbackContext()
|
H A D | uitest_napi.cpp | 163 if (type == nlohmann::detail::value_t::null) { // return null in UnmarshalObject() 167 if (type != nlohmann::detail::value_t::string) { // non-string value, convert and return object in UnmarshalObject() 222 if (resultType == nlohmann::detail::value_t::null) { // return null in UnmarshalReply() 224 } else if (resultType == nlohmann::detail::value_t::array) { // return array in UnmarshalReply() 349 if (paramList.at(INDEX_ZERO).type() == nlohmann::detail::value_t::string) { in PreprocessTransaction() 353 if (paramList.at(INDEX_ONE).type() == nlohmann::detail::value_t::string) { in PreprocessTransaction() 357 if (paramList.size() < 1 || paramList.at(0).type() != nlohmann::detail::value_t::string) { in PreprocessTransaction()
|
/test/xts/acts/distributeddatamgr/relationalStoretest/relationalStoreJstest/hap/entry/src/ohosTest/js/test/ |
H A D | RelationalStoreCloudSync.test.js | 995 function Progress(detail) {
996 console.log(TAG + `Progress:` + JSON.stringify(detail));
1020 function Progress(detail) {
1021 console.log(TAG + `Progress:` + JSON.stringify(detail));
1045 function Progress(detail) {
1046 console.log(TAG + `Progress:` + JSON.stringify(detail));
1067 rdbStore.on("autoSyncProgress", function (detail) {
1068 console.log(TAG + `Progress:` + JSON.stringify(detail));
1069 expect(detail).notEquel(null);
1090 rdbStore.off("autoSyncProgress", function (detail) {
[all...] |
/test/ostest/wukong/report/src/ |
H A D | table.cpp | 46 void Table::SetDetail(std::string detail) in SetDetail() argument 48 detail_ = detail; in SetDetail()
|
/test/testfwk/arkxtest/uitest/test/ |
H A D | frontend_api_handler_test.cpp | 68 ASSERT_EQ(nlohmann::detail::value_t::null, container.at(INDEX_FOUR).type()); in TEST_F() 216 ASSERT_EQ(nlohmann::detail::value_t::string, reply0.resultValue_.type()); // should return backend-by-ref in TEST_F() 226 ASSERT_EQ(nlohmann::detail::value_t::string, reply1.resultValue_.type()); // should return backend-by-ref in TEST_F() 236 ASSERT_EQ(nlohmann::detail::value_t::string, reply2.resultValue_.type()); // should return backend-On-ref in TEST_F() 246 ASSERT_EQ(nlohmann::detail::value_t::string, reply3.resultValue_.type()); // should return backend-by-ref in TEST_F() 256 ASSERT_EQ(nlohmann::detail::value_t::string, reply4.resultValue_.type()); // should return backend-by-ref in TEST_F() 273 ASSERT_EQ(nlohmann::detail::value_t::string, reply0.resultValue_.type()); // should return backend-On-ref in TEST_F() 284 ASSERT_EQ(nlohmann::detail::value_t::string, reply1.resultValue_.type()); // should return backend-On-ref in TEST_F() 294 ASSERT_EQ(nlohmann::detail::value_t::string, reply2.resultValue_.type()); // should return backend-On-ref in TEST_F() 304 ASSERT_EQ(nlohmann::detail in TEST_F() [all...] |
H A D | ipc_transactor_test.cpp | 154 ASSERT_EQ(result.resultValue_.type(), nlohmann::detail::value_t::string); in TEST()
|
/test/testfwk/arkxtest/uitest/addon/ |
H A D | extension_executor.cpp | 127 using VT = nlohmann::detail::value_t;
in CallThroughMessage() 226 auto layout = tree.dump(-1, ' ', false, nlohmann::detail::error_handler_t::replace);
in StartCapture() 230 if (options.type() == nlohmann::detail::value_t::object && options.contains("scale")) {
in StartCapture() 232 EXTENSION_API_CHECK(val.type() == detail::value_t::number_float, "Illegal scale value", ERR_BAD_ARG);
in StartCapture() 246 auto data = record.dump(-1, ' ', false, nlohmann::detail::error_handler_t::replace);
in StartCapture()
|
/test/xts/device_attest/services/devattest_ability/test/tdd/gtest/src/ |
H A D | attest_tdd_test.cpp | 145 SoftwareResultDetail* detail = outStatus->softwareResultDetail; in HWTEST_F() local 146 EXPECT_TRUE((outStatus->versionId != nullptr) && (outStatus->authType != nullptr) && (detail != nullptr)); in HWTEST_F() 147 if ((outStatus->versionId == nullptr) || (outStatus->authType == nullptr) || (detail == nullptr)) { in HWTEST_F()
|
/test/xts/device_attest_lite/test/tdd/gtest/src/ |
H A D | attest_tdd_test.cpp | 164 SoftwareResultDetail* detail = outStatus->softwareResultDetail; in HWTEST_F() local 165 EXPECT_TRUE((outStatus->versionId != nullptr) && (outStatus->authType != nullptr) && (detail != nullptr)); in HWTEST_F() 166 if ((outStatus->versionId == nullptr) || (outStatus->authType == nullptr) || (detail == nullptr)) { in HWTEST_F()
|
/test/ostest/wukong/report/include/ |
H A D | table.h | 29 void SetDetail(std::string detail);
|
/test/xts/tools/sample/ServerSampleE/java/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/sample/controller/ |
H A D | BusinessGoodsController.java | 91 @GetMapping(value = "/detail") 94 public Result<?> detail(@RequestParam(name = "id") String id) { in detail() method in BusinessGoodsController
|
H A D | BusinessController.java | 135 @GetMapping(value = "/detail") 138 public Result<?> detail(@RequestParam(name = "id") String id) { in detail() method in BusinessController
|
/test/testfwk/arkxtest/uitest/server/ |
H A D | server_main.cpp | 129 fout << data.dump(-1, ' ', false, nlohmann::detail::error_handler_t::replace); in DumpLayoutImpl()
|
/test/testfwk/arkxtest/uitest/connection/ |
H A D | ipc_transactor.cpp | 148 DCHECK(call.paramList_.at(fdIndex).type() == nlohmann::detail::value_t::number_integer); in Call()
|
/test/testfwk/arkxtest/uitest/core/ |
H A D | frontend_api_handler.cpp | 27 using namespace nlohmann::detail;
|