Lines Matching refs:t
252 for t in arg.types:
253 if t != 'int':
460 for (n, t) in zip(self.fields, self.types):
796 t = Tree(outermask, innermask)
797 t.subs.append((0, pats[0]))
798 return t
818 t = Tree(fullmask, innermask)
824 t.subs.append((b, s))
826 return t
872 for t in toks:
873 if re.match('^!function=', t):
876 func = t.split('=')
880 if re.fullmatch(re_C_ident + ':s[0-9]+', t):
882 subtoks = t.split(':')
889 if re.fullmatch(re_C_ident + ':[0-9]+', t):
891 subtoks = t.split(':')
899 if re.fullmatch('[0-9]+:s[0-9]+', t):
901 subtoks = t.split(':s')
903 elif re.fullmatch('[0-9]+:[0-9]+', t):
905 subtoks = t.split(':')
958 (n, t) = n.split(':')
960 t = 'int'
966 types.append(t)
1065 for t in toks:
1067 if re.fullmatch(re_arg_ident, t):
1068 tt = t[1:]
1074 error(lineno, 'undefined argument set', t)
1078 if re.fullmatch(re_fmt_ident, t):
1079 tt = t[1:]
1085 error(lineno, 'undefined format', t)
1089 if re.fullmatch(re_fld_ident, t):
1090 tt = t[1:]
1095 if re.fullmatch(re_C_ident + '=' + re_fld_ident, t):
1096 (fname, iname) = t.split('=%')
1101 if re.fullmatch(re_C_ident + '=[+-]?[0-9]+', t):
1102 (fname, value) = t.split('=')
1109 if re.fullmatch('[01.-]+', t):
1110 shift = len(t)
1111 fms = t.replace('0', '1')
1114 fbs = t.replace('.', '0')
1116 ubm = t.replace('1', '0')
1126 elif re.fullmatch(re_C_ident + ':s?[0-9]+', t):
1127 (fname, flen) = t.split(':')
1256 t = line.split()
1259 toks.extend(t)
1266 if len(t) == 0:
1272 toks = t