Searched refs:toktext (Results 1 – 1 of 1) sorted by relevance
/external/chromium-trace/catapult/third_party/Paste/paste/util/ |
D | PySourceColor.py | 1327 def __call__(self, toktype, toktext, srow_col, erow_col, line): argument 1335 self.pos = newpos + len(toktext) 1379 if toktext == '@': 1387 if toktext == '(' and self.argFlag: 1390 elif toktext == ':': 1394 if self.doBrackets and toktext in ['[',']','(',')','{','}']: 1397 elif self.doMathOps and toktext in ['*=','**=','-=','+=','|=', 1407 if toktext == "=" and self.argFlag == 2: 1409 elif toktext == "," and self.argFlag == 1: 1412 elif toktype == NAME and keyword.iskeyword(toktext): [all …]
|