Lines Matching refs:match
807 var match = TimestampRegex.Match(token.StringValue);
808 if (!match.Success)
812 var dateTime = match.Groups["datetime"].Value;
813 var subseconds = match.Groups["subseconds"].Value;
814 var offset = match.Groups["offset"].Value;
883 var match = DurationRegex.Match(token.StringValue);
884 if (!match.Success)
888 var sign = match.Groups["sign"].Value;
889 var secondsText = match.Groups["int"].Value;
895 var subseconds = match.Groups["subseconds"].Value;