Home
last modified time | relevance | path

Searched refs:ModelParticleType (Results 1 – 7 of 7) sorted by relevance

/dports/textproc/py-xmlschema/xmlschema-1.8.2/xmlschema/validators/
H A Dmodels.py17 from ..aliases import ModelGroupType, ModelParticleType, SchemaElementType
20 AdvanceYieldedType = Tuple[ModelParticleType, int, List[SchemaElementType]]
26 def distinguishable_paths(path1: List[ModelParticleType], path2: List[ModelParticleType]) -> bool: argument
33 e: ModelParticleType
105 _groups: List[Tuple[ModelGroupType, Iterator[ModelParticleType], bool]]
111 self.occurs = Counter[Union[ModelParticleType, Tuple[ModelParticleType]]]()
151 items: Union[ModelGroupType, Iterator[ModelParticleType]]
177 def iter_group(self) -> Iterator[ModelParticleType]:
193 def stop_item(item: ModelParticleType) -> bool: argument
H A Dgroups.py24 IterEncodeType, ModelParticleType, SchemaElementType, ComponentClassType
53 class XsdGroup(XsdComponent, MutableSequence[ModelParticleType],
108 self._group: List[ModelParticleType] = []
128 def __getitem__(self, i: int) -> ModelParticleType: ...
134 -> Union[ModelParticleType, MutableSequence[ModelParticleType]]:
146 def insert(self, i: int, item: ModelParticleType) -> None: argument
285 def iter_model(self, depth: int = 0) -> Iterator[ModelParticleType]:
348 def overall_min_occurs(self, item: ModelParticleType) -> int: argument
500 particle: ModelParticleType, argument
791 current_path: List[ModelParticleType] = [self]
[all …]
H A Dparticles.py13 from ..aliases import ElementType, ModelParticleType
101 def has_occurs_restriction(self, other: Union[ModelParticleType, 'OccursCalculator']) -> bool: argument
H A Dwildcards.py20 ModelGroupType, ModelParticleType, AtomicValueType, IterDecodeType, IterEncodeType, \
29 OccursCounterType = Counter[Union[ModelParticleType, Tuple[ModelParticleType]]]
194 def is_restriction(self, other: Union[ModelParticleType, 'XsdAnyAttribute'], argument
393 precedences: Dict[ModelGroupType, List[ModelParticleType]]
535 def is_overlap(self, other: ModelParticleType) -> bool: argument
752 def add_precedence(self, other: ModelParticleType, group: ModelGroupType) -> None: argument
H A Dexceptions.py13 from ..aliases import ElementType, NamespacesType, SchemaElementType, ModelParticleType
305 particle: ModelParticleType, argument
H A Delements.py26 ModelParticleType, ComponentClassType, AtomicValueType, DecodeType, \
1060 def is_restriction(self, other: ModelParticleType, check_occurs: bool = True) -> bool: argument
1061 e: ModelParticleType
/dports/textproc/py-xmlschema/xmlschema-1.8.2/xmlschema/
H A Daliases.py69 ModelParticleType = Union[XsdElement, XsdAnyElement, XsdGroup] variable