Home
last modified time | relevance | path

Searched refs:path_components (Results 1 – 9 of 9) sorted by relevance

/external/perfetto/src/profiling/memory/
Dbookkeeping.h108 std::vector<Interned<std::string>> path_components{};
111 return std::tie(build_id, offset, start, end, load_bias, path_components) <
113 other.load_bias, other.path_components);
116 return std::tie(build_id, offset, start, end, load_bias, path_components) ==
118 other.load_bias, other.path_components);
416 for (const auto& path : mapping.path_components)
Dbookkeeping.cc243 map.path_components.emplace_back(string_interner_.Intern(sp.cur_token())); in InternCodeLocation()
264 for (const Interned<std::string>& str : map->path_components) in WriteMap()
279 for (const Interned<std::string>& str : map->path_components) in WriteMap()
/external/libchrome/base/files/
Dfile_util_posix.cc912 std::vector<FilePath::StringType> path_components; in VerifyPathControlledByUser() local
915 path.GetComponents(&path_components); in VerifyPathControlledByUser()
918 for (ib = base_components.begin(), ip = path_components.begin(); in VerifyPathControlledByUser()
923 DCHECK(ip != path_components.end()); in VerifyPathControlledByUser()
931 for (; ip != path_components.end(); ++ip) { in VerifyPathControlledByUser()
/external/epid-sdk/
DSConstruct91 path_components = os.path.realpath(lib_path).split(os.sep)
92 if 'Windows Kits' in path_components:
93 i = path_components.index('Windows Kits')
95 'Windows Kits {0} {1}'.format(path_components[i + 1],
96 path_components[i + 3]))
/external/grpc-grpc/src/python/grpcio_tests/tests/protoc_plugin/
D_split_definitions_test.py53 for path_components in path_components_sequence:
55 for path_component in path_components:
Dbeta_python_plugin_test.py84 for path_components in path_components_sequence:
86 for path_component in path_components:
/external/python/apitools/apitools/gen/
Dutil.py104 path_components = path.split('/')
106 for component in path_components:
/external/tensorflow/tensorflow/python/debug/lib/
Ddebug_data.py307 path_components = os.path.normpath(debug_dump_rel_path).split(os.sep)
308 self._device_name = device_path_to_device_name(path_components[0])
309 base = path_components[-1]
327 self._node_name = "/".join(path_components[1:-1] + [node_base_name])
/external/google-breakpad/src/client/mac/crash_generation/
DInspector.mm290 NSArray *path_components = [NSArray
296 minidumpDir = [NSString pathWithComponents:path_components];