Lines Matching refs:time_re
118 self.time_re = _strptime.TimeRE()
123 pattern_string = self.time_re.pattern(r"%a %A %d")
130 self.assertTrue(pattern_string.find(self.time_re['d']) != -1,
137 pattern_string = self.time_re.pattern(r"\d+")
145 found = self.time_re.compile(r"%A").match(self.locale_time.f_weekday[6])
148 compiled = self.time_re.compile(r"%a %b")
163 compiled = self.time_re.compile("%" + directive)
179 compiled_re = self.time_re.compile(r"\w+ %m")
191 time_re = _strptime.TimeRE(locale_time)
192 self.assertTrue(time_re.compile("%Z").match("Tokyo (standard time)"),
200 pattern = self.time_re.pattern('%j %H')