Home
last modified time | relevance | path

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

/third_party/glib/glib/deprecated/
Dgcompletion.c114 gchar** new_prefix);
238 gchar** new_prefix) in completion_check_cache() argument
247 if (!new_prefix) in completion_check_cache()
251 *new_prefix = NULL; in completion_check_cache()
275 *new_prefix = g_new0 (gchar, len + plen + 1); in completion_check_cache()
276 strncpy (*new_prefix, cmp->prefix, len); in completion_check_cache()
277 strncpy (*new_prefix + len, postfix, plen); in completion_check_cache()
307 gchar **new_prefix) in g_completion_complete_utf8() argument
312 list = g_completion_complete (cmp, prefix, new_prefix); in g_completion_complete_utf8()
314 if (new_prefix && *new_prefix) in g_completion_complete_utf8()
[all …]
Dgcompletion.h70 gchar** new_prefix);
74 gchar** new_prefix);
/third_party/skia/third_party/externals/dawn/scripts/
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/protobuf/src/google/protobuf/compiler/
Dimporter.cc337 const std::string& new_prefix, std::string* result) { in ApplyMapping() argument
348 result->assign(new_prefix); in ApplyMapping()
356 *result = new_prefix; in ApplyMapping()
378 result->assign(new_prefix); in ApplyMapping()
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/bloat/
Dbloat.py224 new_prefix = ['[ungrouped]']
235 new_prefix += [group]
237 parts = new_prefix + parts
/third_party/python/Lib/
Dipaddress.py932 def subnets(self, prefixlen_diff=1, new_prefix=None): argument
962 if new_prefix is not None:
963 if new_prefix < self._prefixlen:
967 prefixlen_diff = new_prefix - self._prefixlen
985 def supernet(self, prefixlen_diff=1, new_prefix=None): argument
1009 if new_prefix is not None:
1010 if new_prefix > self._prefixlen:
1014 prefixlen_diff = self._prefixlen - new_prefix
/third_party/python/Lib/test/
Dtest_ipaddress.py1392 prefixlen_diff=2, new_prefix=1)
1394 new_prefix=25)
1396 self.ipv4_network.supernet(new_prefix=22))
1399 prefixlen_diff=2, new_prefix=1)
1401 new_prefix=65)
1403 self.ipv6_network.supernet(new_prefix=62))
1405 prefixlen_diff=2, new_prefix=1)
1407 new_prefix=65)
1409 self.ipv6_scoped_network.supernet(new_prefix=62))
1467 sorted(self.ipv4_network.subnets(new_prefix=27)))
[all …]
/third_party/python/Doc/library/
Dipaddress.rst594 .. method:: subnets(prefixlen_diff=1, new_prefix=None)
598 length should be increased by. *new_prefix* is the desired new
600 only one of *prefixlen_diff* and *new_prefix* must be set. Returns an
608 … >>> list(ip_network('192.0.2.0/24').subnets(new_prefix=26)) #doctest: +NORMALIZE_WHITESPACE
611 >>> list(ip_network('192.0.2.0/24').subnets(new_prefix=23))
616 >>> list(ip_network('192.0.2.0/24').subnets(new_prefix=25))
619 .. method:: supernet(prefixlen_diff=1, new_prefix=None)
623 should be decreased by. *new_prefix* is the desired new prefix of
625 of *prefixlen_diff* and *new_prefix* must be set. Returns a single
632 >>> ip_network('192.0.2.0/24').supernet(new_prefix=20)
[all …]
/third_party/python/Modules/_ctypes/
D_ctypes.c367 char *new_prefix; in _ctypes_alloc_format_string_with_shape() local
376 new_prefix = PyMem_Malloc(prefix_len); in _ctypes_alloc_format_string_with_shape()
377 if (new_prefix == NULL) { in _ctypes_alloc_format_string_with_shape()
381 new_prefix[0] = '\0'; in _ctypes_alloc_format_string_with_shape()
383 strcpy(new_prefix, prefix); in _ctypes_alloc_format_string_with_shape()
386 strcat(new_prefix, "("); in _ctypes_alloc_format_string_with_shape()
393 strcat(new_prefix, buf); in _ctypes_alloc_format_string_with_shape()
396 result = _ctypes_alloc_format_string(new_prefix, suffix); in _ctypes_alloc_format_string_with_shape()
397 PyMem_Free(new_prefix); in _ctypes_alloc_format_string_with_shape()