Home | History | Annotate | Download | only in Scripts

Lines Matching refs:Input

235 Input = None
250 def write(input):
254 for char in input:
268 return struct.unpack(format, Input.read(struct.calcsize(format)))
273 char = Input.read(1)
282 Stack [0:0] = [Input.tell()]
284 Input.seek(seek_to)
288 Input.seek(Stack[0])
295 data = Input.read(16)
298 data = Input.read(size)
326 input = iter(expr.split())
330 token = input.next()
371 input.next()
374 raise RuntimeError("unexpected input at end of expression")
514 end_of_array = Input.tell() + value
516 prev_loc = Input.tell()
518 while Input.tell() < end_of_array:
523 index += (Input.tell() - prev_loc) / item_size
524 prev_loc = Input.tell()
582 Input = StringIO.StringIO(sys.stdin.read())
584 Input = open (sys.argv[1], "rb")
589 Input.close()
590 Input = None