Exemple #1
0
 def contains(self, text):
     if self._value is None:
         return False
     return [
         item for item in self._value.split(' | ')
         if utils.highlight_matcher(text, item)
     ] != []
Exemple #2
0
 def contains(self, text):
     if self._value is None:
         return False
     return [item for item in self._value.split(' | ') if utils.highlight_matcher(text, item)] != []
Exemple #3
0
 def matcher(self, value, content):
     return highlight_matcher(value, content)
 def matches(self, value):
     return highlight_matcher(value, self._cell_content.value)
Exemple #5
0
 def matches(self, value):
     return highlight_matcher(value, self._cell_content.value)