Home
last modified time | relevance | path

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

/external/python/pyasn1/pyasn1/type/
Dconstraint.py85 def isSuperTypeOf(self, otherConstraint): argument
87 return (otherConstraint is self or
89 otherConstraint == self or
90 self in otherConstraint.getValueMap())
92 def isSubTypeOf(self, otherConstraint): argument
93 return (otherConstraint is self or
95 otherConstraint == self or
96 otherConstraint in self._valueMap)