Lines Matching refs:s
336 for s in test_descr.main_program:
337 m = re.match(r"^([+\-%^@])([0-9a-zA-Z]+)$", s)
339 error("'%s' is not recognized main program operation" % (s))
405 s = re.match(r"soname\(([0-9a-zA-Z{}]+)\)=([0-9a-zA-Z]+)", value)
406 obj = s.group(1)
407 val = s.group(2)
832 for s in test_descr.main_program:
833 if s[0] == '@':
834 f.write("extern void fn_%s (void);\n" % (s[1:]));
844 s = test_descr.main_program[i]
845 obj = s[1:]
847 if s[0] == '+' or s[0] == '^':
848 if s[0] == '+':
864 elif s[0] == '-':
874 elif s[0] == '%':
881 elif s[0] == '@':