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

12

/external/libmojo/mojo/public/cpp/test_support/lib/
H A Dtest_support.cc13 const std::string& relative_path) {
15 relative_path.c_str());
12 EnumerateSourceRootRelativeDirectory( const std::string& relative_path) argument
/external/tensorflow/tensorflow/contrib/session_bundle/
H A Dtest_util.cc26 string TestSrcDirPath(const string& relative_path) { argument
30 return tensorflow::io::JoinPath(contrib_path, relative_path);
/external/chromium-trace/catapult/common/py_vulcanize/py_vulcanize/
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/libmojo/mojo/public/cpp/test_support/
H A Dtest_support.h24 inline FILE* OpenSourceRootRelativeFile(const std::string& relative_path) { argument
25 return MojoTestSupportOpenSourceRootRelativeFile(relative_path.c_str());
30 const std::string& relative_path);
/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/googletest/googletest/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/v8/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/vulkan-validation-layers/tests/gtest-1.7.0/test/
H A Dgtest-options_test.cc63 FilePath GetAbsolutePathOf(const FilePath& relative_path) { argument
64 return FilePath::ConcatPaths(FilePath::GetCurrentDir(), relative_path);
/external/libcxx/test/std/experimental/filesystem/class.path/path.member/path.decompose/
H A Dpath.decompose.pass.cpp21 // path relative_path() const;
65 std::string relative_path; member in struct:PathDecomposeTestcase
129 assert(p.relative_path() == TC.relative_path);
130 assert(p.has_relative_path() != TC.relative_path.empty());
/external/libmojo/mojo/public/tests/
H A Dtest_support_private.cc31 FILE* MojoTestSupportOpenSourceRootRelativeFile(const char* relative_path) { argument
33 return g_test_support->OpenSourceRootRelativeFile(relative_path);
39 const char* relative_path) {
41 return g_test_support->EnumerateSourceRootRelativeDirectory(relative_path);
38 MojoTestSupportEnumerateSourceRootRelativeDirectory( const char* relative_path) argument
/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/libmojo/mojo/edk/test/
H A Dtest_support_impl.cc28 base::FilePath ResolveSourceRootRelativePath(const char* relative_path) { argument
34 relative_path, "/", base::TRIM_WHITESPACE, base::SPLIT_WANT_ALL)) {
63 FILE* TestSupportImpl::OpenSourceRootRelativeFile(const char* relative_path) { argument
64 return base::OpenFile(ResolveSourceRootRelativePath(relative_path), "rb");
68 const char* relative_path) {
70 base::FileEnumerator e(ResolveSourceRootRelativePath(relative_path), false,
67 EnumerateSourceRootRelativeDirectory( const char* relative_path) argument
/external/libmojo/mojo/public/tools/bindings/
H A Dmojom_bindings_generator.py83 def relative_path(self): member in class:RelativePath
155 module.path = rel_filename.relative_path()
/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/googletest/googletest/src/
H A Dgtest-filepath.cc197 // Given directory = "dir", relative_path = "test.xml", returns "dir/test.xml".
200 const FilePath& relative_path) {
202 return relative_path;
204 return FilePath(dir.string() + kPathSeparator + relative_path.string());
199 ConcatPaths(const FilePath& directory, const FilePath& relative_path) argument
/external/libvpx/libvpx/third_party/googletest/src/src/
H A Dgtest-filepath.cc197 // Given directory = "dir", relative_path = "test.xml", returns "dir/test.xml".
200 const FilePath& relative_path) {
202 return relative_path;
204 return FilePath(dir.string() + kPathSeparator + relative_path.string());
199 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.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/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
/external/swiftshader/third_party/LLVM/utils/unittest/googletest/
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/v8/testing/gtest/src/
H A Dgtest-filepath.cc197 // Given directory = "dir", relative_path = "test.xml", returns "dir/test.xml".
200 const FilePath& relative_path) {
202 return relative_path;
204 return FilePath(dir.string() + kPathSeparator + relative_path.string());
199 ConcatPaths(const FilePath& directory, const FilePath& relative_path) argument
/external/v8/tools/clang/translation_unit/
H A DTranslationUnitGenerator.cpp63 llvm::StringRef relative_path,
69 const string& relative_path) const;
146 llvm::StringRef relative_path,
177 DoubleSlashSystemHeaders(parent, relative_path.str());
180 DoubleSlashSystemHeaders(search_path.str(), relative_path.str());
189 const string& relative_path) const {
197 return search_path + (is_system_header ? "//" : "/") + relative_path;
138 InclusionDirective( clang::SourceLocation hash_loc, const clang::Token& include_tok, llvm::StringRef file_name, bool is_angled, clang::CharSourceRange range, const clang::FileEntry* file, llvm::StringRef search_path, llvm::StringRef relative_path, const clang::Module* imported) argument
/external/vulkan-validation-layers/tests/gtest-1.7.0/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

Completed in 2331 milliseconds

12