/external/bluetooth/glib/gio/ |
gdummyfile.c | 344 const char *relative_path) 356 g_string_append_encoded (str, relative_path, SUB_DELIM_CHARS ":@/"); 364 if (g_path_is_absolute (relative_path)) 365 new_decoded_uri.path = g_strdup (relative_path); 367 new_decoded_uri.path = g_build_filename (new_decoded_uri.path, relative_path, NULL);
|
/external/bluetooth/glib/gio/tests/ |
g-file.c | 357 char *relative_path = NULL; local 377 relative_path = g_file_get_relative_path (file1, file2); 380 g_assert (relative_path != NULL); 382 file3 = g_file_resolve_relative_path (file1, relative_path); 393 return relative_path;
|
/external/chromium/chrome/common/extensions/ |
extension_l10n_util.cc | 297 FilePath relative_path; local 298 if (!locales_path.AppendRelativePath(locale_path, &relative_path)) { 302 std::string subdir = relative_path.MaybeAsASCII();
|
extension_unpacker.cc | 306 FilePath relative_path; local 308 if (!temp_install_dir_.AppendRelativePath(message_path, &relative_path)) { 313 std::string dir_name = relative_path.DirName().MaybeAsASCII();
|
user_script.h | 53 File(const FilePath& extension_root, const FilePath& relative_path, 59 const FilePath& relative_path() const { return relative_path_; } function in class:UserScript::File
|
extension.h | 393 // |relative_path| can be untrusted user input. The returned URL will either 397 const std::string& relative_path); 398 GURL GetResourceURL(const std::string& relative_path) const { 399 return GetResourceURL(url(), relative_path); 402 // Returns an extension resource object. |relative_path| should be UTF8 404 ExtensionResource GetResource(const std::string& relative_path) const; 406 // As above, but with |relative_path| following the file system's encoding. 407 ExtensionResource GetResource(const FilePath& relative_path) const; [all...] |
/external/chromium/testing/gtest/src/ |
gtest-filepath.cc | 189 // Given directory = "dir", relative_path = "test.xml", returns "dir/test.xml". 192 const FilePath& relative_path) { 194 return relative_path; 197 relative_path.c_str()));
|
/external/gtest/src/ |
gtest-filepath.cc | 155 // Given directory = "dir", relative_path = "test.xml", returns "dir/test.xml". 158 const FilePath& relative_path) { 160 return relative_path; 163 relative_path.c_str()));
|
/external/llvm/utils/unittest/googletest/ |
gtest-filepath.cc | 189 // Given directory = "dir", relative_path = "test.xml", returns "dir/test.xml". 192 const FilePath& relative_path) { 194 return relative_path; 197 relative_path.c_str()));
|
/external/protobuf/gtest/src/ |
gtest-filepath.cc | 158 // Given directory = "dir", relative_path = "test.xml", returns "dir/test.xml". 161 const FilePath& relative_path) { 163 return relative_path; 166 relative_path.c_str()));
|
/external/chromium/chrome/browser/extensions/ |
file_manager_util.cc | 95 FilePath relative_path(components[components.size() - 1]); 96 *url = GURL(base_url.spec() + relative_path.Append(path).value());
|
image_loading_tracker.cc | 142 if (resource.relative_path().empty()) {
|
/external/chromium/testing/gtest/include/gtest/internal/ |
gtest-filepath.h | 96 // Given directory = "dir", relative_path = "test.xml", 100 const FilePath& relative_path);
|
/external/gtest/include/gtest/internal/ |
gtest-filepath.h | 96 // Given directory = "dir", relative_path = "test.xml", 100 const FilePath& relative_path);
|
/external/gtest/test/ |
gtest-options_test.cc | 63 FilePath GetAbsolutePathOf(const FilePath& relative_path) { 64 return FilePath::ConcatPaths(FilePath::GetCurrentDir(), relative_path);
|
/external/icu4c/stubdata/ |
icu_dat_generator.py | 186 relative_path = "/".join(missing_file.split("/")[-2:]) 187 print "warning: missing data for supported locale: %s" % relative_path
|
/external/llvm/utils/unittest/googletest/include/gtest/internal/ |
gtest-filepath.h | 96 // Given directory = "dir", relative_path = "test.xml", 100 const FilePath& relative_path);
|
/external/protobuf/gtest/include/gtest/internal/ |
gtest-filepath.h | 96 // Given directory = "dir", relative_path = "test.xml", 100 const FilePath& relative_path);
|
/external/protobuf/gtest/test/ |
gtest-options_test.cc | 63 FilePath GetAbsolutePathOf(const FilePath& relative_path) { 64 return FilePath::ConcatPaths(FilePath::GetCurrentDir(), relative_path);
|
/external/webkit/Tools/Scripts/webkitpy/layout_tests/port/ |
base.py | 395 relative_path = self.relative_test_filename(filename) 399 if (relative_path.startswith(LAYOUTTEST_WEBSOCKET_DIR) 400 or relative_path.startswith(LAYOUTTEST_HTTP_DIR)): 401 relative_path = relative_path[len(LAYOUTTEST_HTTP_DIR):] 408 if (port and not relative_path.startswith("local/")): 409 if relative_path.startswith("ssl/"): 414 return "%s://127.0.0.1:%u/%s" % (protocol, port, relative_path) [all...] |
/external/chromium/chrome/browser/ui/views/infobars/ |
extension_infobar.cc | 97 if (!icon_resource.relative_path().empty()) {
|
/external/llvm/lib/Support/ |
PathV2.cpp | 348 const StringRef relative_path(StringRef path) { 518 return !relative_path(p).empty(); 606 StringRef bRelativePath = path::relative_path(current_dir); 607 StringRef pRelativePath = path::relative_path(p);
|
/external/bluetooth/glib/gio/win32/ |
gwinhttpfile.c | 367 const char *relative_path) 371 wchar_t *wnew_path = g_utf8_to_utf16 (relative_path, -1, NULL, NULL, NULL);
|
/external/llvm/include/llvm/Support/ |
PathV2.h | 207 const StringRef relative_path(StringRef path); 293 /// relative_path != ""
|
/external/chromium/chrome/browser/ui/cocoa/extensions/ |
extension_infobar_controller.mm | 72 if (!icon_resource.relative_path().empty()) {
|