Lines Matching refs:content
147 * The "content" URL for the photo (currently 1280px, or a video). The
155 * The MIME type of the content URL.
201 public void setPropertyFromXml(String uri, String localName, Attributes attrs, String content) {
208 id = Long.parseLong(content);
213 albumId = Long.parseLong(content);
218 dateTaken = Long.parseLong(content);
223 commentCount = Integer.parseInt(content);
228 width = Integer.parseInt(content);
233 height = Integer.parseInt(content);
238 rotation = Integer.parseInt(content);
243 size = Integer.parseInt(content);
248 latitude = Double.parseDouble(content);
250 longitude = Double.parseDouble(content);
258 title = content;
263 summary = content;
268 datePublished = GDataParser.parseAtomTimestamp(content);
273 dateUpdated = GDataParser.parseAtomTimestamp(content);
290 dateEdited = GDataParser.parseAtomTimestamp(content);
303 } else if (localName.equals("content")) {
313 int spaceIndex = content.indexOf(' ');
315 latitude = Double.parseDouble(content.substring(0, spaceIndex));
316 longitude = Double.parseDouble(content.substring(spaceIndex + 1));