Searched refs:pyObject (Results 1 – 3 of 3) sorted by relevance
/external/python/pyasn1/pyasn1/codec/native/ |
D | decoder.py | 21 def __call__(self, pyObject, asn1Spec, decodeFun=None, **options): argument 22 return asn1Spec.clone(pyObject) 26 def __call__(self, pyObject, asn1Spec, decodeFun=None, **options): argument 27 return asn1Spec.clone(univ.BitString.fromBinaryString(pyObject)) 31 def __call__(self, pyObject, asn1Spec, decodeFun=None, **options): argument 37 if field in pyObject: 38 … asn1Value[field] = decodeFun(pyObject[field], componentsTypes[field].asn1Object, **options) 44 def __call__(self, pyObject, asn1Spec, decodeFun=None, **options): argument 47 for pyValue in pyObject: 54 def __call__(self, pyObject, asn1Spec, decodeFun=None, **options): argument [all …]
|
D | encoder.py | 211 pyObject = concreteEncoder.encode(value, self, **options) 214 LOG('encoder %s produced: %s' % (type(concreteEncoder).__name__, repr(pyObject))) 217 return pyObject
|
/external/python/pyasn1/docs/source/pyasn1/codec/native/ |
D | contents.rst | 7 .. autofunction:: pyasn1.codec.native.decoder.decode(pyObject, asn1Spec)
|