Lines Matching refs:strg
74 def colored(strg, color):
79 return strg
82 return col+str(strg)+'\033[0m'
83 return strg
218 def colCat(_ctx, strg):
219 return colored(strg, 'magenta')
939 def enumFromString(ctx, enum, strg):
941 return enumVals.get(strg, None)
3164 strg = "%02x:%02x.%d" % (addr >> 8, (addr & 0xff) >> 3, addr & 7)
3165 return colPci(ctx, strg)
3181 def parsePci(strg):
3183 match = pcire.search(strg)