Home
last modified time | relevance | path

Searched refs:has_location (Results 1 – 13 of 13) 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.py106 spec.has_location = True
113 spec.has_location = True
/external/protobuf/php/src/Google/Protobuf/Internal/
DSourceCodeInfo.php67 private $has_location = false; variable in Google\\Protobuf\\Internal\\SourceCodeInfo
226 $this->has_location = true;
233 return $this->has_location;
/external/deqp-deps/SPIRV-Tools/source/val/
Dvalidate_interfaces.cpp225 bool has_location = false; in GetLocationsForVariable() local
236 if (has_location && dec.params()[0] != location) { in GetLocationsForVariable()
240 has_location = true; in GetLocationsForVariable()
320 if (!has_location && !is_block) { in GetLocationsForVariable()
326 if (has_location) { in GetLocationsForVariable()
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/val/
Dvalidate_interfaces.cpp225 bool has_location = false; in GetLocationsForVariable() local
236 if (has_location && dec.params()[0] != location) { in GetLocationsForVariable()
240 has_location = true; in GetLocationsForVariable()
320 if (!has_location && !is_block) { in GetLocationsForVariable()
326 if (has_location) { in GetLocationsForVariable()
/external/swiftshader/third_party/SPIRV-Tools/source/val/
Dvalidate_interfaces.cpp225 bool has_location = false; in GetLocationsForVariable() local
236 if (has_location && dec.params()[0] != location) { in GetLocationsForVariable()
240 has_location = true; in GetLocationsForVariable()
320 if (!has_location && !is_block) { in GetLocationsForVariable()
326 if (has_location) { in GetLocationsForVariable()
/external/python/cpython3/Lib/importlib/
D_bootstrap.py381 self.has_location == other.has_location)
407 def has_location(self): member in ModuleSpec
410 @has_location.setter
411 def has_location(self, value): member in ModuleSpec
542 if spec.has_location:
585 if spec.has_location:
Dresources.py81 if package.__spec__.origin is None or not package.__spec__.has_location:
213 if namespace or not package.__spec__.has_location:
/external/grpc-grpc/examples/cpp/route_guide/
Droute_guide_client.cc197 if (!feature->has_location()) { in GetOneFeature()
/external/llvm-project/clang-tools-extra/clangd/index/remote/marshalling/
DMarshalling.cpp183 if (!Message.has_location()) in fromProtobuf()
/external/python/cpython3/Doc/reference/
Dimport.rst658 "has_location" attributes are consulted.
/external/python/cpython3/Doc/library/
Dimportlib.rst1386 .. attribute:: has_location
/external/python/cpython3/Misc/
DHISTORY3085 - Issue #18864: Added a setter for ModuleSpec.has_location.