Home
last modified time | relevance | path

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

/external/python/pyasn1/pyasn1/type/
Dconstraint.py86 def isSuperTypeOf(self, otherConstraint): argument
88 return (otherConstraint is self or
90 otherConstraint == self or
91 self in otherConstraint.getValueMap())
93 def isSubTypeOf(self, otherConstraint): argument
94 return (otherConstraint is self or
96 otherConstraint == self or
97 otherConstraint in self._valueMap)