Home
last modified time | relevance | path

Searched refs:is_private (Results 1 – 12 of 12) sorted by relevance

/third_party/python/Lib/test/
Dtest_ipaddress.py2192 '192.168.1.1/17').is_private)
2193 self.assertEqual(False, ipaddress.ip_network('192.169.0.0').is_private)
2195 '10.255.255.255').is_private)
2196 self.assertEqual(False, ipaddress.ip_network('11.0.0.0').is_private)
2199 '172.31.255.255').is_private)
2200 self.assertEqual(False, ipaddress.ip_network('172.32.0.0').is_private)
2218 ipaddress.ip_network('100.64.0.0/10').is_private)
2222 ipaddress.ip_network('192.0.2.128/25').is_private)
2234 self.assertEqual(True, ipaddress.ip_address('192.168.1.1').is_private)
2235 self.assertEqual(False, ipaddress.ip_address('192.169.0.0').is_private)
[all …]
/third_party/python/Lib/
Dipaddress.py1082 def is_private(self): member in _BaseNetwork
1090 return (self.network_address.is_private and
1091 self.broadcast_address.is_private)
1102 return not self.is_private
1328 def is_private(self): member in IPv4Address
1341 return self not in self._constants._public_network and not self.is_private
1532 not self.is_private)
2001 def is_private(self): member in IPv6Address
2012 return ipv4_mapped.is_private
2024 return not self.is_private
/third_party/flutter/skia/src/sksl/
DSkSLCPPCodeGenerator.cpp168 static bool is_private(const Variable& var) { in is_private() function
245 if (is_private(var)) { in writeVarInitializer()
587 if (is_private(*decl.fVar)) { in writePrivateVars()
627 if (is_private(*decl.fVar) && decl.fValue) { in writePrivateVarValues()
1121 if (is_private(var)) { in writeGetKey()
/third_party/glib/glib/
Dgbookmarkfile.c184 guint is_private : 1; member
343 retval->is_private = FALSE; in bookmark_metadata_new()
483 if (metadata->is_private) in bookmark_metadata_dump()
1266 parse_data->current_item->metadata->is_private = TRUE; in start_element_raw_cb()
2432 gboolean is_private) in g_bookmark_file_set_is_private() argument
2449 item->metadata->is_private = (is_private == TRUE); in g_bookmark_file_set_is_private()
2499 return item->metadata->is_private; in g_bookmark_file_get_is_private()
Dgbookmarkfile.h201 gboolean is_private);
/third_party/python/Doc/library/
Dipaddress.rst189 .. attribute:: is_private
303 .. attribute:: is_private
317 :attr:`~IPv4Address.is_private` to test if this address is in the
502 .. attribute:: is_private
714 .. attribute:: is_private
/third_party/gstreamer/gstplugins_bad/gst/mpegtsdemux/
Dtsdemux.c1350 is_private = FALSE; in create_pad_for_stream() local
1478 is_private = TRUE; in create_pad_for_stream()
1499 is_private = TRUE; in create_pad_for_stream()
1683 is_private = TRUE; in create_pad_for_stream()
1947 } else if (is_private) { in create_pad_for_stream()
/third_party/python/Misc/NEWS.d/
D3.10.0b2.rst197 :mod:`ipaddress.IPv6Address.is_private` check is deferred to the mapped IPv4
D3.5.0a1.rst3490 .is_private or .is_multicast.
/third_party/jerryscript/jerry-core/parser/js/
Djs-parser-statm.c377 bool is_private) /**< is private (bound to a statement) context */ in parser_push_block_context() argument
407 if (is_private) in parser_push_block_context()
/third_party/quickjs/
Dquickjs.c20613 BOOL *pident_has_escape, int c, BOOL is_private) in parse_ident() argument
20624 if (is_private) in parse_ident()
22302 int is_private = 0; in js_parse_property_name() local
22403 is_private = PROP_TYPE_PRIVATE; in js_parse_property_name()
22415 return prop_type | is_private; in js_parse_property_name()
22942 BOOL is_static, is_private; in js_parse_class() local
23049 is_private = prop_type & PROP_TYPE_PRIVATE; in js_parse_class()
23063 if (is_private) { in js_parse_class()
23089 if (is_private) { in js_parse_class()
23132 if (is_private) { in js_parse_class()
[all …]
/third_party/python/Misc/
DHISTORY18148 ``doctest.is_private()`` function, both deprecated in 2.4, were removed.
20010 deprecated: the Tester class, the module is_private() function, and the