Home
last modified time | relevance | path

Searched refs:new_prefix (Results 1 - 13 of 13) sorted by relevance

/third_party/skia/third_party/externals/dawn/scripts/
H A Dextract.py139 new_prefix, rest = entry.path.split('/', 1)
143 prefix = new_prefix
144 if prefix != new_prefix:
145 raise ValueError((prefix, new_prefix))
/third_party/elfutils/src/
H A Dobjdump.c291 char new_prefix[prefix_len + fname_len + 2]; in handle_ar() local
298 char *cp = new_prefix; in handle_ar()
320 result |= handle_elf (subelf, new_prefix, arhdr->ar_name, in handle_ar()
323 result |= handle_ar (fd, subelf, new_prefix, arhdr->ar_name, in handle_ar()
328 new_prefix, arhdr->ar_name, new_suffix); in handle_ar()
H A Dsize.c344 char new_prefix[prefix_len + 1 + fname_len]; in handle_ar() local
345 char *cp = new_prefix; in handle_ar()
365 handle_elf (subelf, new_prefix, arhdr->ar_name); in handle_ar()
367 result |= handle_ar (fd, subelf, new_prefix, arhdr->ar_name); in handle_ar()
H A Dnm.c414 char new_prefix[prefix_len + fname_len + 2]; in handle_ar() local
421 char *cp = new_prefix; in handle_ar()
482 result |= handle_elf (fd, subelf, new_prefix, arhdr->ar_name, in handle_ar()
485 result |= handle_ar (fd, subelf, new_prefix, arhdr->ar_name, in handle_ar()
490 new_prefix, arhdr->ar_name, new_suffix); in handle_ar()
H A Dstrip.c2723 char new_prefix[prefix_len + 1 + fname_len]; in handle_ar() local
2724 char *cp = new_prefix; in handle_ar()
2745 result |= handle_elf (fd, subelf, new_prefix, arhdr->ar_name, 0, NULL); in handle_ar()
2747 result |= handle_ar (fd, subelf, new_prefix, arhdr->ar_name, NULL); in handle_ar()
H A Delflint.c250 char new_prefix[prefix_len + 1 + fname_len]; in process_file() local
252 char *cp = new_prefix; in process_file()
276 process_file (fd, subelf, new_prefix, new_suffix, in process_file()
/third_party/protobuf/src/google/protobuf/compiler/
H A Dimporter.cc319 // a virtual path and new_prefix is its corresponding disk path. Returns
321 // old_prefix with new_prefix and stores the result in *result. Examples:
337 const std::string& new_prefix, std::string* result) { in ApplyMapping()
348 result->assign(new_prefix); in ApplyMapping()
356 *result = new_prefix; in ApplyMapping()
378 result->assign(new_prefix); in ApplyMapping()
335 ApplyMapping(const std::string& filename, const std::string& old_prefix, const std::string& new_prefix, std::string* result) ApplyMapping() argument
/third_party/python/Lib/
H A Dipaddress.py929 def subnets(self, prefixlen_diff=1, new_prefix=None):
939 new_prefix is also set.
940 new_prefix: The desired new prefix length. This must be a
950 prefixlen_diff and new_prefix are both set or new_prefix
959 if new_prefix is not None:
960 if new_prefix < self._prefixlen:
963 raise ValueError('cannot set prefixlen_diff and new_prefix')
964 prefixlen_diff = new_prefix - self._prefixlen
982 def supernet(self, prefixlen_diff=1, new_prefix
[all...]
/third_party/python/Lib/test/
H A Dtest_ipaddress.py1415 prefixlen_diff=2, new_prefix=1)
1417 new_prefix=25)
1419 self.ipv4_network.supernet(new_prefix=22))
1422 prefixlen_diff=2, new_prefix=1)
1424 new_prefix=65)
1426 self.ipv6_network.supernet(new_prefix=62))
1428 prefixlen_diff=2, new_prefix=1)
1430 new_prefix=65)
1432 self.ipv6_scoped_network.supernet(new_prefix=62))
1490 sorted(self.ipv4_network.subnets(new_prefix
[all...]
H A Dtest_compileall.py508 new_prefix = os.path.join(self.directory, '__testcache__')
510 sys.pycache_prefix = new_prefix
513 'PYTHONPYCACHEPREFIX': new_prefix,
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/bloat/
H A Dbloat.py224 new_prefix = ['[ungrouped]']
235 new_prefix += [group]
237 parts = new_prefix + parts
/third_party/node/deps/v8/src/regexp/
H A Dregexp-compiler-tonode.cc688 icu::UnicodeString new_prefix(alt_atom->data().at(0)); in RationalizeConsecutiveAtoms()
689 if (!Equals(ignore_case, new_prefix, common_prefix)) break; in RationalizeConsecutiveAtoms()
691 unibrow::uchar new_prefix = alt_atom->data().at(0); in RationalizeConsecutiveAtoms() local
692 if (!Equals(ignore_case, canonicalize, new_prefix, common_prefix)) break; in RationalizeConsecutiveAtoms()
/third_party/python/Modules/_ctypes/
H A D_ctypes.c377 char *new_prefix; in _ctypes_alloc_format_string_with_shape() local
386 new_prefix = PyMem_Malloc(prefix_len); in _ctypes_alloc_format_string_with_shape()
387 if (new_prefix == NULL) { in _ctypes_alloc_format_string_with_shape()
391 new_prefix[0] = '\0'; in _ctypes_alloc_format_string_with_shape()
393 strcpy(new_prefix, prefix); in _ctypes_alloc_format_string_with_shape()
396 strcat(new_prefix, "("); in _ctypes_alloc_format_string_with_shape()
403 strcat(new_prefix, buf); in _ctypes_alloc_format_string_with_shape()
406 result = _ctypes_alloc_format_string(new_prefix, suffix); in _ctypes_alloc_format_string_with_shape()
407 PyMem_Free(new_prefix); in _ctypes_alloc_format_string_with_shape()

Completed in 31 milliseconds