Searched refs:_fields (Results 1 – 5 of 5) sorted by relevance
/external/protobuf/python/google/protobuf/ |
D | reflection.py | 365 self._fields = {} 381 self._fields[field] = copy 385 self._fields[field] = copy 387 self._fields[field] = field_value 463 field_value = self._fields.get(field) 474 field_value = self._fields.setdefault(field, field_value) 506 return self._fields.get(field, default_value) 511 self._fields[field] = new_value 542 field_value = self._fields.get(field) 554 field_value = self._fields.setdefault(field, field_value) [all …]
|
/external/webkit/Source/WebCore/bridge/c/ |
D | c_class.cpp | 55 deleteAllValues(_fields); in ~CClass() 56 _fields.clear(); in ~CClass() 103 Field* aField = _fields.get(identifier.ustring().impl()); in fieldNamed() 114 _fields.set(identifier.ustring().impl(), aField); in fieldNamed()
|
D | c_class.h | 52 mutable FieldMap _fields; variable
|
/external/webkit/Source/WebCore/bridge/objc/ |
D | objc_class.h | 53 RetainPtr<CFMutableDictionaryRef> _fields; variable
|
D | objc_class.mm | 51 …, _fields(AdoptCF, CFDictionaryCreateMutable(NULL, 0, &kCFTypeDictionaryKeyCallBacks, &FieldDictio… 158 Field* aField = (Field*)CFDictionaryGetValue(_fields.get(), fieldName.get()); 185 CFDictionaryAddValue(_fields.get(), fieldName.get(), aField); 225 CFDictionaryAddValue(_fields.get(), fieldName.get(), aField);
|