Home | History | Annotate | Download | only in net

Lines Matching full:feed

34  * <p>Given an InputStream representation of a feed, it returns a List of entries,
35 * where each list element represents a single entry (post) in the XML feed.
37 * <p>An example of an Atom feed can be found at:
51 /** Parse an Atom feed, returning a collection of Entry objects.
53 * @param in Atom feed, as a stream.
55 * @throws org.xmlpull.v1.XmlPullParserException on error parsing feed.
72 * Decode a feed attached to an XmlPullParser.
76 * @throws org.xmlpull.v1.XmlPullParserException on error parsing feed.
83 // Search for <feed> tags. These wrap the beginning/end of an Atom document.
87 // <feed xmlns="http://www.w3.org/2005/Atom">
89 // </feed>
90 parser.require(XmlPullParser.START_TAG, ns, "feed");
96 // Starts by looking for the <entry> tag. This tag repeates inside of <feed> for each
97 // article in the feed.
208 * Processes link tags in the feed.
261 * This class represents a single entry (post) in the XML feed.