Home
last modified time | relevance | path

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

/external/python/cpython2/Tools/unicode/
Dgencodec.py155 for mapkey, mapvalue in mappings:
157 if isinstance(mapkey, tuple):
158 (mapkey, mapcomment) = mapkey
161 if mapkey is None:
164 mapkey == mapvalue and
165 mapkey < 256):
169 key = hexrepr(mapkey, key_precision)
208 for mapkey, mapvalue in mappings:
210 if isinstance(mapkey, tuple):
211 (mapkey, mapcomment) = mapkey
[all …]
/external/python/cpython3/Tools/unicode/
Dgencodec.py158 for mapkey, mapvalue in mappings:
160 if isinstance(mapkey, tuple):
161 (mapkey, mapcomment) = mapkey
164 if mapkey is None:
167 mapkey == mapvalue and
168 mapkey < 256):
172 key = hexrepr(mapkey, key_precision)
210 for mapkey, mapvalue in mappings:
212 if isinstance(mapkey, tuple):
213 (mapkey, mapcomment) = mapkey
[all …]
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/
DMapKeyProcessingStep.java74 MapKey mapkey = element.getAnnotation(MapKey.class); in process() local
75 if (mapkey.unwrapValue()) { in process()