/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/tests/functests/sampleProjects/ |
SampleProjectTest.java | 76 File[] files = samples.listFiles(); local 77 for (File file : files) {
|
/system/extras/simpleperf/ |
environment.cpp | 178 std::vector<std::string> files; local 180 GetEntriesInDir(path, &files, &subdirs); 181 for (auto& name : files) {
|
/system/extras/tests/sdcard/ |
sdcard_perf_test.cpp | 196 // Remove all the files under kTestDir and clear the caches. 353 // Setup the testcase by writting some dummy files. 620 // Create some files at this depth 644 // Count discovered files 645 int dirs = 0, files = 0; local 654 files++; 670 if (expectedFiles != files) { 671 fprintf(stderr, "expected %d files, but found %d\n", expectedFiles, files);
|
/prebuilts/gradle-plugin/com/android/tools/lint/lint-tests/24.3.0-beta1/ |
lint-tests-24.3.0-beta1.jar | |
/prebuilts/gradle-plugin/com/android/tools/lint/lint-tests/24.3.0-beta2/ |
lint-tests-24.3.0-beta2.jar | |
/prebuilts/gradle-plugin/com/android/tools/lint/lint-tests/24.3.0-beta3/ |
lint-tests-24.3.0-beta3.jar | |
/prebuilts/gradle-plugin/com/android/tools/lint/lint-tests/24.3.0-beta4/ |
lint-tests-24.3.0-beta4.jar | |
/prebuilts/gradle-plugin/com/android/tools/lint/lint-tests/24.3.1/ |
lint-tests-24.3.1.jar | |
/prebuilts/gradle-plugin/com/android/tools/lint/lint-tests/24.4.0-alpha1/ |
lint-tests-24.4.0-alpha1.jar | |
/frameworks/base/services/core/java/com/android/server/am/ |
ProcessStatsService.java | 59 static final String STATE_FILE_CHECKIN_SUFFIX = ".ci"; // State files that have checked in. 350 File[] files = mBaseDir.listFiles(); local 351 if (files == null || files.length <= minNum) { 354 ArrayList<String> filesArray = new ArrayList<String>(files.length); 356 if (DEBUG) Slog.d(TAG, "Collecting " + files.length + " files except: " + currentFile); 357 for (int i=0; i<files.length; i++) { 358 File file = files[i]; 457 ArrayList<String> files = getCommittedFiles(0, false, true) 929 ArrayList<String> files = getCommittedFiles(0, false, !isCheckin); local [all...] |
/cts/suite/cts/deviceTests/filesystemperf/src/com/android/cts/filesystemperf/ |
FileUtil.java | 69 * Existing files will not be affected. 100 * create multiple new files 103 * @param count number of files to create 107 File[] files = new File[count]; local 109 files[i] = createNewFile(context, dirName); 111 return files; 157 * remove given file or directory under the current app's files dir.
|
/cts/tests/tests/os/src/android/os/cts/ |
FileAccessPermissionTest.java | 70 // Test not writable / deletable for all files 84 // Test readable for only apk files 104 File[] files = file.listFiles(); local 105 assertTrue(files == null || files.length == 0); 123 files = userAppDataDir.listFiles(); 124 assertTrue(files == null || files.length == 0);
|
/external/conscrypt/src/platform/java/org/conscrypt/ |
TrustedCertificateStore.java | 243 String[] files = dir.list(); local 244 if (files == null) { 247 for (String filename : files) { 257 String[] files = systemDir.list(); local 258 if (files == null) { 261 for (String filename : files) {
|
/external/fio/ |
client.h | 72 struct client_file *files; member in struct:fio_client
|
/external/guava/guava/src/com/google/common/reflect/ |
ClassPath.java | 68 /** Separator for the Class-Path manifest attribute value in jar files. */ 86 * @throws IOException if the attempt to read class path resources (jar files or directories) 98 * Returns all resources loadable from the current class path, including the class files of all 343 File[] files = directory.listFiles(); local 344 if (files == null) { 353 for (File f : files) {
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/ |
CompatibilityTest.java | 165 File files[] = dataDir.listFiles(); local 173 for (int i = 0; i < files.length; i += 1) { 174 File file = files[i];
|
/external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/ |
Serializer.java | 247 File[] files = dir.listFiles(); local 248 for (File file : files) {
|
/external/libxml2/ |
testSAX.c | 1131 int files = 0; local 1185 files ++;
|
/external/linux-tools-perf/src/tools/perf/util/ |
dwarf-aux.c | 34 Dwarf_Files *files; local 42 ret = dwarf_getsrcfiles(cu_die, &files, &nfiles); 47 src = dwarf_filesrc(files, i, NULL, NULL); 346 Dwarf_Files *files; local 351 dwarf_getsrcfiles(&cu_die, &files, NULL) != 0) 354 return dwarf_filesrc(files, idx, NULL, NULL);
|
/external/protobuf/src/google/protobuf/io/ |
zero_copy_stream_unittest.cc | 677 // To test files, we create a temporary file, write, read, truncate, repeat. 813 int files[2]; local 819 ASSERT_EQ(pipe(files), 0); 822 FileOutputStream output(files[1], kBlockSizes[i]); 826 close(files[1]); // Send EOF. 829 FileInputStream input(files[0], kBlockSizes[j]); 833 close(files[0]);
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/ |
ContextTest.java | 34 File[] files = context.getFilesDir().listFiles(); local 35 assertNotNull(files); 36 assertThat(files.length, is(0)); 53 File[] files = path.listFiles(); local 54 assertNotNull(files); 55 for (File f : files) {
|
/external/skia/debugger/QT/ |
SkDebuggerGUI.cpp | 360 // don't add a '/' to files in the local directory 371 tr("Files (*.*)")); 718 const QStringList files = dir.entryList(); local 719 foreach (QString f, files) {
|
/external/smali/smali/src/main/java/org/jf/smali/ |
main.java | 242 File[] files = dir.listFiles(); local 243 if (files != null) { 244 for(File file: files) { 320 "assembles a set of smali files into a dex file", basicOptions, printDebugOptions?debugOptions:null);
|
/external/vogar/src/vogar/android/ |
AndroidSdk.java | 74 File[] files = new File("libcore/expectations").listFiles(new FilenameFilter() { local 75 // ignore obviously temporary files 80 return (files != null) ? Arrays.asList(files) : Collections.<File>emptyList(); 188 * Converts all the .class files on 'classpath' into a dex file written to 'output'.
|
/frameworks/base/core/java/com/android/internal/content/ |
NativeLibraryHelper.java | 225 * Remove the native binaries of a given package. This deletes the files 239 final File[] files = nativeLibraryRoot.listFiles(); local 240 if (files != null) { 241 for (int nn = 0; nn < files.length; nn++) { 243 Slog.d(TAG, " Deleting " + files[nn].getName()); 246 if (files[nn].isDirectory()) { 247 removeNativeBinariesFromDirLI(files[nn], true /* delete root dir */); 248 } else if (!files[nn].delete()) { 249 Slog.w(TAG, "Could not delete native binary: " + files[nn].getPath());
|