HomeSort by relevance Sort by last modified time
    Searched full:relative_path (Results 1 - 25 of 49) sorted by null

1 2

  /external/chromium-trace/trace-viewer/tracing/third_party/tvcm/tvcm/
resource.py 21 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)
resource_unittest.py 16 self.assertEquals(os.path.join('b', 'c.js'), r.relative_path)
style_sheet.py 17 def relative_path(self): member in class:Image
18 return self.resource.relative_path
resource_loader.py 65 def FindResourceGivenRelativePath(self, relative_path, binary=False):
69 absolute_path = os.path.join(script_path, relative_path)
html_module_unittest.py 60 def FindResourceGivenRelativePath(self, relative_path):
63 absolute_path = os.path.join(script_path, relative_path)
  /external/google-breakpad/src/testing/gtest/scripts/
fuse_gtest_files.py 86 def VerifyFileExists(directory, relative_path):
89 relative_path is the file path relative to the given directory.
92 if not os.path.isfile(os.path.join(directory, relative_path)):
93 print 'ERROR: Cannot find %s in directory %s.' % (relative_path,
110 def VerifyOutputFile(output_dir, relative_path):
113 relative_path is relative to the output_dir directory.
117 output_file = os.path.join(output_dir, relative_path)
123 (relative_path, output_dir))
  /external/protobuf/gtest/scripts/
fuse_gtest_files.py 86 def VerifyFileExists(directory, relative_path):
89 relative_path is the file path relative to the given directory.
92 if not os.path.isfile(os.path.join(directory, relative_path)):
93 print 'ERROR: Cannot find %s in directory %s.' % (relative_path,
110 def VerifyOutputFile(output_dir, relative_path):
113 relative_path is relative to the output_dir directory.
117 output_file = os.path.join(output_dir, relative_path)
123 (relative_path, output_dir))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/CodeWarrior/
__init__.py 93 getbaseclasses(Relative_Path)
160 'RlPt' : Relative_Path,
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
core-extensions.rb 184 # 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/chromium-trace/trace-viewer/third_party/Paste/tests/
test_urlparser.py 6 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/
gtest-options_test.cc 63 FilePath GetAbsolutePathOf(const FilePath& relative_path) {
64 return FilePath::ConcatPaths(FilePath::GetCurrentDir(), 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/protobuf/gtest/test/
gtest-options_test.cc 63 FilePath GetAbsolutePathOf(const FilePath& relative_path) {
64 return FilePath::ConcatPaths(FilePath::GetCurrentDir(), relative_path);
  /ndk/sources/third_party/googletest/googletest/test/
gtest-options_test.cc 63 FilePath GetAbsolutePathOf(const FilePath& relative_path) {
64 return FilePath::ConcatPaths(FilePath::GetCurrentDir(), relative_path);
  /external/clang/lib/Frontend/
ModuleDependencyCollector.cpp 74 path::append(Dest, path::relative_path(AbsoluteSrc));
  /external/google-breakpad/src/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 192 // 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());
  /external/llvm/utils/unittest/googletest/src/
gtest-filepath.cc 187 // 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()));
  /external/mesa3d/src/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/protobuf/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()));
  /ndk/sources/third_party/googletest/googletest/src/
gtest-filepath.cc 192 // 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());
  /external/llvm/utils/lit/lit/
discovery.py 22 """getTestSuite(item, litConfig, cache) -> (suite, relative_path)
27 @retval (suite, relative_path) - The suite that @arg item is in, and its
  /external/google-breakpad/src/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 92 // Given directory = "dir", relative_path = "test.xml",
96 const FilePath& 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);

Completed in 1813 milliseconds

1 2