• Home
  • Raw
  • Download

Lines Matching full:str

69     CString str = "2020-11-19T12:18:18.132Z";  in HWTEST_F_L0()  local
70 JSTaggedValue ms = ecmascript::JSDate::GetTimeFromString(str.c_str(), str.length()); in HWTEST_F_L0()
73 str = "1880-12-30T23:59:59"; in HWTEST_F_L0()
74 ms = ecmascript::JSDate::GetTimeFromString(str.c_str(), str.length()); in HWTEST_F_L0()
77 str = "2020-11-19Z"; in HWTEST_F_L0()
78 ms = ecmascript::JSDate::GetTimeFromString(str.c_str(), str.length()); in HWTEST_F_L0()
81 str = "2020-11"; in HWTEST_F_L0()
82 ms = ecmascript::JSDate::GetTimeFromString(str.c_str(), str.length()); in HWTEST_F_L0()
85 str = "2023-1-11"; in HWTEST_F_L0()
86 ms = ecmascript::JSDate::GetTimeFromString(str.c_str(), str.length()); in HWTEST_F_L0()
89 str = "+275760-09-13T00:00:00.000Z"; in HWTEST_F_L0()
90 ms = ecmascript::JSDate::GetTimeFromString(str.c_str(), str.length()); in HWTEST_F_L0()
93 str = "-271821-04-20T00:00:00.000Z"; in HWTEST_F_L0()
94 ms = ecmascript::JSDate::GetTimeFromString(str.c_str(), str.length()); in HWTEST_F_L0()
97 str = "2020T12:18Z"; in HWTEST_F_L0()
98 ms = ecmascript::JSDate::GetTimeFromString(str.c_str(), str.length()); in HWTEST_F_L0()
101 str = "2020T12:18:17.231Z"; in HWTEST_F_L0()
102 ms = ecmascript::JSDate::GetTimeFromString(str.c_str(), str.length()); in HWTEST_F_L0()
105 str = "2020-11T12:18:17.231Z"; in HWTEST_F_L0()
106 ms = ecmascript::JSDate::GetTimeFromString(str.c_str(), str.length()); in HWTEST_F_L0()
109 str = "1645-11T12:18:17.231+08:00"; in HWTEST_F_L0()
110 ms = ecmascript::JSDate::GetTimeFromString(str.c_str(), str.length()); in HWTEST_F_L0()
113 str = "2020-11-19T12:18-08:12"; in HWTEST_F_L0()
114 ms = ecmascript::JSDate::GetTimeFromString(str.c_str(), str.length()); in HWTEST_F_L0()
118 str = "Thu Nov 19 2020 20:18:18 GMT+0800"; in HWTEST_F_L0()
119 ms = ecmascript::JSDate::GetTimeFromString(str.c_str(), str.length()); in HWTEST_F_L0()
122 str = "Thu Nov 19 2020 20:18 GMT-0800"; in HWTEST_F_L0()
123 ms = ecmascript::JSDate::GetTimeFromString(str.c_str(), str.length()); in HWTEST_F_L0()
126 str = "Thu Nov 03 2093 04:18 GMT"; in HWTEST_F_L0()
127 ms = ecmascript::JSDate::GetTimeFromString(str.c_str(), str.length()); in HWTEST_F_L0()
130 str = "Thu Nov 19 1820 GMT+1232"; in HWTEST_F_L0()
131 ms = ecmascript::JSDate::GetTimeFromString(str.c_str(), str.length()); in HWTEST_F_L0()
135 str = "Thu, 19 Nov 2020 20:18:18 GMT+0800"; in HWTEST_F_L0()
136 ms = ecmascript::JSDate::GetTimeFromString(str.c_str(), str.length()); in HWTEST_F_L0()
139 str = "Thu, 19 Nov 2020 20:18 GMT-0800"; in HWTEST_F_L0()
140 ms = ecmascript::JSDate::GetTimeFromString(str.c_str(), str.length()); in HWTEST_F_L0()
143 str = "Thu 03 Jun 2093 04:18 GMT"; in HWTEST_F_L0()
144 ms = ecmascript::JSDate::GetTimeFromString(str.c_str(), str.length()); in HWTEST_F_L0()
147 str = "Thu 19 Nov 1820 GMT+1232"; in HWTEST_F_L0()
148 ms = ecmascript::JSDate::GetTimeFromString(str.c_str(), str.length()); in HWTEST_F_L0()
152 str = "2020-11-19 12:18:18.132Z"; in HWTEST_F_L0()
153 ms = ecmascript::JSDate::GetTimeFromString(str.c_str(), str.length()); in HWTEST_F_L0()
156 str = "2020-11-19 12:18:18.132+02:21"; in HWTEST_F_L0()
157 ms = ecmascript::JSDate::GetTimeFromString(str.c_str(), str.length()); in HWTEST_F_L0()
160 str = "2020-11-19 12:18:18.132-02:21"; in HWTEST_F_L0()
161 ms = ecmascript::JSDate::GetTimeFromString(str.c_str(), str.length()); in HWTEST_F_L0()
164 str = "+175760-09-13 03:16:02.003Z"; in HWTEST_F_L0()
165 ms = ecmascript::JSDate::GetTimeFromString(str.c_str(), str.length()); in HWTEST_F_L0()
168 str = "-171821-04-20 13:08:23.037Z"; in HWTEST_F_L0()
169 ms = ecmascript::JSDate::GetTimeFromString(str.c_str(), str.length()); in HWTEST_F_L0()
173 str = "January 12,2006 22:19:35"; in HWTEST_F_L0()
174 ms = ecmascript::JSDate::GetTimeFromString(str.c_str(), str.length()); in HWTEST_F_L0()
177 str = "January 12,2006"; in HWTEST_F_L0()
178 ms = ecmascript::JSDate::GetTimeFromString(str.c_str(), str.length()); in HWTEST_F_L0()