OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:hashes_file_path
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/
devtools_file_hashes.py
39
def save_hashes(
hashes_file_path
, hashes):
41
with open(
hashes_file_path
, "wt") as hashes_file:
44
print "ERROR: Failed to write %s" %
hashes_file_path
48
def load_hashes(
hashes_file_path
):
50
with open(
hashes_file_path
, "r") as hashes_file:
convert_svg_images_to_png.py
60
hashes_file_path
= image_sources_path + "/" + hashes_file_name
variable
65
svg_file_paths_to_convert = devtools_file_hashes.files_with_invalid_hashes(
hashes_file_path
, svg_file_paths)
87
devtools_file_hashes.update_file_hashes(
hashes_file_path
, svg_file_paths)
optimize_png_images.py
53
hashes_file_path
= image_sources_path + "/" + hashes_file_name
variable
57
svg_file_paths_to_optimize = devtools_file_hashes.files_with_invalid_hashes(
hashes_file_path
, svg_file_paths)
103
devtools_file_hashes.update_file_hashes(
hashes_file_path
, svg_file_paths)
/external/chromium_org/third_party/WebKit/Source/devtools/
PRESUBMIT.py
81
hashes_file_path
= image_sources_path + "/" + hashes_file_name
82
invalid_hash_file_paths = devtools_file_hashes.files_with_invalid_hashes(
hashes_file_path
, image_source_file_paths)
106
hashes_file_path
= image_sources_path + "/" + hashes_file_name
107
invalid_hash_file_paths = devtools_file_hashes.files_with_invalid_hashes(
hashes_file_path
, image_source_file_paths)
Completed in 127 milliseconds