Lines Matching refs:index
61 def char_in_string_false(index): return False
91 self.assertIsNone(start(is_char_in_string=lambda index: True))
98 # returns that as the index.
99 eq(start(is_char_in_string=lambda index: index > pos), pos)
101 # looks for a previous index.
102 eq(start(is_char_in_string=lambda index: index >= pos), pos0)
105 eq(start(is_char_in_string=lambda index: index < pos), None)
115 eq(start(is_char_in_string=lambda index: index > pos), pos)
116 eq(start(is_char_in_string=lambda index: index >= pos), pos0)
119 eq(start(is_char_in_string=lambda index: index < pos), pos)
141 # An index that is preceded by a newline.