Home
last modified time | relevance | path

Searched refs:input (Results 1 – 4 of 4) sorted by relevance

/bootable/recovery/tests/unit/
Dcommands_test.cpp170 const std::string input{ "abort" }; in TEST() local
172 Command command = Command::Parse(input, 0, &err); in TEST()
182 const std::string input{ "abort" }; in TEST() local
184 Command command = Command::Parse(input, 0, &err); in TEST()
189 const std::string input{ in TEST() local
196 Command command = Command::Parse(input, 1, &err); in TEST()
201 ASSERT_EQ(input, command.cmdline()); in TEST()
214 const std::string input{ "erase 2,5,10" }; in TEST() local
216 Command command = Command::Parse(input, 2, &err); in TEST()
221 ASSERT_EQ(input, command.cmdline()); in TEST()
[all …]
/bootable/recovery/
Dinterlace-frames.py65 def deinterlace(output, input): argument
70 img2 = Image.open(input)
75 print('Found %d frames in %s.' % (num_frames, input))
108 deinterlace(args.output, args.input[0])
110 interlace(args.output, args.input)
/bootable/recovery/updater_sample/src/com/example/android/systemupdatersample/util/
DFileDownloader.java64 try (InputStream input = connection.getInputStream()) { in download() argument
66 long skipped = input.skip(mOffset); in download()
77 int count = input.read(data, 0, needToRead); in download()
/bootable/recovery/edify/
Dparser.yy88 input: expr { root->reset($1); }