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

1 2 3

  /system/tools/aidl/
import_resolver.cpp 50 string relative_path = canonical_name; local
51 for (char& c : relative_path) {
56 relative_path += ".aidl";
60 path = path + relative_path;
  /external/chromium-trace/catapult/third_party/py_vulcanize/py_vulcanize/
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
  /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))
  /external/vulkan-validation-layers/tests/gtest-1.7.0/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/chromium-trace/catapult/third_party/gsutil/gslib/third_party/storage_apitools/
storage_v1_client.py 81 relative_path=u'b/{bucket}/acl/{entity}',
93 relative_path=u'b/{bucket}/acl/{entity}',
105 relative_path=u'b/{bucket}/acl',
117 relative_path=u'b/{bucket}/acl',
129 relative_path=u'b/{bucket}/acl/{entity}',
141 relative_path=u'b/{bucket}/acl/{entity}',
244 relative_path=u'b/{bucket}',
256 relative_path=u'b/{bucket}',
268 relative_path=u'b',
280 relative_path=u'b'
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/samples/storage_sample/storage/
storage_v1_client.py 57 relative_path=u'b/{bucket}/acl/{entity}',
69 relative_path=u'b/{bucket}/acl/{entity}',
81 relative_path=u'b/{bucket}/acl',
93 relative_path=u'b/{bucket}/acl',
105 relative_path=u'b/{bucket}/acl/{entity}',
117 relative_path=u'b/{bucket}/acl/{entity}',
220 relative_path=u'b/{bucket}',
232 relative_path=u'b/{bucket}',
244 relative_path=u'b',
256 relative_path=u'b'
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/
util_test.py 12 def __init__(self, relative_path, path_params):
13 self.relative_path = relative_path
36 method_config_xy = MockedMethodConfig(relative_path='{x}/y/{z}',
45 relative_path='{x}/y/{z}/q'),
49 method_config_reserved = MockedMethodConfig(relative_path='{+x}/baz',
53 method_config_no_reserved = MockedMethodConfig(relative_path='{x}/baz',
base_api.py 70 relative_path: Relative path for this method.
90 relative_path = messages.StringField(1) variable in class:ApiMethodInfo
151 def __init__(self, base_url, relative_path=None, query_params=None):
153 base_url, relative_path or ''))
162 self.relative_path = components.path or ''
170 relative_path = urlparts.path or ''
172 base_url, relative_path=relative_path, query_params=query_params)
198 if '{' in self.relative_path or '}' in self.relative_path
    [all...]
  /external/autotest/client/site_tests/platform_CrosDisksArchive/
platform_CrosDisksArchive.py 41 relative_path = os.path.join(current_dir, path)
43 dirs_to_explore.append(relative_path)
45 yield relative_path
  /external/chromium-trace/catapult/third_party/pipeline/pipeline/
status_ui.py 93 relative_path, content_type = self._RESOURCE_MAP[resource]
94 path = os.path.join(os.path.dirname(__file__), relative_path)
99 data = pkgutil.get_data(__name__, relative_path)
  /external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/testing/testclient/
fusiontables_v1_client.py 60 relative_path=u'tables/{tableId}/columns',
100 relative_path=u'tables/{tableId}/columns',
  /external/chromium-trace/catapult/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/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);
  /external/mesa3d/src/gtest/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/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/
gtest-filepath.h 92 // Given directory = "dir", relative_path = "test.xml",
96 const FilePath& relative_path);
  /ndk/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-filepath.h 92 // Given directory = "dir", relative_path = "test.xml",
96 const FilePath& relative_path);
  /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);

Completed in 470 milliseconds

1 2 3