HomeSort by relevance Sort by last modified time
    Searched refs:field_dict (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/protobuf/python/google/protobuf/internal/
decoder.py 36 Decode(buffer, pos, end, message, field_dict)
43 field_dict: message._fields (avoids a hashtable lookup).
44 The decoder reads the field and stores it into field_dict, returning the new
67 key: The key to use when looking up the field within field_dict.
193 def DecodePackedField(buffer, pos, end, message, field_dict):
194 value = field_dict.get(key)
196 value = field_dict.setdefault(key, new_default(message))
212 def DecodeRepeatedField(buffer, pos, end, message, field_dict):
213 value = field_dict.get(key)
215 value = field_dict.setdefault(key, new_default(message)
    [all...]
python_message.py 812 field_dict = self._fields
827 pos = field_decoder(buffer, new_pos, end, self, field_dict)
    [all...]
  /external/protobuf/python/google/protobuf/internal/
decoder.py 36 Decode(buffer, pos, end, message, field_dict)
43 field_dict: message._fields (avoids a hashtable lookup).
44 The decoder reads the field and stores it into field_dict, returning the new
67 key: The key to use when looking up the field within field_dict.
186 def DecodePackedField(buffer, pos, end, message, field_dict):
187 value = field_dict.get(key)
189 value = field_dict.setdefault(key, new_default(message))
205 def DecodeRepeatedField(buffer, pos, end, message, field_dict):
206 value = field_dict.get(key)
208 value = field_dict.setdefault(key, new_default(message)
    [all...]
  /external/protobuf/python/google/protobuf/
reflection.py 838 field_dict = self._fields
848 pos = field_decoder(buffer, new_pos, end, self, field_dict)
    [all...]

Completed in 58 milliseconds