示例#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)
     ] != []
示例#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)] != []
示例#3
0
 def matcher(self, value, content):
     return highlight_matcher(value, content)
 def matches(self, value):
     return highlight_matcher(value, self._cell_content.value)
示例#5
0
文件: cellinfo.py 项目: nbbull/RIDE
 def matches(self, value):
     return highlight_matcher(value, self._cell_content.value)