Searched defs:relative_path (Results 1 - 12 of 12) sorted by relevance

/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/tvcm/
H A Dresource.py21 def relative_path(self): member in class:Resource
27 return self.relative_path.replace(os.sep, '/')
32 return self.name_from_relative_path(self.relative_path)
35 def name_from_relative_path(relative_path):
36 dirname = os.path.dirname(relative_path)
37 basename = os.path.basename(relative_path)
H A Dstyle_sheet.py17 def relative_path(self): member in class:Image
18 return self.resource.relative_path
/external/chromium-trace/trace-viewer/third_party/Paste/tests/
H A Dtest_urlparser.py6 def relative_path(name): function
105 x = relative_path('find_file')
106 app = StaticURLParser(relative_path('find_file'))
110 app = TestApp(StaticURLParser(relative_path('find_file')),
/external/google-breakpad/src/testing/gtest/test/
H A Dgtest-options_test.cc63 FilePath GetAbsolutePathOf(const FilePath& relative_path) { argument
64 return FilePath::ConcatPaths(FilePath::GetCurrentDir(), relative_path);
/external/gtest/test/
H A Dgtest-options_test.cc63 FilePath GetAbsolutePathOf(const FilePath& relative_path) { argument
64 return FilePath::ConcatPaths(FilePath::GetCurrentDir(), relative_path);
/external/protobuf/gtest/test/
H A Dgtest-options_test.cc63 FilePath GetAbsolutePathOf(const FilePath& relative_path) { argument
64 return FilePath::ConcatPaths(FilePath::GetCurrentDir(), relative_path);
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
H A Dcore-extensions.rb184 # File.relative_path('rel/path') # => './rel/path'
185 # File.relative_path('/some/abs/path', '/some') # => './abs/path'
186 # File.relative_path('/some/file.txt', '/some/abs/path') # => '../../file.txt'
187 def self.relative_path( target, reference = Dir.pwd ) singleton method in class:File
/external/google-breakpad/src/testing/gtest/src/
H A Dgtest-filepath.cc189 // 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()));
191 ConcatPaths(const FilePath& directory, const FilePath& relative_path) argument
/external/gtest/src/
H A Dgtest-filepath.cc192 // Given directory = "dir", relative_path = "test.xml", returns "dir/test.xml".
195 const FilePath& relative_path) {
197 return relative_path;
199 return FilePath(dir.string() + kPathSeparator + relative_path.string());
194 ConcatPaths(const FilePath& directory, const FilePath& relative_path) argument
/external/llvm/utils/unittest/googletest/src/
H A Dgtest-filepath.cc187 // Given directory = "dir", relative_path = "test.xml", returns "dir/test.xml".
190 const FilePath& relative_path) {
192 return relative_path;
195 relative_path.c_str()));
189 ConcatPaths(const FilePath& directory, const FilePath& relative_path) argument
/external/mesa3d/src/gtest/src/
H A Dgtest-filepath.cc189 // 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()));
191 ConcatPaths(const FilePath& directory, const FilePath& relative_path) argument
/external/protobuf/gtest/src/
H A Dgtest-filepath.cc189 // 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()));
191 ConcatPaths(const FilePath& directory, const FilePath& relative_path) argument

Completed in 727 milliseconds