Lines Matching refs:property
183 for (Property property : mProperties) { in getPropertyList()
184 if (property.column != -1 && c == null) { in getPropertyList()
201 switch (property.code) { in getPropertyList()
204 list.append(id, property.code, property.type, 0); in getPropertyList()
209 list.append(id, property.code, object.getName()); in getPropertyList()
214 list.append(id, property.code, in getPropertyList()
218 list.append(id, property.code, property.type, object.getStorageId()); in getPropertyList()
221 list.append(id, property.code, property.type, object.getFormat()); in getPropertyList()
224 list.append(id, property.code, property.type, object.getSize()); in getPropertyList()
227 list.append(id, property.code, property.type, in getPropertyList()
235 list.append(id, property.code, property.type, puid); in getPropertyList()
241 year = c.getInt(property.column); in getPropertyList()
243 list.append(id, property.code, dateTime); in getPropertyList()
248 track = c.getInt(property.column); in getPropertyList()
249 list.append(id, property.code, MtpConstants.TYPE_UINT16, in getPropertyList()
256 list.append(id, property.code, MtpConstants.TYPE_UINT32, 0); in getPropertyList()
261 list.append(id, property.code, MtpConstants.TYPE_UINT16, 0); in getPropertyList()
264 switch(property.type) { in getPropertyList()
266 list.append(id, property.code, property.type, 0); in getPropertyList()
271 value = c.getString(property.column); in getPropertyList()
272 list.append(id, property.code, value); in getPropertyList()
277 longValue = c.getLong(property.column); in getPropertyList()
278 list.append(id, property.code, property.type, longValue); in getPropertyList()