Lines Matching refs:r
52 r=c.execute("SELECT name FROM sqlite_master WHERE type='table' AND name=?",req)
53 return(r.fetchone() != None)
119 r = conn.execute("select %s from %s where %s=?" % (key,table,keystr),(strv,))
120 result=r.fetchone()
126 r = conn.execute("select %s from %s where %s=?" % (key,table,keystr),(strv,))
127 result=r.fetchone()
136 …r = conn.execute("select compilerid from COMPILER where compilerkindid=? AND version=?" , (kind,v…
137 result=r.fetchone()
145 …r = conn.execute("select compilerid from COMPILER where compilerkindid=? AND version=? AND testdat…
146 result=r.fetchone()
186 if re.match(r'^.*_f64',testname):
188 if re.match(r'^.*_f32',testname):
190 if re.match(r'^.*_f16',testname):
192 if re.match(r'^.*_q31',testname):
194 if re.match(r'^.*_q15',testname):
196 if re.match(r'^.*_q7',testname):
199 if re.match(r'^.*_s8',testname):
201 if re.match(r'^.*_u8',testname):
203 if re.match(r'^.*_s16',testname):
205 if re.match(r'^.*_u16',testname):
207 if re.match(r'^.*_s32',testname):
209 if re.match(r'^.*_u32',testname):
211 if re.match(r'^.*_s64',testname):
213 if re.match(r'^.*_u64',testname):
232 testField=re.sub(r'^(.*)[:]([^:]+)(F16|F32|F64|Q31|Q15|Q7)$',r'\1',row[field])
283 return(re.sub(r'^(.+)(F64|F32|F16|Q31|Q15|Q7|U32|U16|U8|S32|S16|S8)$',r'\1',a))
335 addToDB(args.b,args.o,root,group,args.r)