HomeSort by relevance Sort by last modified time
    Searched refs:FILES (Results 76 - 100 of 153) sorted by null

1 2 34 5 6 7

  /external/chromium_org/chrome/common/extensions/
extension_file_util.cc 11 #include "base/files/file_enumerator.h"
12 #include "base/files/file_path.h"
13 #include "base/files/scoped_temp_dir.h"
207 base::FileEnumerator::FILES);
272 // Check that extensions don't include private key files.
344 // Clean up temporary files left if Chrome crashed or quit in the middle
471 // Enumerate all files and directories in the extension root.
475 base::FileEnumerator::DIRECTORIES | base::FileEnumerator::FILES;
  /external/chromium_org/chrome/test/automation/
proxy_launcher.cc 11 #include "base/files/file_enumerator.h"
48 // "dest/*", overwriting existing files as necessary.
50 // This also kicks the files out of the memory cache for the startup tests.
56 base::FileEnumerator::FILES | base::FileEnumerator::DIRECTORIES);
68 // Kick out the profile files, this must happen after SetUp which creates the
71 base::FileEnumerator kickout(dest, true, base::FileEnumerator::FILES);
  /external/chromium_org/third_party/mesa/src/bin/
mklib 11 # copy of this software and associated documentation files (the "Software"),
32 # Given a list of files, look for .a archives and unpack them.
33 # Return the original list of files minus the .a files plus the unpacked files.
35 # remaining params: list of .o and .a files
39 FILES=$@
44 for FILE in $FILES ; do
47 # extract the .o files from this .a archive
74 # list of object files
    [all...]
  /external/mesa3d/bin/
mklib 11 # copy of this software and associated documentation files (the "Software"),
32 # Given a list of files, look for .a archives and unpack them.
33 # Return the original list of files minus the .a files plus the unpacked files.
35 # remaining params: list of .o and .a files
39 FILES=$@
44 for FILE in $FILES ; do
47 # extract the .o files from this .a archive
74 # list of object files
    [all...]
  /external/chromium/base/
file_util.h 69 // Returns the number of files matching the current path that were
80 // Returns the total number of bytes used by all the files under |root_path|.
87 // Returns the total number of bytes used by all files matching the provided
124 // temporary files. On Windows it preserves attributes of the target file.
133 // If there are files existing under to_path, always overwrite.
163 // Returns true if the contents of the two files given are equal, false
168 // Returns true if the contents of the two text files given are equal, false
258 // Get a temporary directory for shared memory files.
279 // Like above but for shmem files. Only useful for POSIX.
324 // Returns false it it fails. Empty files cannot be resolved with thi
    [all...]
file_util_posix.cc 120 // means that files which are newer than |comparison_time| may
130 // all, we may have to accept either of the two issues: 1. files
132 // (current implementation) 2. files newer than
165 FileEnumerator::FILES | FileEnumerator::DIRECTORIES |
189 // must be the same type, either both files, or both directories.
253 static_cast<FileEnumerator::FILE_TYPE>(FileEnumerator::FILES |
683 (!S_ISDIR(i->stat.st_mode) && (file_type_ & FILES)))
  /external/chromium/chrome/browser/printing/
printing_layout_uitest.cc 141 file_util::FileEnumerator::FILES);
293 NavigateToURL(test_server.GetURL("files/printing/test1.html"));
307 "files/printing/test2.html", L"test2",
309 "files/printing/test3.html", L"test3",
311 "files/printing/test4.html", L"test4",
376 GURL url = test_server.GetURL("files/printing/popup_delayed_print.htm");
387 url = test_server.GetURL("files/printing/test1.html");
408 GURL url = test_server.GetURL("files/printing/iframe.htm");
419 url = test_server.GetURL("files/printing/test1.html");
  /external/chromium/net/disk_cache/
block_files_unittest.cc 16 // Returns the number of files in this folder.
18 file_util::FileEnumerator iter(path, false, file_util::FileEnumerator::FILES);
35 BlockFiles files(path);
36 ASSERT_TRUE(files.Init(true));
41 // Fill up the 32-byte block file (use three files).
43 EXPECT_TRUE(files.CreateBlock(RANKINGS, 4, &address[i]));
47 // Make sure we don't keep adding files.
50 files.DeleteBlock(address[target], false);
51 EXPECT_TRUE(files.CreateBlock(RANKINGS, 4, &address[target]));
56 // We should be able to delete empty block files
    [all...]
  /external/chromium/net/tools/dump_cache/
dump_files.cc 5 // Performs basic inspection of the disk cache files with minimal disruption
6 // to the actual files (they still may change if an error is detected on the
7 // files).
107 // Simple class that interacts with the set of cache files.
124 // Loads a specific block from the block files.
142 printf("Unable to init block files\n");
288 // Dumps the headers of all files.
297 file_util::FileEnumerator::FILES, pattern);
  /external/chromium_org/chrome/browser/ui/pdf/
pdf_browsertest.cc 6 #include "base/files/file_enumerator.h"
56 // Use our own TestServer so that we can serve files from the pdf directory.
322 base::FileEnumerator::FILES,
  /external/chromium_org/chrome/installer/util/
delete_after_reboot_helper.cc 5 // This file defines helper methods used to schedule files for deletion
19 #include "base/files/file_enumerator.h"
56 // Must only be called for regular files or directories that will be empty.
67 // This flag valid only for files
77 // Useful debugging code to track down what files are in use.
117 // First schedule all the normal files for deletion.
121 base::FileEnumerator::FILES);
340 // files or subdirectories. Returns true on success
  /external/chromium_org/content/browser/renderer_host/pepper/
pepper_flash_file_message_filter.cc 9 #include "base/files/file_enumerator.h"
59 // will construct a bad path and could provide access to the wrong files.
238 base::FileEnumerator::FILES |
  /external/chromium_org/gpu/tools/compositor_model_bench/
