HomeSort by relevance Sort by last modified time
    Searched refs:HyperParser (Results 1 - 10 of 10) sorted by null

  /external/python/cpython2/Lib/idlelib/
ParenMatch.py 8 from idlelib.HyperParser import HyperParser
93 indices = (HyperParser(self.editwin, "insert")
107 hp = HyperParser(self.editwin, "insert-1c")
AutoComplete.py 22 from idlelib.HyperParser import HyperParser
123 hp = HyperParser(self.editwin, "insert")
CallTips.py 15 from idlelib.HyperParser import HyperParser
70 hp = HyperParser(self.editwin, "insert")
HyperParser.py 3 HyperParser uses PyParser. PyParser mostly gives information on the
4 proper indentation of code. HyperParser gives additional information on
12 class HyperParser:
91 """Is the index given to the HyperParser in a string?"""
99 """Is the index given to the HyperParser in normal code?"""
107 If the index given to the HyperParser is surrounded by a
  /external/python/cpython3/Lib/idlelib/idle_test/
test_hyperparser.py 1 "Test hyperparser, coverage 98%."
3 from idlelib.hyperparser import HyperParser
62 return HyperParser(self.editwin, index)
205 result = HyperParser._eat_identifier(candidate, 0, len(candidate))
246 self.assertEqual(HyperParser._eat_identifier('+ var', 0, 5), len('var'))
247 self.assertEqual(HyperParser._eat_identifier('+var', 0, 4), len('var'))
248 self.assertEqual(HyperParser._eat_identifier('.var', 0, 4), len('var'))
261 eat_id = HyperParser._eat_identifier
  /external/python/cpython3/Lib/idlelib/
parenmatch.py 7 from idlelib.hyperparser import HyperParser
78 indices = (HyperParser(self.editwin, "insert")
89 hp = HyperParser(self.editwin, "insert-1c")
calltip.py 14 from idlelib.hyperparser import HyperParser
60 hp = HyperParser(self.editwin, "insert")
autocomplete.py 16 from idlelib.hyperparser import HyperParser
116 hp = HyperParser(self.editwin, "insert")
hyperparser.py 3 HyperParser uses PyParser. PyParser mostly gives information on the
4 proper indentation of code. HyperParser gives additional information on
25 class HyperParser:
103 """Is the index given to the HyperParser in a string?"""
111 """Is the index given to the HyperParser in normal code?"""
119 If the index given to the HyperParser is surrounded by a
  /external/python/cpython2/Lib/idlelib/idle_test/
test_hyperparser.py 1 """Unittest for idlelib.HyperParser"""
6 from idlelib.HyperParser import HyperParser
60 return HyperParser(self.editwin, index)

Completed in 598 milliseconds