Home
last modified time | relevance | path

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

/third_party/python/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_path.py47 self.data.__spec__.has_location = False
Dtest_util.py106 spec.has_location = True
113 spec.has_location = True
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/val/
Dvalidate_interfaces.cpp233 bool has_location = false; in GetLocationsForVariable() local
244 if (has_location && dec.params()[0] != location) { in GetLocationsForVariable()
248 has_location = true; in GetLocationsForVariable()
328 if (!has_location && !is_block) { in GetLocationsForVariable()
334 if (has_location) { in GetLocationsForVariable()
/third_party/skia/third_party/externals/spirv-tools/source/val/
Dvalidate_interfaces.cpp233 bool has_location = false; in GetLocationsForVariable() local
244 if (has_location && dec.params()[0] != location) { in GetLocationsForVariable()
248 has_location = true; in GetLocationsForVariable()
328 if (!has_location && !is_block) { in GetLocationsForVariable()
334 if (has_location) { in GetLocationsForVariable()
/third_party/spirv-tools/source/val/
Dvalidate_interfaces.cpp233 bool has_location = false; in GetLocationsForVariable() local
244 if (has_location && dec.params()[0] != location) { in GetLocationsForVariable()
248 has_location = true; in GetLocationsForVariable()
340 if (!has_location && !is_block) { in GetLocationsForVariable()
347 if (has_location) { in GetLocationsForVariable()
/third_party/python/Lib/importlib/
D_bootstrap.py387 self.has_location == other.has_location)
413 def has_location(self): member in ModuleSpec
416 @has_location.setter
417 def has_location(self, value): member in ModuleSpec
548 if spec.has_location:
591 if spec.has_location:
/third_party/skia/third_party/externals/tint/src/resolver/
Dresolver_validation.cc2124 auto has_location = false; in ValidateStructure() local
2150 has_location = true; in ValidateStructure()
2177 if (interpolate_attribute && !has_location) { in ValidateStructure()
/third_party/python/Doc/reference/
Dimport.rst665 "has_location" attributes are consulted.
/third_party/python/Doc/library/
Dimportlib.rst1458 .. attribute:: has_location
/third_party/python/Misc/
DHISTORY3085 - Issue #18864: Added a setter for ModuleSpec.has_location.