Home
last modified time | relevance | path

Searched refs:input (Results 1 - 24 of 24) sorted by relevance

/commonlibrary/ets_utils/js_api_module/url/
H A Djs_url.cpp75 void ReplaceSpecialSymbols(std::string& input, std::string& oldstr, std::string& newstr) in ReplaceSpecialSymbols() argument
80 if ((pos = input.find(oldstr)) != std::string::npos) { in ReplaceSpecialSymbols()
81 input.replace(pos, oldlen, newstr); in ReplaceSpecialSymbols()
102 std::string DecodeSpecialChars(std::string input) in DecodeSpecialChars() argument
104 std::string temp = input; in DecodeSpecialChars()
106 if (input.empty()) { in DecodeSpecialChars()
175 bool AnalysisScheme(std::string& input, std::string& scheme, in AnalysisScheme() argument
178 if (!isalpha(input[0])) { in AnalysisScheme()
182 size_t strlen = input.size(); in AnalysisScheme()
184 if ((isalnum(input[ in AnalysisScheme()
202 AnalysisFragment(const std::string& input, std::string& fragment, std::bitset<static_cast<size_t>(BitsetStatusFlag::BIT_STATUS_11)>& flags) AnalysisFragment() argument
209 AnalysisQuery(const std::string& input, std::string& query, std::bitset<static_cast<size_t>(BitsetStatusFlag::BIT_STATUS_11)>& flags) AnalysisQuery() argument
215 AnalysisUsernameAndPasswd(std::string& input, std::string& username, std::string& password, std::bitset<static_cast<size_t>(BitsetStatusFlag::BIT_STATUS_11)>& flags) AnalysisUsernameAndPasswd() argument
257 AnalysisPath(std::string& input, std::vector<std::string>& path, std::bitset<static_cast<size_t>(BitsetStatusFlag::BIT_STATUS_11)>& flags, bool isSpecial) AnalysisPath() argument
299 AnalysisPort(std::string input, UrlData& urlinfo, std::bitset<static_cast<size_t>(BitsetStatusFlag::BIT_STATUS_11)>& flags) AnalysisPort() argument
332 AnalysisOpaqueHost(std::string input, std::string& host, std::bitset<static_cast<size_t>(BitsetStatusFlag::BIT_STATUS_11)>& flags) AnalysisOpaqueHost() argument
487 IPv6Host(std::string& input, std::string& host, std::bitset<static_cast<size_t>(BitsetStatusFlag::BIT_STATUS_11)>& flags) IPv6Host() argument
688 AnalyseIPv4(const std::string& input, std::string& host, std::bitset<static_cast<size_t>(BitsetStatusFlag::BIT_STATUS_11)>& flags) AnalyseIPv4() argument
729 AnalysisHost(std::string& input, std::string& host, std::bitset<static_cast<size_t>(BitsetStatusFlag::BIT_STATUS_11)>& flags, bool special) AnalysisHost() argument
759 ISFileNohost(const std::string& input) ISFileNohost() argument
767 AnalysisFilePath(std::string& input, UrlData& urlinfo, std::bitset<static_cast<size_t>(BitsetStatusFlag::BIT_STATUS_11)>& flags) AnalysisFilePath() argument
829 AnalysisFile(std::string& input, UrlData& urlinfo, std::bitset<static_cast<size_t>(BitsetStatusFlag::BIT_STATUS_11)>& flags) AnalysisFile() argument
859 AnalysisFilescheme(const std::string& input, UrlData& urlinfo, std::bitset<static_cast<size_t>(BitsetStatusFlag::BIT_STATUS_11)>& flags) AnalysisFilescheme() argument
868 AnalyInfoPath(std::bitset<static_cast<size_t>(BitsetStatusFlag::BIT_STATUS_11)> &flags, UrlData& urlinfo, const std::string& input) AnalyInfoPath() argument
905 AnalysisNoDefaultProtocol(std::string& input, UrlData& urlinfo, std::bitset<static_cast<size_t>(BitsetStatusFlag::BIT_STATUS_11)>& flags) AnalysisNoDefaultProtocol() argument
957 AnalysisOnlyHost(const std::string& input, UrlData& urlinfo, std::bitset<static_cast<size_t>(BitsetStatusFlag::BIT_STATUS_11)>& flags, size_t pos) AnalysisOnlyHost() argument
982 JudgePos(size_t &pos, const size_t &length, const std::string& input) JudgePos() argument
991 SkipSlashSymbol(std::string& input, size_t& pos) SkipSlashSymbol() argument
1004 ParsingHostAndPath(std::string& input, UrlData& urlinfo, size_t& pos, std::bitset<static_cast<size_t>(BitsetStatusFlag::BIT_STATUS_11)>& flags) ParsingHostAndPath() argument
1035 AnalysisHostAndPath(std::string& input, UrlData& urlinfo, std::bitset<static_cast<size_t>(BitsetStatusFlag::BIT_STATUS_11)>& flags) AnalysisHostAndPath() argument
1059 AnalysisInput(std::string& input, UrlData& urlData, std::bitset<static_cast<size_t>(BitsetStatusFlag::BIT_STATUS_11)>& flags) AnalysisInput() argument
1131 InitOnlyInput(std::string& input, UrlData& urlData, std::bitset<static_cast<size_t>(BitsetStatusFlag::BIT_STATUS_11)>& flags) InitOnlyInput() argument
1169 ToolHasBase(std::string input, std::string &strInput, UrlData &urlData, std::bitset<static_cast<size_t>(BitsetStatusFlag::BIT_STATUS_11)> &flags) ToolHasBase() argument
1194 URL(const std::string& input) URL() argument
1213 URL(const std::string& input, const std::string& base) URL() argument
1263 URL(const std::string& input, const URL& base) URL() argument
1445 SetHostname(const std::string& input) SetHostname() argument
1475 SetHref(const std::string& input) SetHref() argument
1489 SetPath(const std::string& input) SetPath() argument
1526 SplitString(const std::string& input, std::string& strHost, std::string& port) SplitString() argument
1542 SetHost(const std::string& input) SetHost() argument
1586 SetPort(const std::string& input) SetPort() argument
1607 SetSearch(const std::string& input) SetSearch() argument
1627 SetFragment(const std::string& input) SetFragment() argument
1644 SetScheme(const std::string& input) SetScheme() argument
1665 SetUsername(const std::string& input) SetUsername() argument
1681 SetPassword(const std::string& input) SetPassword() argument
[all...]
H A Djs_url.h61 std::string DecodeSpecialChars(std::string input);
67 bool ISFileNohost(const std::string& input);
68 bool AnalysisScheme(std::string& input, std::string& scheme,
70 void AnalysisUsernameAndPasswd(std::string& input, std::string& username, std::string& password,
72 void AnalysisPath(std::string& input, std::vector<std::string>& path,
74 void AnalysisOpaqueHost(std::string input, std::string& host,
76 void AnalyseIPv4(const std::string& input, std::string& host,
78 void AnalysisHost(std::string& input, std::string& host,
80 void AnalysisFilePath(std::string& input, UrlData& urlinfo,
82 void AnalysisFilescheme(const std::string& input, UrlDat
[all...]
H A Dnative_module_url.cpp55 std::string input = temp; in UrlStructor() local
70 object = new (std::nothrow) URL(input, base); in UrlStructor()
82 object = new (std::nothrow) URL(input, *tempUrl); in UrlStructor()
121 std::string input = type; in UrlConstructor() local
122 object = new (std::nothrow) URL(input); in UrlConstructor()
130 } else if (argc == 2) { // 2:When the input parameter is set to 2 in UrlConstructor()
260 std::string input = ""; in SetHref() local
267 input.resize(typelen); in SetHref()
268 if (napi_get_value_string_utf8(env, argv[0], input.data(), typelen + 1, &typelen) != napi_ok) { in SetHref()
274 murl->SetHref(input); in SetHref()
285 std::string input = ""; SetHostname() local
310 std::string input = ""; SetUrlPort() local
335 std::string input = ""; SetUrlHost() local
360 std::string input = ""; SetSearch() local
385 std::string input = ""; SetUrlScheme() local
410 std::string input = ""; SetUrlFragment() local
435 std::string input = ""; SetUsername() local
460 std::string input = ""; SetUrlPath() local
485 std::string input = ""; SetPassword() local
826 std::string input = ""; StringParmas() local
[all...]
/commonlibrary/ets_utils/js_util_module/util/test/
H A Dtest_util.cpp126 std::string input = "abc123"; in HWTEST_F() local
127 napi_create_string_utf8(env, input.c_str(), NAPI_AUTO_LENGTH, &src); in HWTEST_F()
146 std::string input = "abc123abc"; in HWTEST_F() local
147 napi_create_string_utf8(env, input.c_str(), NAPI_AUTO_LENGTH, &src); in HWTEST_F()
176 unsigned char input = 'g'; in HWTEST_F() local
177 unsigned char res = OHOS::Util::HexToChar(input); in HWTEST_F()
276 std::string input = "abc123"; in HWTEST_F() local
278 napi_create_string_utf8(env, input.c_str(), input.size(), &src); in HWTEST_F()
310 std::string input in HWTEST_F() local
338 std::string input = "text"; HWTEST_F() local
372 std::string input = "abc123"; HWTEST_F() local
421 std::string input = "abc哈熠"; HWTEST_F() local
456 std::string input = "abc哈熠"; HWTEST_F() local
491 std::string input = "abc哈熠"; HWTEST_F() local
526 std::string input = "abc哈熠"; HWTEST_F() local
561 std::string input = "abc哈熠"; HWTEST_F() local
595 std::string input = "abc123"; HWTEST_F() local
637 std::string input = "text"; HWTEST_F() local
679 std::string input = "12345"; HWTEST_F() local
722 std::string input = "abc123"; HWTEST_F() local
765 std::string input = "abc123哈"; HWTEST_F() local
808 std::string input = "abc123哈"; HWTEST_F() local
851 std::string input = "abc123哈"; HWTEST_F() local
1654 unsigned char input[3] = {0x73, 0x31, 0x33}; HWTEST_F() local
1689 unsigned char input[14] = {66, 97, 115, 101, 54, 52, 32, 78, 111, 100, 101, 46, 106, 115}; HWTEST_F() local
1723 unsigned char input[26] = {66, 97, 115, 101, 54, 52, 32, 69, 110, HWTEST_F() local
1759 unsigned char input[4] = {168, 174, 155, 255}; HWTEST_F() local
1793 unsigned char input[6] = {66, 97, 115, 101, 54, 52}; HWTEST_F() local
1826 unsigned char input[6] = {66, 97, 115, 101, 54, 51}; HWTEST_F() local
1853 unsigned char input[4] = {168, 174, 155, 255}; HWTEST_F() local
1887 unsigned char input[3] = {115, 49, 51}; HWTEST_F() local
1926 unsigned char input[14] = {66, 97, 115, 101, 54, 52, 32, 78, 111, 100, 101, 46, 106, 115}; HWTEST_F() local
1965 unsigned char input[26] = {66, 97, 115, 101, 54, 52, 32, 69, 110, HWTEST_F() local
2005 unsigned char input[4] = {168, 174, 155, 255}; HWTEST_F() local
2044 unsigned char input[6] = {66, 97, 115, 101, 54, 52}; HWTEST_F() local
2084 unsigned char input[4] = {99, 122, 69, 122}; HWTEST_F() local
2119 unsigned char input[20] = {81, 109, 70, 122, 90, 84, 89, 48, 73, 69, 53, 118, 90, 71, 85, 117, 97, 110, 77, 61}; HWTEST_F() local
2154 std::string input = "czEz"; HWTEST_F() local
2183 std::string input = "qK6b/w=="; HWTEST_F() local
2211 std::string input = "QmFzZTY0"; HWTEST_F() local
2247 unsigned char input[20] = {81, 109, 70, 122, 90, 84, 89, 48, 73, 69, 53, 118, 90, 71, 85, 117, 97, 110, 77, 61}; HWTEST_F() local
2271 std::string input = "qK6b/w=="; HWTEST_F() local
2303 unsigned char input[3] = {0x73, 0x31, 0x33}; HWTEST_F() local
2337 unsigned char input[14] = {66, 97, 115, 101, 54, 52, 32, 78, 111, 100, 101, 46, 106, 115}; HWTEST_F() local
2363 unsigned char input[26] = {66, 97, 115, 101, 54, 52, 32, 69, 110, HWTEST_F() local
2390 unsigned char input[4] = {168, 174, 155, 255}; HWTEST_F() local
2416 unsigned char input[6] = {66, 97, 115, 101, 54, 52}; HWTEST_F() local
2442 unsigned char input[3] = {115, 49, 51}; HWTEST_F() local
2474 unsigned char input[14] = {66, 97, 115, 101, 54, 52, 32, 78, 111, 100, 101, 46, 106, 115}; HWTEST_F() local
2499 unsigned char input[26] = {66, 97, 115, 101, 54, 52, 32, 69, 110, HWTEST_F() local
2525 unsigned char input[4] = {168, 174, 155, 255}; HWTEST_F() local
2550 unsigned char input[6] = {66, 97, 115, 101, 54, 52}; HWTEST_F() local
2577 unsigned char input[4] = {99, 122, 69, 122}; HWTEST_F() local
2603 unsigned char input[8] = {113, 75, 54, 98, 47, 119, 61, 61}; HWTEST_F() local
2629 std::string input = "czEz"; HWTEST_F() local
2649 std::string input = "QmFzZTY0IEVuY29kaW5nIGluIE5vZGUuanM="; HWTEST_F() local
2669 std::string input = "qK6b/w=="; HWTEST_F() local
3005 unsigned char input[4] = {99, 122, 69, 122}; HWTEST_F() local
3141 std::string input = "😃"; HWTEST_F() local
3173 std::string input = "😃a"; HWTEST_F() local
3205 std::string input = "😃a🤞"; HWTEST_F() local
3237 std::string input = "中a"; HWTEST_F() local
3269 std::string input = "中aÿ"; HWTEST_F() local
[all...]
/commonlibrary/ets_utils/platform/default/
H A Dutil_helper.cpp68 std::string input = ""; in ConvertToString() local
70 input += static_cast<char>(uchar[i] & 0xFF); in ConvertToString()
72 tepStr = UtilPlugin::Decode(input, targetEncStr); in ConvertToString()
82 std::string input = ""; in EncodeIntoChinese() local
85 input.resize(inputSize); in EncodeIntoChinese()
86 napi_get_value_string_utf8(env, src, input.data(), inputSize + 1, &inputSize); in EncodeIntoChinese()
87 buffer = UtilPlugin::EncodeIntoChinese(input, encoding); in EncodeIntoChinese()
/commonlibrary/ets_utils/js_util_module/util/
H A Djs_base64.h78 const char *searchArray, size_t inputLen, const unsigned char *input);
80 const char *input, DecodeInfo *decodeInfo, unsigned char *retDecode);
95 * Output the corresponding text after encoding the input parameters.
98 * @param src Encode the input uint8 array.
103 * Output the corresponding text after encoding the input parameters.
106 * @param src Encode the input uint8 array.
111 * Output the corresponding text after encoding the input parameters.
114 * @param src Decode the input uint8 array or string.
119 * Output the corresponding text after asynchronously encoding the input parameters.
122 * @param src Asynchronously encoded input uint
[all...]
H A Djs_uuid.cpp91 unsigned char ConvertBits(std::string &input) in ConvertBits() argument
94 if (input[0] == '-') { in ConvertBits()
95 input.erase(0, 1); in ConvertBits()
97 temp = CharToHex(input[0]); in ConvertBits()
99 input.erase(0, 1); in ConvertBits()
100 temp += CharToHex(input[0]); in ConvertBits()
101 input.erase(0, 1); in ConvertBits()
H A Djs_base64.cpp62 napi_throw_error(env, "-1", "encode input is null"); in EncodeSync()
96 napi_throw_error(env, "-1", "encodeToString input is null"); in EncodeToStringSync()
106 unsigned char *Base64::EncodeAchieve(const unsigned char *input, size_t inputLen, Type valueType) in EncodeAchieve() argument
137 unsigned char *result = EncodeAchieveInner(input, ret, searchArray, inputLen, valueType); in EncodeAchieve()
141 unsigned char *Base64::EncodeAchieveInner(const unsigned char *input, unsigned char *ret, in EncodeAchieveInner() argument
155 bitWise = ((bitWise << TRAGET_EIGHT) | (input[inp] & XFF_FLG)); in EncodeAchieveInner()
243 unsigned char *Base64::DecodeAchieve(napi_env env, const char *input, size_t inputLen, Type valueType) in DecodeAchieve() argument
249 if (*(input + inputLen - 1) == '=') { in DecodeAchieve()
252 if (*(input + inputLen - TRAGET_TWO) == '=') { in DecodeAchieve()
283 result = DecodeAchieveInner(env, input, inputLe in DecodeAchieve()
290 DecodeAchieveInner(napi_env env, const char *input, size_t inputLen, size_t equalCount, Type valueType) DecodeAchieveInner() argument
433 const unsigned char *input = encodeInfo->sinputEncode; EncodeAchieves() local
468 EncodeAchievesInner(unsigned char *ret, EncodeInfo *encodeInfo, const char *searchArray, size_t inputLen, const unsigned char *input) EncodeAchievesInner() argument
663 const char *input = decodeInfo->sinputDecode; DecodeAchieves() local
705 DecodeAchievesInner(size_t inputLen, size_t equalCount, const char *input, DecodeInfo *decodeInfo, unsigned char *retDecode) DecodeAchievesInner() argument
[all...]
H A Djs_uuid.h71 unsigned char ConvertBits(std::string &input);
/commonlibrary/rust/ylong_http/ylong_http_client/src/util/h2/
H A Dmod.rs25 mod input; modules
34 pub(crate) use input::SendData;
/commonlibrary/rust/ylong_runtime/ylong_runtime_macros/src/
H A Dlib.rs38 pub fn tuple_form(input: TokenStream) -> TokenStream { in tuple_form()
39 let tuple_parser = select::tuple_parser(input); in tuple_form()
H A Dselect.rs118 pub(crate) fn tuple_parser(input: TokenStream) -> TupleParser {
119 let buf = input.into_iter().collect::<Vec<_>>();
/commonlibrary/ets_utils/js_api_module/url/test/
H A Dtest_napi.cpp1889 std::string input = "http://username:password@www.baidu.com:99/path/path?query#fagment"; in HWTEST_F() local
1890 napi_create_string_utf8(env, input.c_str(), input.size(), &constructorArgs[0]); in HWTEST_F()
1942 std::string input = "http://username:password@www.baidu.com:99/path/path?query#fagment"; in HWTEST_F() local
1943 napi_create_string_utf8(env, input.c_str(), input.size(), &constructorArgs[0]); in HWTEST_F()
1984 std::string input = "http://username:password@www.baidu.com:99/path/path?query#fagment"; in HWTEST_F() local
1985 napi_create_string_utf8(env, input.c_str(), input.size(), &constructorArgs[0]); in HWTEST_F()
2018 napi_create_string_utf8(env, input in HWTEST_F()
2221 std::string input = "H+#LLOWORLD"; HWTEST_F() local
2230 std::string input = "H+#LLOWORLD:"; HWTEST_F() local
2240 std::string input = "H+#LLOWORLD:65536"; HWTEST_F() local
2261 std::string input = "abcdefghi"; HWTEST_F() local
2276 std::string input = "155.155.256.111111111"; HWTEST_F() local
2285 std::string input = "http://example.com/path/.%2E/to%2eresource"; HWTEST_F() local
2294 std::string input = "http://example.com/path/to%2eresource/%2E"; HWTEST_F() local
2303 std::string input = ".%2E"; HWTEST_F() local
2314 std::string input = ".%2E"; HWTEST_F() local
2325 std::string input = ".%2E"; HWTEST_F() local
2346 std::string input = "/g";; HWTEST_F() local
2357 std::string input = "//abc"; HWTEST_F() local
2367 std::string input = "/abc"; HWTEST_F() local
2377 std::string input = ":h"; HWTEST_F() local
2387 std::string input = "///"; HWTEST_F() local
2397 std::string input = "//"; HWTEST_F() local
2407 std::string input = "//::/"; HWTEST_F() local
2415 std::string input = "abc:d:e"; HWTEST_F() local
2426 std::string input = "abc:d:e/fg"; HWTEST_F() local
2459 std::string input = ".%2E"; HWTEST_F() local
2469 std::string input = "%2E"; HWTEST_F() local
2479 std::string input = "99::1080:800:200C:417A"; HWTEST_F() local
2486 std::string input = "000:1080:800:200C:417A"; HWTEST_F() local
2495 std::string input = "::ffff:192.168.1.1"; HWTEST_F() local
2504 std::string input = "w"; HWTEST_F() local
2513 std::string input = "ww:w]wa:b]c/www"; HWTEST_F() local
2548 std::string input = "//@/aabab"; HWTEST_F() local
2557 std::string input = "99::1080:8:800:200C:417A"; HWTEST_F() local
[all...]
/commonlibrary/c_utils/base/include/
H A Dmapped_file.h148 inline static off_t RoundSize(off_t input) in RoundSize() argument
150 return (input % PageSize() == 0) ? input : (input / PageSize() + 1) * PageSize(); in RoundSize()
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/fs/
H A Dasync_dir.rs803 let input = "Hello world"; in ut_fs_write_and_read_to_string()
808 let res = write(file_path, input.as_bytes()).await; in ut_fs_write_and_read_to_string()
811 assert_eq!(s, input); in ut_fs_write_and_read_to_string()
829 let input = "Hello world"; in ut_fs_write_and_read()
834 let res = write(file_path, input.as_bytes()).await; in ut_fs_write_and_read()
838 assert_eq!(s, input); in ut_fs_write_and_read()
/commonlibrary/ets_utils/js_concurrent_module/common/helper/
H A Derror_helper.h112 errTitle = "Parameter error. The input parameters are invalid, "; in NewError()
159 static std::string GetErrorFileInfo(const std::string& input) in GetErrorFileInfo() argument
163 if (std::regex_search(input, match, pattern)) { in GetErrorFileInfo()
169 static std::vector<std::string> SplitErrorFileInfo(const std::string& input, char delimiter, int count) in SplitErrorFileInfo() argument
172 std::string rawErrorInfo = GetErrorFileInfo(input); in SplitErrorFileInfo()
/commonlibrary/rust/ylong_http/ylong_http_client/src/util/
H A Dbase64.rs16 pub(crate) fn encode(input: &[u8]) -> Vec<u8> {
19 for chunk in input.chunks(3) {
/commonlibrary/rust/ylong_json/src/reader/
H A Dio_reader.rs536 let mut input = vec![0; 1024]; in ut_io_reader_cached_slice() variables
537 input.push(1); in ut_io_reader_cached_slice()
538 let io = TestIo::new(input); in ut_io_reader_cached_slice()
/commonlibrary/rust/ylong_http/ylong_http/src/
H A Dheaders.rs200 /// Since `HeaderName` is case-insensitive, characters of the input will be
236 /// Normalizes the input bytes.
237 fn normalize(input: &[u8]) -> Result<String, HttpError> { in normalize()
239 for b in input.iter() { in normalize()
654 /// This method returns `None` if the input argument could not be
681 /// This method returns `None` if the input argument could not be
707 /// If the input argument could not be successfully converted to a `Header`,
743 /// If the input argument could not be successfully converted to a `Header`,
791 /// If the input argument could not be successfully converted to a `Header`,
/commonlibrary/rust/ylong_json/src/
H A Dencoder.rs397 ($encoder: ident, $input: expr, $output: expr $(,)?) => {
398 let value = JsonValue::from_text($input).unwrap();
H A Dvalue.rs697 pub fn from_reader<R: Read>(input: R) -> Result<Self, Error> { in fmt()
698 let mut deserializer = Deserializer::new_from_io(input); in fmt()
/commonlibrary/ets_utils/js_api_module/uri/
H A Djs_uri.h46 * @param input Constructs a URI by parsing a given string.
48 explicit Uri(const std::string input);
H A Djs_uri.cpp64 Uri::Uri(const std::string input) in Uri() argument
68 if (input.empty()) { in Uri()
72 inputUri_ = input; in Uri()
/commonlibrary/ets_utils/js_api_module/uri/test/
H A Dtest_napi.cpp793 std::string input = "http://username:password@www.baidu.com:99/path/path?query#fagment"; in HWTEST_F() local
794 napi_create_string_utf8(env, input.c_str(), input.size(), &constructorArgs[0]); in HWTEST_F()
848 std::string input = "http://username:password@www.baidu.com:99/path/path?query#fagment"; in HWTEST_F() local
849 napi_create_string_utf8(env, input.c_str(), input.size(), &constructorArgs[0]); in HWTEST_F()
892 std::string input = "http://name:word@www.uritest.com:99/path/abc?query#fagment"; in HWTEST_F() local
893 napi_create_string_utf8(env, input.c_str(), input.size(), &constructorArgs[0]); in HWTEST_F()

Completed in 25 milliseconds