Lines Matching refs:r

38   r=c.execute(lastID)
39 return(int(r.fetchone()[0]))
42 r=c.execute(lastIDAndDate,(forID,))
43 return(r.fetchone()[0])
78 r=c.execute(coreidSQL,(corename,))
79 t=r.fetchone()
91 if re.search(r'-',t):
151 r=c.execute("SELECT name FROM sqlite_master WHERE type='table'")
153 for table in r:
160r=c.execute("select distinct typeid from %s WHERE %s order by typeid desc " % (benchTable,runidCMD…
161 result=[x[0] for x in r]
166r=c.execute("select distinct coreid from %s WHERE %s order by coreid desc " % (benchTable,runidCMD…
167 result=[x[0] for x in r]
172 r=[]
174 r += [x[0] for x in c.execute(runIDDetails % (table,runidCMD),runidval).fetchall()]
175 r=list(set(r))
176 print(r)
204 r=c.execute(allCompilers % benchTable,(typeid,)).fetchall()
205 return([x[0] for x in r])
211 r=c.execute(allCompilerForCore % benchTable,(coreid,)).fetchall()
212 return([x[0] for x in r])
216 r=c.execute(allCores % (benchTable,runidCMD),vals).fetchall()
217 return([x[0] for x in r])
222 r=c.execute(coreDesc,(coreid,)).fetchone()
223 return(r)
226 r=c.execute(compilerDesc,(compilerid,)).fetchone()
227 return(r)
231 r=c.execute("select type from TYPE where typeid=?",(typeid,)).fetchone()
232 return(r[0])
354 if re.match(r'^.*id$',col):
588 r=[[int(x[lrunid]),int(x[maxpos])] for x in result[1:][0]]
589 series[corename]=r
602 r=[[int(x[lrunid]),int(x[maxpos])] for x in result[1:][0]]
603 series[corename]=r
607 def convertRowToInt(r): argument
609 for e in r:
620 fileName=re.sub(r'[() :]','',section.name)
626 with open(path,"r") as r:
627 for l in r:
646 if args.r:
662 if args.r:
1103 with open(path,"r") as r:
1104 for l in r:
1177 document.accept(HTML(output,args.r,args.ratio,reorder))