OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:resources_path
(Results
1 - 10
of
10
) sorted by null
/external/chromium_org/third_party/webrtc/test/testsupport/
fileutils_unittest.cc
47
std::string
resources_path
= original_working_dir_ + kPathDelimiter +
local
49
webrtc::test::CreateDir(
resources_path
);
51
files_.push_back(
resources_path
+ kTestName + "." + kExtension);
52
files_.push_back(
resources_path
+ kTestName + "_32." + kExtension);
53
files_.push_back(
resources_path
+ kTestName + "_64." + kExtension);
54
files_.push_back(
resources_path
+ kTestName + "_linux." + kExtension);
55
files_.push_back(
resources_path
+ kTestName + "_mac." + kExtension);
56
files_.push_back(
resources_path
+ kTestName + "_win." + kExtension);
57
files_.push_back(
resources_path
+ kTestName + "_linux_32." + kExtension);
58
files_.push_back(
resources_path
+ kTestName + "_mac_32." + kExtension)
[
all
...]
fileutils.cc
229
std::string
resources_path
= ProjectRootPath() + kResourcesDirName +
local
231
std::string resource_file =
resources_path
+ name + "_" + platform + "_" +
237
resource_file =
resources_path
+ name + "_" + platform + "." + extension;
242
resource_file =
resources_path
+ name + "_" + architecture + "." + extension;
248
return
resources_path
+ name + "." + extension;
/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/chrome/browser/extensions/
url_request_util.cc
216
base::FilePath
resources_path
;
local
219
// directory_path is a descendant of
resources_path
.
resources_path
221
if (PathService::Get(chrome::DIR_RESOURCES, &
resources_path
) &&
223
// component_extension_resources.pak file in
resources_path
, calculate
224
// extension relative path against
resources_path
.
225
resources_path
.AppendRelativePath(directory_path, &relative_path)) {
component_loader.cc
352
base::FilePath
resources_path
;
local
353
PathService::Get(chrome::DIR_RESOURCES, &
resources_path
);
355
resources_path
.Append(extension_misc::kChromeVoxExtensionPath);
/external/chromium_org/tools/resources/
find_unused_resources.py
133
def GetScaleDirectories(
resources_path
):
141
resources_path
: The base path of interest.
146
file_list = os.listdir(
resources_path
)
149
file_path = os.path.join(
resources_path
, file_entry)
177
resources_path
= os.path.dirname(grd_filepath)
178
scale_directories = GetScaleDirectories(
resources_path
)
/external/chromium_org/chrome/browser/chromeos/input_method/
component_extension_ime_manager_impl.cc
288
base::FilePath
resources_path
;
local
289
if (!PathService::Get(chrome::DIR_RESOURCES, &
resources_path
))
291
component_ime.path =
resources_path
.Append(component_ime.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/web_applications/
web_app_mac.mm
857
base::FilePath
resources_path
= GetResourcesPath(app_path);
858
if (!base::CreateDirectory(
resources_path
))
861
return icon_family.WriteDataToFile(
resources_path
.Append("app.icns"));
[
all
...]
Completed in 478 milliseconds