Lines Matching refs:match
34 def callback(lexer, match, context):
35 text = match.group()
38 yield match.start(), TokenClass, text
39 context.pos = match.end()
44 def callback(lexer, match, context):
45 text = match.group()
50 yield match.start(), TokenClass, text
51 context.pos = match.end()
56 def callback(lexer, match, context):
57 text = match.group()
70 yield match.start(), TokenClass, text
72 yield match.start()+len(text), TokenClass.Error, extra
73 context.pos = match.end()
78 def callback(lexer, match, context):
79 text = match.group()
85 yield match.start(), TokenClass, text
86 context.pos = match.end()
91 def callback(lexer, match, context):
92 text = match.group()
96 increment = match.group(1)
102 yield match.start(), TokenClass, text
103 context.pos = match.end()
108 def callback(lexer, match, context):
109 text = match.group()
113 yield match.start(), IndentTokenClass, text
117 yield match.start(), IndentTokenClass, indentation
118 yield (match.start()+context.block_scalar_indent,
120 context.pos = match.end()
125 def callback(lexer, match, context):
126 text = match.group()
139 yield match.start(), TokenClass, text
140 context.pos = match.end()
145 def callback(lexer, match, context):
146 text = match.group()
152 yield match.start(), TokenClass, text
153 context.pos = match.end()