/external/curl/tests/data/ |
test1380 | 47 <file1 name="log/download1380"> 50 </file1>
|
test1381 | 48 <file1 name="log/download1381"> 51 </file1>
|
test1382 | 48 <file1 name="log/download1382"> 51 </file1>
|
test1383 | 47 <file1 name="log/download1383"> 50 </file1>
|
test1384 | 47 <file1 name="log/download1384"> 50 </file1>
|
test1386 | 55 <file1 name="log/download1386"> 65 </file1>
|
test1393 | 55 <file1 name="log/download1393"> 65 </file1>
|
test1422 | 59 <file1 name="log/name1422"> 60 </file1>
|
test1221 | 27 <file1 name="log/stderr1221" mode="text"> 28 </file1>
|
test1222 | 27 <file1 name="log/stderr1222"> 28 </file1>
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/microblaze/ |
relax_size.exp | 12 proc regexp_test { file1 file2 test } { 13 if [regexp_diff $file1 $file2] then { fail $test } else { pass $test }
|
/external/toybox/tests/ |
cp.test | 64 testing "cp file1 file2 missing [fail]" \ 71 testing "cp file1 file2 file [fail]" \ 73 testing "cp file1 file2 dir" \ 96 # cp file1 file2 dir 97 # cp file1 missing file2 -> dir
|
/external/libbrillo/brillo/http/ |
http_form_data_unittest.cc | 72 std::string file1{"text line1\ntext line2\n"}; 74 ASSERT_EQ(file1.size(), 76 base::WriteFile(filename1, file1.data(), file1.size()))); 85 EXPECT_TRUE(form_field.AddFileField("file1", 106 "Content-Disposition: form-data; name=\"file1\";" 147 std::string file1{"text line1\ntext line2\n"}; 149 ASSERT_EQ(file1.size(), 151 base::WriteFile(filename1, file1.data(), file1.size()))) [all...] |
/frameworks/base/packages/DocumentsUI/tests/src/com/android/documentsui/ |
FilesActivityUiTest.java | 53 mDocsHelper.createDocument(rootDir0, "image/png", "file1.png"); 85 bots.directory.assertDocumentsPresent("file0.log", "file1.png", "file2.csv"); 110 "file0.log", "file1.png", "file2.csv", "Ham & Cheese.sandwich"); 132 bots.directory.clickDocument("file1.png"); 138 bots.directory.assertDocumentsAbsent("file1.png"); 146 bots.directory.clickDocument("file1.png"); 152 bots.directory.assertDocumentsPresent("file1.png");
|
/developers/build/prebuilts/gradle/DirectorySelection/Application/tests/src/com/example/android/directoryselection/ |
DirectoryEntryAdapterTest.java | 44 private static final String FILE1 = "file1"; 67 file.fileName = FILE1;
|
/developers/samples/android/content/documentsUi/DirectorySelection/Application/tests/src/com/example/android/directoryselection/ |
DirectoryEntryAdapterTest.java | 44 private static final String FILE1 = "file1"; 67 file.fileName = FILE1;
|
/external/llvm/test/tools/dsymutil/X86/ |
odr-anon-namespace.cpp | 9 #ifdef FILE1 25 // Keep the ifdef guards for FILE1 and FILE2 even if all the code is 27 #ifdef FILE1
|
/packages/apps/UnifiedEmail/src/org/apache/commons/io/comparator/ |
DefaultFileComparator.java | 60 * @return the result of calling file1's 63 public int compare(File file1, File file2) { 64 return file1.compareTo(file2);
|
/external/autotest/client/tests/aiostress/ |
control | 13 aio is done in a rotating loop. first file1 gets 8 requests, then
|
/external/clang/test/ARCMT/designated-init-in-header/ |
designated-init-in-header.m | 1 // RUN: %clang_cc1 -objcmt-migrate-designated-init -objcmt-migrate-readwrite-property -objcmt-migrate-instancetype -x objective-c %S/file1.m.in -triple x86_64-apple-darwin11 -fobjc-arc -migrate -o %t1.remap
|
/external/fio/examples/ |
1mbs_clients.fio | 9 [file1]
|
/external/icu/icu4c/source/tools/toolutil/ |
filetools.cpp | 36 static int32_t whichFileModTimeIsLater(const char *file1, const char *file2); 102 static int32_t whichFileModTimeIsLater(const char *file1, const char *file2) { 106 if (stat(file1, &stbuf1) == 0 && stat(file2, &stbuf2) == 0) { 121 fprintf(stderr, "Unable to get stats from file: %s or %s\n", file1, file2);
|
/external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/ |
FakeFtpServerIntegrationTest.groovy | 55 static final FILE1 = p(HOME_DIR, FILENAME1)
86 fileSystem.add(new FileEntry(path: FILE1, contents: ORIGINAL_CONTENTS))
90 LOG.info("Put File for local path [$FILE1]")
92 assert ftpClient.appendFile(FILE1, inputStream)
93 def contents = fileSystem.getEntry(FILE1).createInputStream().text
155 fileSystem.add(new FileEntry(FILE1))
332 fileSystem.add(new FileEntry(path: FILE1, contents: ASCII_DATA))
336 LOG.info("Get File for remotePath [$FILE1]")
338 assert ftpClient.retrieveFile(FILE1, outputStream)
352 fileSystem.add(new FileEntry(FILE1))
[all...] |
/external/sl4a/ScriptingLayer/src/com/googlecode/android_scripting/ |
ScriptStorageAdapter.java | 74 public int compare(File file1, File file2) { 75 if (file1.isDirectory() && !file2.isDirectory()) { 77 } else if (!file1.isDirectory() && file2.isDirectory()) { 80 return file1.compareTo(file2);
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/zip/ |
ZipFileTest.java | 85 return zip.getEntry("File1.txt"); 108 * zip.getEntry("File1.txt"); assertNotNull("Did not find entry", 126 InputStream is1 = zf.getInputStream(zf.getEntry("File1.txt")); 189 java.util.zip.ZipEntry zentry = zfile.getEntry("File1.txt"); 194 zentry = zfile.getEntry("testdir1/File1.txt"); 195 assertNotNull("Could not obtain ZipEntry: testdir1/File1.txt", zentry); 215 java.util.zip.ZipEntry zentry = zfile.getEntry("File1.txt"); 236 java.util.zip.ZipEntry zentry = zfile.getEntry("File1.txt"); 257 zentry = zfile.getEntry("File1.txt"); 314 ZipEntry zentry = zfile.getEntry("File1.txt") [all...] |