Home
last modified time | relevance | path

Searched refs:has_location (Results 1 – 8 of 8) sorted by relevance

/external/python/cpython3/Lib/test/test_importlib/
Dtest_spec.py86 self.assertFalse(spec.has_location)
97 self.assertFalse(spec.has_location)
109 self.assertFalse(spec.has_location)
121 self.assertFalse(spec.has_location)
126 self.assertFalse(spec.has_location)
127 spec.has_location = True
128 self.assertTrue(spec.has_location)
135 has_location=False,
146 has_location=True,
157 has_location=False,
[all …]
Dtest_util.py105 spec.has_location = True
112 spec.has_location = True
/external/python/cpython3/Lib/importlib/
D_bootstrap.py399 self.has_location == other.has_location)
425 def has_location(self): member in ModuleSpec
428 @has_location.setter
429 def has_location(self, value): member in ModuleSpec
560 if spec.has_location:
603 if spec.has_location:
Dresources.py81 if package.__spec__.origin is None or not package.__spec__.has_location:
255 elif package.__spec__.origin is None or not package.__spec__.has_location:
/external/grpc-grpc/examples/cpp/route_guide/
Droute_guide_client.cc197 if (!feature->has_location()) { in GetOneFeature()
/external/python/cpython3/Doc/reference/
Dimport.rst657 "has_location" attributes are consulted.
/external/python/cpython3/Doc/library/
Dimportlib.rst1343 .. attribute:: has_location
/external/python/cpython3/Misc/
DHISTORY3085 - Issue #18864: Added a setter for ModuleSpec.has_location.