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

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
binhex.py 40 RUNCHAR=chr(0x90) # run-length introducer
342 # end up with an orphaned RUNCHAR later on. So, we keep a couple
352 if self.pre_buffer[-3:] == RUNCHAR + '\0' + RUNCHAR:
354 elif self.pre_buffer[-1] == RUNCHAR:
356 elif self.pre_buffer[-2:] == RUNCHAR + '\0':
358 elif self.pre_buffer[-2] == RUNCHAR:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
binhex.py 40 RUNCHAR=chr(0x90) # run-length introducer
342 # end up with an orphaned RUNCHAR later on. So, we keep a couple
352 if self.pre_buffer[-3:] == RUNCHAR + '\0' + RUNCHAR:
354 elif self.pre_buffer[-1] == RUNCHAR:
356 elif self.pre_buffer[-2:] == RUNCHAR + '\0':
358 elif self.pre_buffer[-2] == RUNCHAR:

Completed in 44 milliseconds