Lines Matching full:str
93 CString str = "2020-11-19T12:18:18.132Z"; in HWTEST_F_L0() local
94 JSTaggedValue ms = ecmascript::JSDate::GetTimeFromString(str.c_str(), str.length()); in HWTEST_F_L0()
97 str = "1880-12-30T23:59:59"; in HWTEST_F_L0()
98 ms = ecmascript::JSDate::GetTimeFromString(str.c_str(), str.length()); in HWTEST_F_L0()
101 str = "2020-11-19Z"; in HWTEST_F_L0()
102 ms = ecmascript::JSDate::GetTimeFromString(str.c_str(), str.length()); in HWTEST_F_L0()
105 str = "2020-11"; in HWTEST_F_L0()
106 ms = ecmascript::JSDate::GetTimeFromString(str.c_str(), str.length()); in HWTEST_F_L0()
109 str = "2023-1-11"; in HWTEST_F_L0()
110 ms = ecmascript::JSDate::GetTimeFromString(str.c_str(), str.length()); in HWTEST_F_L0()
113 str = "+275760-09-13T00:00:00.000Z"; in HWTEST_F_L0()
114 ms = ecmascript::JSDate::GetTimeFromString(str.c_str(), str.length()); in HWTEST_F_L0()
117 str = "-271821-04-20T00:00:00.000Z"; in HWTEST_F_L0()
118 ms = ecmascript::JSDate::GetTimeFromString(str.c_str(), str.length()); in HWTEST_F_L0()
121 str = "2020T12:18Z"; in HWTEST_F_L0()
122 ms = ecmascript::JSDate::GetTimeFromString(str.c_str(), str.length()); in HWTEST_F_L0()
125 str = "2020T12:18:17.231Z"; in HWTEST_F_L0()
126 ms = ecmascript::JSDate::GetTimeFromString(str.c_str(), str.length()); in HWTEST_F_L0()
129 str = "2020-11T12:18:17.231Z"; in HWTEST_F_L0()
130 ms = ecmascript::JSDate::GetTimeFromString(str.c_str(), str.length()); in HWTEST_F_L0()
133 str = "1645-11T12:18:17.231+08:00"; in HWTEST_F_L0()
134 ms = ecmascript::JSDate::GetTimeFromString(str.c_str(), str.length()); in HWTEST_F_L0()
137 str = "2020-11-19T12:18-08:12"; in HWTEST_F_L0()
138 ms = ecmascript::JSDate::GetTimeFromString(str.c_str(), str.length()); in HWTEST_F_L0()
142 str = "Thu Nov 19 2020 20:18:18 GMT+0800"; in HWTEST_F_L0()
143 ms = ecmascript::JSDate::GetTimeFromString(str.c_str(), str.length()); in HWTEST_F_L0()
146 str = "Thu Nov 19 2020 20:18 GMT-0800"; in HWTEST_F_L0()
147 ms = ecmascript::JSDate::GetTimeFromString(str.c_str(), str.length()); in HWTEST_F_L0()
150 str = "Thu Nov 03 2093 04:18 GMT"; in HWTEST_F_L0()
151 ms = ecmascript::JSDate::GetTimeFromString(str.c_str(), str.length()); in HWTEST_F_L0()
154 str = "Thu Nov 19 1820 GMT+1232"; in HWTEST_F_L0()
155 ms = ecmascript::JSDate::GetTimeFromString(str.c_str(), str.length()); in HWTEST_F_L0()
159 str = "Thu, 19 Nov 2020 20:18:18 GMT+0800"; in HWTEST_F_L0()
160 ms = ecmascript::JSDate::GetTimeFromString(str.c_str(), str.length()); in HWTEST_F_L0()
163 str = "Thu, 19 Nov 2020 20:18 GMT-0800"; in HWTEST_F_L0()
164 ms = ecmascript::JSDate::GetTimeFromString(str.c_str(), str.length()); in HWTEST_F_L0()
167 str = "Thu 03 Jun 2093 04:18 GMT"; in HWTEST_F_L0()
168 ms = ecmascript::JSDate::GetTimeFromString(str.c_str(), str.length()); in HWTEST_F_L0()
171 str = "Thu 19 Nov 1820 GMT+1232"; in HWTEST_F_L0()
172 ms = ecmascript::JSDate::GetTimeFromString(str.c_str(), str.length()); in HWTEST_F_L0()
176 str = "2020-11-19 12:18:18.132Z"; in HWTEST_F_L0()
177 ms = ecmascript::JSDate::GetTimeFromString(str.c_str(), str.length()); in HWTEST_F_L0()
180 str = "2020-11-19 12:18:18.132+02:21"; in HWTEST_F_L0()
181 ms = ecmascript::JSDate::GetTimeFromString(str.c_str(), str.length()); in HWTEST_F_L0()
184 str = "2020-11-19 12:18:18.132-02:21"; in HWTEST_F_L0()
185 ms = ecmascript::JSDate::GetTimeFromString(str.c_str(), str.length()); in HWTEST_F_L0()
188 str = "+175760-09-13 03:16:02.003Z"; in HWTEST_F_L0()
189 ms = ecmascript::JSDate::GetTimeFromString(str.c_str(), str.length()); in HWTEST_F_L0()
192 str = "-171821-04-20 13:08:23.037Z"; in HWTEST_F_L0()
193 ms = ecmascript::JSDate::GetTimeFromString(str.c_str(), str.length()); in HWTEST_F_L0()
197 str = "January 12,2006 22:19:35"; in HWTEST_F_L0()
198 ms = ecmascript::JSDate::GetTimeFromString(str.c_str(), str.length()); in HWTEST_F_L0()
201 str = "January 12,2006"; in HWTEST_F_L0()
202 ms = ecmascript::JSDate::GetTimeFromString(str.c_str(), str.length()); in HWTEST_F_L0()