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

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
AutoCompleteWindow.py 317 newsel = 0
319 newsel = len(self.completions)-1
324 newsel = max(0, cursel-jump)
327 newsel = min(len(self.completions)-1, cursel+jump)
329 newsel = max(0, cursel-1)
332 newsel = min(len(self.completions)-1, cursel+1)
334 self.listbox.select_set(newsel)
336 self._change_start(self.completions[newsel])
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
AutoCompleteWindow.py 317 newsel = 0
319 newsel = len(self.completions)-1
324 newsel = max(0, cursel-jump)
327 newsel = min(len(self.completions)-1, cursel+jump)
329 newsel = max(0, cursel-1)
332 newsel = min(len(self.completions)-1, cursel+1)
334 self.listbox.select_set(newsel)
336 self._change_start(self.completions[newsel])

Completed in 242 milliseconds