compositor_model_bench.cc 29 #include "base/files/file_enumerator.h"
30 #include "base/files/file_path.h"
111 LOG(WARNING) << "No configuration files loaded.";
367 "a directory containing only these files\n"
369 "all files in that directory and subdirectories)\n"
392 base::FileEnumerator dirItr(inPath, true, base::FileEnumerator::FILES);
  /external/chromium_org/net/disk_cache/
block_files_unittest.cc 6 #include "base/files/file_enumerator.h"
17 // Returns the number of files in this folder.
19 base::FileEnumerator iter(path, false, base::FileEnumerator::FILES);
36 BlockFiles files(cache_path_);
37 ASSERT_TRUE(files.Init(true));
42 // Fill up the 32-byte block file (use three files).
44 EXPECT_TRUE(files.CreateBlock(RANKINGS, 4, &address[i]));
48 // Make sure we don't keep adding files.
51 files.DeleteBlock(address[target], false);
52 EXPECT_TRUE(files.CreateBlock(RANKINGS, 4, &address[target]))
    [all...]
  /external/chromium_org/net/disk_cache/v3/
block_bitmaps_unittest.cc 6 #include "base/files/file_enumerator.h"
17 // Returns the number of files in this folder.
19 base::FileEnumerator iter(path, false, base::FileEnumerator::FILES);
36 BlockFiles files(cache_path_);
37 ASSERT_TRUE(files.Init(true));
42 // Fill up the 32-byte block file (use three files).
44 EXPECT_TRUE(files.CreateBlock(RANKINGS, 4, &address[i]));
48 // Make sure we don't keep adding files.
51 files.DeleteBlock(address[target], false);
52 EXPECT_TRUE(files.CreateBlock(RANKINGS, 4, &address[target]))
    [all...]
  /external/chromium_org/webkit/browser/fileapi/
local_file_util.cc 8 #include "base/files/file_enumerator.h"
9 #include "base/files/file_util_proxy.h"
87 // Disallow opening files in symlinked paths.
152 base::FileEnumerator::FILES | base::FileEnumerator::DIRECTORIES))
  /build/core/
definitions.mk 36 # Some targets may have multiple files listed in the BUILT and INSTALLED
58 # Full paths to all prebuilt files that will be copied
62 # Full path to all files that are made by some tool
65 # Full path to all asm, C, C++, lex and yacc generated C files.
72 # These files go into the SDK
75 # Files for dalvik. This is often build without building the rest of the OS.
78 # All findbugs xml files
81 # GPL module license files
173 ## Find all of the java files under the named directories.
175 ## SRC_FILES := $(call all-java-files-under,src tests
    [all...]
  /external/chromium/chrome/browser/extensions/
user_script_master.cc 193 file_util::FileEnumerator::FILES,
  /external/chromium/chrome/browser/history/
text_database_manager.cc 26 // The number of database files we will be attached to at once.
157 // Find files on disk matching our pattern so we can quickly test for them.
161 dir_, false, file_util::FileEnumerator::FILES, filepattern);
385 // Now go through and delete all the files.
456 // few dozen files at most, so this should not be an issue.
  /external/chromium/chrome/browser/
shell_integration_win.cc 151 file_util::FileEnumerator::FILES,
300 // since the user may have changed their shell settings to cause HTML files
  /external/chromium_org/chrome/browser/chromeos/contacts/
contact_database_unittest.cc 11 #include "base/files/file_enumerator.h"
12 #include "base/files/file_path.h"
13 #include "base/files/scoped_temp_dir.h"
317 // Overwrite all of the files in the database with a space character.
319 database_path(), false, base::FileEnumerator::FILES);
  /external/chromium_org/chrome/browser/chromeos/drive/
file_system_util.cc 13 #include "base/files/file_enumerator.h"
14 #include "base/files/file_path.h"
15 #include "base/files/scoped_platform_file_closer.h"
113 // Moves all files under |directory_from| to |directory_to|.
117 base::FileEnumerator::FILES);
121 if (!base::PathExists(file_to)) // Do not overwrite existing files.
320 // Move all files inside "persistent" to "files".
324 // Move all files inside "tmp" to "files"
    [all...]
  /external/chromium_org/chrome/browser/chromeos/extensions/
external_cache.cc 10 #include "base/files/file_enumerator.h"
30 // File name extension for CRX files (not case sensitive).
94 // Don't delete files out of cache_dir_.
226 // Enumerate all the files in the cache |dir|, including directories
228 int types = base::FileEnumerator::FILES | base::FileEnumerator::DIRECTORIES |
242 // crx files in the cache are named <extension-id>-<version>.crx.
308 // Only delete old cached files under cache_dir_ folder.
  /external/chromium_org/chrome/browser/printing/
printing_layout_browsertest.cc 7 #include "base/files/file_enumerator.h"
8 #include "base/files/file_path.h"
202 base::FileEnumerator::FILES);
345 browser(), test_server()->GetURL("files/printing/test1.html"));
359 "files/printing/test2.html", L"test2",
361 "files/printing/test3.html", L"test3",
363 "files/printing/test4.html", L"test4",
424 GURL url = test_server()->GetURL("files/printing/popup_delayed_print.htm");
434 url = test_server()->GetURL("files/printing/test1.html");
452 GURL url = test_server()->GetURL("files/printing/iframe.htm")
    [all...]
  /external/chromium_org/chrome/browser/
shell_integration_win.cc 14 #include "base/files/file_enumerator.h"
401 base::FileEnumerator::FILES, FILE_PATH_LITERAL("*.lnk"));

Completed in 1837 milliseconds

1 2 34 5 6 7