Lines Matching refs:str

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