/external/mesa3d/src/gtest/src/ |
gtest-filepath.cc | 75 // Windows CE doesn't have a current directory. You should not use 76 // the current directory in tests on Windows CE, but this at least 99 // Returns the current working directory, or "" if unsuccessful. 102 // Windows CE doesn't have a current directory, so we just return 142 // Returns a copy of the FilePath with the directory part removed. 144 // FilePath("file"). If there is no directory part ("just_a_file"), it returns 153 // RemoveFileName returns the directory path with the filename removed. 170 // Helper functions for naming files in a directory for xml output. 172 // Given directory = "dir", base_name = "test", number = 0, 176 FilePath FilePath::MakeFileName(const FilePath& directory, [all...] |
/external/open-vcdiff/gtest/src/ |
gtest-filepath.cc | 69 // Windows CE doesn't have a current directory. You should not use 70 // the current directory in tests on Windows CE, but this at least 84 // Returns the current working directory, or "" if unsuccessful. 87 // Windows CE doesn't have a current directory, so we just return 111 // Returns a copy of the FilePath with the directory part removed. 113 // FilePath("file"). If there is no directory part ("just_a_file"), it returns 122 // RemoveFileName returns the directory path with the filename removed. 139 // Helper functions for naming files in a directory for xml output. 141 // Given directory = "dir", base_name = "test", number = 0, 145 FilePath FilePath::MakeFileName(const FilePath& directory, [all...] |
/external/protobuf/gtest/src/ |
gtest-filepath.cc | 69 // Windows CE doesn't have a current directory. You should not use 70 // the current directory in tests on Windows CE, but this at least 84 // Returns the current working directory, or "" if unsuccessful. 87 // Windows CE doesn't have a current directory, so we just return 111 // Returns a copy of the FilePath with the directory part removed. 113 // FilePath("file"). If there is no directory part ("just_a_file"), it returns 122 // RemoveFileName returns the directory path with the filename removed. 139 // Helper functions for naming files in a directory for xml output. 141 // Given directory = "dir", base_name = "test", number = 0, 145 FilePath FilePath::MakeFileName(const FilePath& directory, [all...] |
/ndk/sources/third_party/googletest/googletest/src/ |
gtest-filepath.cc | 76 // Windows CE doesn't have a current directory. You should not use 77 // the current directory in tests on Windows CE, but this at least 100 // Returns the current working directory, or "" if unsuccessful. 103 // Windows CE doesn't have a current directory, so we just return 144 // Returns a copy of the FilePath with the directory part removed. 146 // FilePath("file"). If there is no directory part ("just_a_file"), it returns 155 // RemoveFileName returns the directory path with the filename removed. 172 // Helper functions for naming files in a directory for xml output. 174 // Given directory = "dir", base_name = "test", number = 0, 178 FilePath FilePath::MakeFileName(const FilePath& directory, [all...] |
/external/chromium_org/sync/engine/ |
apply_updates_and_resolve_conflicts_command_unittest.cc | 61 entry_factory_.reset(new TestEntryFactory(directory())); 145 WriteTransaction trans(FROM_HERE, UNITTEST, directory()); 162 // modifications that would create a directory loop if the update were applied. 173 WriteTransaction trans(FROM_HERE, UNITTEST, directory()); 189 // as a child of X. That's a directory loop. The UpdateApplicator should 202 // Runs the ApplyUpdatesAndResolveConflictsCommand on a directory where the 214 WriteTransaction trans(FROM_HERE, UNITTEST, directory()); 234 // Runs the ApplyUpdatesAndResolveConflictsCommand on a directory where the 240 // Create a server-deleted directory. 245 WriteTransaction trans(FROM_HERE, UNITTEST, directory()); [all...] |
/external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/ |
base.js | 112 function walkSubtree(subtree, directory) 116 var childPath = base.joinPath(directory, childName); 134 var directory = base.dirName(path); 135 pathsByDirectory[directory] = pathsByDirectory[directory] || []; 136 pathsByDirectory[directory].push(path); 138 Object.keys(pathsByDirectory).sort().forEach(function(directory) { 139 var paths = pathsByDirectory[directory]; 140 callback(directory + ' (' + paths.length + ' tests)', paths);
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/ |
html.py | 46 self.directory = None 69 assert config.html_dir, "must provide a directory for html reporting" 98 os.path.join(self.directory, static) 195 html_path = os.path.join(self.directory, html_filename) 222 os.path.join(self.directory, "index.html"), 227 self.status.write(self.directory) 244 def read(self, directory): 245 """Read the last status in `directory`.""" 248 status_file = os.path.join(directory, self.STATUS_FILE) 265 def write(self, directory) [all...] |
/external/chromium_org/tools/checkdeps/ |
checkdeps.py | 41 # And it can include files from this other directory even though there is 51 files within this directory and subdirectories, you can write a 68 There is an implicit rule for the current directory (where the DEPS file lives) 70 allow the current directory everywhere. This implicit rule is applied first, 74 directory and then take away permissions from sub-parts, or the reverse. 76 Note that all directory separators must be slashes (Unix-style) and not 154 # Map of normalized directory paths to rules to use for those 175 cur_dir: The current directory, normalized path. We will create an 176 implicit rule that allows inclusion from this directory. 183 # First apply the implicit "allow" rule for the current directory [all...] |
/external/chromium_org/chrome/browser/ui/ash/ |
screenshot_taker_unittest.cc | 65 // allowed to set the directory, basename and profile. 114 base::ScopedTempDir directory; local 115 ASSERT_TRUE(directory.CreateUniqueTempDir()); 116 SetScreenshotDirectoryForTest(&screenshot_taker, directory.path());
|
/external/chromium_org/third_party/WebKit/Source/core/scripts/ |
in_generator.py | 59 # a directory to have been generated in place of one of 63 # The build system should ensure our output directory exists, but just in case. 64 directory = os.path.dirname(file_path) 65 if not os.path.exists(directory): 66 os.makedirs(directory)
|
/external/chromium_org/tools/checkbins/ |
checkbins.py | 6 """Makes sure that all EXE and DLL files in the provided directory were built 17 # Find /third_party/pefile based on current directory and script path. 43 directory = args[0] 47 for file in os.listdir(directory): 48 path = os.path.abspath(os.path.join(directory, file)) 101 usage = "Usage: %prog [options] DIRECTORY"
|
/external/chromium_org/tools/export_tarball/ |
export_tarball.py | 134 print 'Cannot find the src directory ' + GetSourceDirectory() 156 for directory in TESTDIRS: 157 archive.add(os.path.join(GetSourceDirectory(), directory), 158 arcname=os.path.join(output_basename, directory))
|
/external/eyes-free/AccessCheck/src/com/android/accessibility/ |
AccessibilityValidator.java | 104 * Firstly, it has a containing (parent) directory of "layout". Secondly, it 107 private List<InputSource> findLayoutFiles(File directory) { 110 for (File file : directory.listFiles()) { 111 // The file is a directory; recurse on the file. 115 // Does the containing directory and filename meet our 117 } else if (directory.getName().toLowerCase().contains("layout")
|
/external/skia/tools/ |
sanitize_source_files.py | 19 def SanitizeFilesWithModifiers(directory, file_modifiers, line_modifiers): 23 directory: string - The directory which will be recursively traversed to 30 for item in os.listdir(directory): 32 full_item_path = os.path.join(directory, item) 78 # Item is a directory recursively call the method.
|
/frameworks/base/core/java/android/net/http/ |
HttpResponseCache.java | 47 * in the {@link Context#getCacheDir() application-specific cache directory} of 75 * external storage directory. <strong>There are no access controls on the 76 * external storage directory so it should not be used for caches that could 79 * during use. Retrieve the external cache directory using {@link 180 * @param directory the directory to hold cache data. 183 * @throws IOException if {@code directory} cannot be used for this cache. 187 public static HttpResponseCache install(File directory, long maxSize) throws IOException { 193 if (installedCache.getDirectory().equals(directory) 204 new com.android.okhttp.HttpResponseCache(directory, maxSize) [all...] |
/external/chromium_org/build/android/gyp/util/ |
build_utils.py | 34 def FindInDirectory(directory, filter): 36 for root, dirnames, filenames in os.walk(directory): 44 for directory in directories: 45 all_files.extend(FindInDirectory(directory, filter))
|
/external/chromium_org/chrome/common/extensions/docs/server2/ |
file_system.py | 46 directory, and a list of files in the directory is mapped to the path. 62 is a directory, |StatInfo| will have the versions of all the children of 63 the directory in |StatInfo.child_versions|.
|
/external/chromium_org/chrome/installer/util/ |
delete_after_reboot_helper.h | 25 // Attempts to recursively schedule the directory for deletion. 28 // Removes all pending moves that are registered for |directory| and all 29 // elements contained in |directory|. 30 bool RemoveFromMovesPendingReboot(const wchar_t* directory);
|
/external/chromium_org/chrome/test/chromedriver/ |
embed_extension_in_cpp.py | 21 '', '--directory', type='string', default='.', 22 help='Path to directory where the cc/h file should be created') 37 options.directory, global_string_map)
|
embed_js_in_cpp.py | 25 '', '--directory', type='string', default='.', 26 help='Path to directory where the cc/h js file should be created') 41 options.directory, global_string_map)
|
/external/chromium_org/chrome/test/mini_installer/ |
test_installer.py | 132 def ParsePropertyFiles(directory, filenames): 137 directory: The directory where the Config file and all Property files 146 path = os.path.join(directory, filename) 162 directory = os.path.dirname(os.path.abspath(filename)) 167 config.states[state_name] = ParsePropertyFiles(directory,
|
/external/chromium_org/sync/internal_api/public/ |
internal_components_factory_impl.h | 28 syncable::Directory* directory,
|
/external/chromium_org/sync/internal_api/public/test/ |
test_internal_components_factory.h | 18 // Use this to test the case where a directory fails to load. 34 syncable::Directory* directory,
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/ |
check-for-inappropriate-files-in-framework | 48 $INAPPROPRIATE_FILES[framework].each do |directory, patterns| 49 framework_bundle_path = is_shallow_bundle ? "#{framework}.framework" : "#{framework}.framework/Versions/A/#{directory}" 53 print_inappropriate_file_error framework, is_shallow_bundle ? inappropriate_file : "#{directory}/#{inappropriate_file}"
|
check-for-inappropriate-macros-in-external-headers | 44 if File.directory? full_path
|