OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:resources_path
(Results
1 - 6
of
6
) sorted by null
/external/webrtc/test/testsupport/
fileutils_unittest.cc
45
std::string
resources_path
= original_working_dir_ + kPathDelimiter +
local
47
webrtc::test::CreateDirectory(
resources_path
);
49
files_.push_back(
resources_path
+ kTestName + "." + kExtension);
50
files_.push_back(
resources_path
+ kTestName + "_32." + kExtension);
51
files_.push_back(
resources_path
+ kTestName + "_64." + kExtension);
52
files_.push_back(
resources_path
+ kTestName + "_linux." + kExtension);
53
files_.push_back(
resources_path
+ kTestName + "_mac." + kExtension);
54
files_.push_back(
resources_path
+ kTestName + "_win." + kExtension);
55
files_.push_back(
resources_path
+ kTestName + "_linux_32." + kExtension);
56
files_.push_back(
resources_path
+ kTestName + "_mac_32." + kExtension)
[
all
...]
fileutils.cc
133
std::string
resources_path
= ProjectRootPath() + kResourcesDirName +
local
135
std::string resource_file =
resources_path
+ name + "_" + platform + "_" +
141
resource_file =
resources_path
+ name + "_" + platform + "." + extension;
146
resource_file =
resources_path
+ name + "_" + architecture + "." + extension;
151
return
resources_path
+ name + "." + extension;
/external/chromium_org/tools/resources/
find_unused_resources.py
123
def GetScaleDirectories(
resources_path
):
131
resources_path
: The base path of interest.
136
file_list = os.listdir(
resources_path
)
139
file_path = os.path.join(
resources_path
, file_entry)
167
resources_path
= os.path.dirname(grd_filepath)
168
scale_directories = GetScaleDirectories(
resources_path
)
/external/chromium/chrome/browser/extensions/
extension_protocols.cc
140
FilePath
resources_path
;
local
141
if (PathService::Get(chrome::DIR_RESOURCES, &
resources_path
) &&
142
directory_path.DirName() ==
resources_path
) {
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/w3c/
test_converter.py
69
resources_path
= self.path_from_webkit_root('LayoutTests', 'resources')
70
resources_relpath = self._filesystem.relpath(
resources_path
, new_path)
/external/chromium_org/chrome/browser/extensions/
extension_protocols.cc
548
base::FilePath
resources_path
;
local
551
// directory_path is a descendant of
resources_path
.
resources_path
553
if (PathService::Get(chrome::DIR_RESOURCES, &
resources_path
) &&
555
// component_extension_resources.pak file in
resources_path
, calculate
556
// extension relative path against
resources_path
.
557
resources_path
.AppendRelativePath(directory_path, &relative_path)) {
Completed in 2818 milliseconds