Home
last modified time | relevance | path

Searched refs:validation_attempted (Results 1 – 10 of 10) sorted by relevance

/dports/textproc/py-xmlschema/xmlschema-1.8.2/xmlschema/validators/
H A Delements.py391 def validation_attempted(self) -> str: member in XsdElement
394 elif self.type.validation_attempted == 'partial':
396 elif any(c.validation_attempted == 'partial' for c in self.identities.values()):
1464 def validation_attempted(self) -> str: member in XsdAlternative
1470 return self.type.validation_attempted
H A Dxsdbase.py87 def validation_attempted(self) -> str: member in XsdValidator
493 def validation_attempted(self) -> str: member in XsdComponent
H A Dglobal_maps.py390 def validation_attempted(self) -> str: member in XsdGlobals
393 elif any(schema.validation_attempted == 'partial' for schema in self.iter_schemas()):
H A Dcomplex_types.py497 def validation_attempted(self) -> str: member in XsdComplexType
498 return 'full' if self.built else self.content.validation_attempted
H A Dschemas.py972 any(isinstance(comp, tuple) or comp.validation_attempted == 'partial'
1018 def validation_attempted(self) -> str: member in XMLSchemaBase
1021 elif any(isinstance(comp, tuple) or comp.validation_attempted == 'partial'
H A Dgroups.py554 def validation_attempted(self) -> str: member in XsdGroup
557 elif any(item.validation_attempted == 'partial' for item in self):
H A Dattributes.py184 def validation_attempted(self) -> str: member in XsdAttribute
/dports/textproc/py-xmlschema/xmlschema-1.8.2/doc/
H A Dapi.rst96 .. autoattribute:: validation_attempted
/dports/textproc/py-xmlschema/xmlschema-1.8.2/tests/validators/
H A Dtest_attributes.py172 self.assertEqual(xsd_attribute.validation_attempted, 'full')
H A Dtest_xsdbase.py357 self.assertEqual(schema.notations['content'].validation_attempted, 'full')