/third_party/python/Lib/test/ |
H A D | test_ipaddress.py | 2215 '192.168.1.1/17').is_private) 2216 self.assertEqual(False, ipaddress.ip_network('192.169.0.0').is_private) 2218 '10.255.255.255').is_private) 2219 self.assertEqual(False, ipaddress.ip_network('11.0.0.0').is_private) 2222 '172.31.255.255').is_private) 2223 self.assertEqual(False, ipaddress.ip_network('172.32.0.0').is_private) 2241 ipaddress.ip_network('100.64.0.0/10').is_private) 2245 ipaddress.ip_network('192.0.2.128/25').is_private) 2257 self.assertEqual(True, ipaddress.ip_address('192.168.1.1').is_private) 2258 self.assertEqual(False, ipaddress.ip_address('192.169.0.0').is_private) [all...] |
/third_party/node/deps/v8/src/objects/ |
H A D | name-inl.h | 26 BIT_FIELD_ACCESSORS(Symbol, flags, is_private, Symbol::IsPrivateBit) 36 DCHECK_IMPLIES(value, is_private()); in is_private_brand() 48 DCHECK_IMPLIES(value, is_private()); in is_private_name() 139 return this->IsSymbol(cage_base) && Symbol::cast(*this).is_private(); in DEF_GETTER()
|
H A D | name.h | 176 // [is_private]: Whether this is a private symbol. Private symbols can only 178 DECL_BOOLEAN_ACCESSORS(is_private) 200 // This also sets the is_private bit. 208 // This also sets the is_private bit.
|
H A D | objects-inl.h | 138 return IsSymbol() && !Symbol::cast(*this).is_private(); in IsPublicSymbol() 141 return IsSymbol() && Symbol::cast(*this).is_private(); in IsPrivateSymbol() 503 if (Symbol::cast(*this).is_private()) return true; in FilterKey()
|
H A D | literal-objects.cc | 684 DCHECK_IMPLIES(property->is_computed_name(), !property->is_private()); in BuildClassBoilerplate()
|
H A D | keys.cc | 133 if (Symbol::cast(*key).is_private()) return ExceptionStatus::kSuccess; in AddKey()
|
/third_party/python/Lib/ |
H A D | ipaddress.py | 1079 def is_private(self): member in _BaseNetwork 1100 return not self.is_private 1335 def is_private(self): member in IPv4Address 1348 return self not in self._constants._public_network and not self.is_private 1539 not self.is_private) 1998 Use is_private to test if this address is in the space of unique local 2009 def is_private(self): member in IPv6Address 2020 return ipv4_mapped.is_private 2032 return not self.is_private 2254 Use is_private t [all...] |
/third_party/node/deps/openssl/openssl/crypto/rsa/ |
H A D | rsa_backend.c | 69 int is_private = 0; in ossl_rsa_fromdata() local 84 is_private = (d != NULL); in ossl_rsa_fromdata() 90 if (is_private) { in ossl_rsa_fromdata()
|
/third_party/openssl/crypto/rsa/ |
H A D | rsa_backend.c | 69 int is_private = 0; in ossl_rsa_fromdata() local 84 is_private = (d != NULL); in ossl_rsa_fromdata() 90 if (is_private) { in ossl_rsa_fromdata()
|
/third_party/node/deps/v8/src/runtime/ |
H A D | runtime-symbol.cc | 64 return isolate->heap()->ToBoolean(symbol.is_private()); in RUNTIME_FUNCTION()
|
/third_party/rust/crates/syn/json/src/ |
H A D | lib.rs | 88 skip_serializing_if = "is_private", 195 fn is_private(data: &Data) -> bool { in is_private() functions
|
/third_party/node/deps/v8/src/ast/ |
H A D | ast.h | 2376 bool is_private() const { return is_private_; } in is_private() function in v8::internal::final 2380 DCHECK(!is_private()); in set_computed_name_var() 2386 DCHECK(!is_private()); in computed_name_var() 2391 DCHECK(is_private()); in set_private_name_var() 2395 DCHECK(is_private()); in private_name_var() 2404 bool is_static, bool is_computed_name, bool is_private); 3256 bool is_static, bool is_computed_name, bool is_private) { in NewClassLiteralProperty() 3258 is_computed_name, is_private); in NewClassLiteralProperty() 3254 NewClassLiteralProperty( Expression* key, Expression* value, ClassLiteralProperty::Kind kind, bool is_static, bool is_computed_name, bool is_private) NewClassLiteralProperty() argument
|
H A D | ast.cc | 310 bool is_private) in ClassLiteralProperty() 314 is_private_(is_private), in ClassLiteralProperty() 307 ClassLiteralProperty(Expression* key, Expression* value, Kind kind, bool is_static, bool is_computed_name, bool is_private) ClassLiteralProperty() argument
|
H A D | prettyprinter.cc | 1139 property->is_private() ? " - PRIVATE" : " - PUBLIC", prop_kind); in PrintClassProperty()
|
/third_party/rust/crates/rustix/src/net/ |
H A D | ip.rs | 620 /// assert_eq!(Ipv4Addr::new(10, 0, 0, 1).is_private(), true); 621 /// assert_eq!(Ipv4Addr::new(10, 10, 10, 10).is_private(), true); 622 /// assert_eq!(Ipv4Addr::new(172, 16, 10, 10).is_private(), true); 623 /// assert_eq!(Ipv4Addr::new(172, 29, 45, 14).is_private(), true); 624 /// assert_eq!(Ipv4Addr::new(172, 32, 0, 2).is_private(), false); 625 /// assert_eq!(Ipv4Addr::new(192, 168, 0, 2).is_private(), true); 626 /// assert_eq!(Ipv4Addr::new(192, 169, 0, 2).is_private(), false); 635 pub const fn is_private(&self) -> bool { 680 /// - Addresses reserved for private use ([`is_private`](Ipv4Addr::is_private)) [all...] |
/third_party/node/deps/v8/src/parsing/ |
H A D | parser-base.h | 645 is_private(false), in ParsePropertyInfo() 686 bool is_private; member 2252 prop_info->is_private = true; in ParseProperty() 2399 DCHECK_IMPLIES(prop_info->is_computed_name, !prop_info->is_private); in ParseClassPropertyDefinition() 2412 prop_info->is_private); in ParseClassPropertyDefinition() 2449 prop_info->is_private); in ParseClassPropertyDefinition() 2488 prop_info->is_computed_name, prop_info->is_private); in ParseClassPropertyDefinition() 4761 if (V8_UNLIKELY(prop_info.is_private)) { in ParseClassLiteral() 4775 DCHECK(!prop_info.is_private); in ParseClassLiteral()
|
H A D | parser.h | 367 bool is_computed_name, bool is_private,
|
H A D | preparser.h | 553 bool is_private) { in NewClassLiteralProperty() 548 NewClassLiteralProperty(const PreParserExpression& key, const PreParserExpression& value, ClassLiteralProperty::Kind kind, bool is_static, bool is_computed_name, bool is_private) NewClassLiteralProperty() argument
|
/third_party/node/deps/v8/src/interpreter/ |
H A D | bytecode-generator.cc | 2588 DCHECK(property->is_private()); in BuildClassLiteral() 2680 DCHECK(!property->is_private()); in BuildClassLiteral() 2689 DCHECK(!property->is_private()); in BuildClassLiteral() 2821 DCHECK_IMPLIES(property->is_private(), in BuildClassProperty() 2827 !property->is_private(); in BuildClassProperty() 2833 DCHECK(!property->is_private()); in BuildClassProperty() 2840 } else if (property->is_private()) { in BuildClassProperty()
|
/third_party/jerryscript/jerry-core/parser/js/ |
H A D | js-parser-statm.c | 377 bool is_private) /**< is private (bound to a statement) context */ in parser_push_block_context() 407 if (is_private) in parser_push_block_context() 376 parser_push_block_context(parser_context_t *context_p, bool is_private) parser_push_block_context() argument
|
/third_party/node/deps/v8/src/diagnostics/ |
H A D | objects-printer.cc | 730 os << "\n - private: " << is_private(); in SymbolPrint()
|
/third_party/node/deps/v8/src/profiler/ |
H A D | heap-snapshot-generator.cc | 835 if (Symbol::cast(object).is_private()) in AddEntry()
|
/third_party/libabigail/src/ |
H A D | abg-comparison.cc | 2356 bool is_private = false; in is_suppressed() local 2357 return is_suppressed(is_private); in is_suppressed()
|
/third_party/node/deps/v8/src/heap/ |
H A D | factory.cc | 1122 DCHECK(!symbol.is_private()); in NewSymbolInternal()
|
/third_party/node/deps/v8/src/api/ |
H A D | api.cc | 1017 return !i::Symbol::cast(heap_object).is_private(); in IsValue() 3897 obj->IsSymbol() && i::Handle<i::Symbol>::cast(obj)->is_private(), in CheckCast()
|