/external/chromium_org/chrome/utility/ |
web_resource_unpacker.h | 6 // to unpack data retrieved from a web resource feed. Right now, it 10 // just parsing a JSON feed.
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_rss/ |
feedValidate.xml | 3 <project name="Validate a Feed" default="validateFeed" basedir="../"> 22 <target name="validateFeed" description="verify if the feed is valid with respect to the schema">
|
feedManipulation.xml | 3 <project name="Create Feed, Add Entry, Update Entry, Read Entry" default="doAll"> 27 <!-- 2. Create feed (overwrite existing) --> 38 <!-- 3. Add an entry (and create the feed if it doesn't already exist) --> 82 <!-- on the feed itself, display modified date --> 86 xpath="/*[name() = 'feed']/*[name() = 'updated']/text()"
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/util/rss/ |
messages.properties | 11 RSSFeedCommon.FileError=Error: no output file specified for feed, eg., ./feed.xml\! 16 RSSFeedCommon.FeedURLError=Error: no feedURL specified, eg., http://server/path/to/feed.xml\! 17 RSSFeedCommon.RSSFeedFile=RSS Feed file 54 RSSFeedPublisherTask.ErrorInvalidFile=Error: invalid feed file specified 64 RSSFeedPublisherTask.ErrorNothingToDo=Error\! Must specify SCP and/or CVS options to publish a feed file. Nothing to do\! 68 RSSFeedWatcherTask.ErrorNoWatchActions=Error\! Must specify for which feed changes to watch and what actions as response. Nothing to do\! 72 RSSFeedWatcherTask.ToTheLatestVersion=to latest version of feed in
|
/external/markdown/docs/extensions/ |
RSS.txt | 28 * **CREATOR** : The Feed creator's name. 29 * **TITLE** : The title for the feed.
|
/frameworks/base/docs/html/develop/ |
index.jd | 105 <!-- news and feature feed --> 106 <div class="feed col-8" style="margin-left:0"> 107 <ul class="feed-nav"> 111 <div class="feed-container"> 112 <div class="feed-frame"> 116 <div class="feed-image" style="background:url('//2.bp.blogspot.com/-HfoO6KNFBKA/UeiyRoELb7I/AAAAAAAAAFs/bHR-5viktU4/s1000/icons.png') no-repeat 0 0;background-size:500px;background-position:center center;"></div> 121 <div class="feed-image" style="background:url('//1.bp.blogspot.com/-k8DZYu0daT4/UdRt1AzstvI/AAAAAAAAAFM/CvEkb2yh-i0/s965/beautifulapps_4.png') no-repeat 0 0"></div> 126 <div class="feed-image" style="background:url('//3.bp.blogspot.com/-k33rf398Lqw/UlRUMQQRUNI/AAAAAAAAClM/pSwz2YgQpmY/s1600/gps-play_games_logo.png') no-repeat 0 0;background-size:130px;background-position:8px -4px;"></div> 131 <div class="feed-image" style="background:url('//3.bp.blogspot.com/-_8WvpdTVGsE/UkxxxrVoNNI/AAAAAAAACj8/FrQyA-BO11c/s1600/gp-referral-ga.png') no-repeat 0 0;background-size:180px"></div> 157 </div> <!-- /news and feature feed -- [all...] |
/frameworks/base/docs/html/training/basics/network-ops/ |
xml.jd | 20 <li><a href="#analyze">Analyze the Feed</a></li> 22 <li><a href="#read">Read the Feed</a></li> 47 often provide an XML feed so that external programs can keep abreast of content 70 <h2 id="analyze">Analyze the Feed</h2> 72 <p>The first step in parsing a feed is to decide which fields you're interested in. 75 <p>Here is an excerpt from the feed that's being parsed in the sample app. Each 77 feed as an <code>entry</code> tag that contains several nested tags:</p> 80 <feed xmlns="http://www.w3.org/2005/Atom" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" ..."> 108 </feed></pre> 143 <h2 id="read">Read the Feed</h2 [all...] |
/frameworks/base/samples/training/network-usage/res/xml/ |
preferences.xml | 21 android:title="Download Feed" 22 android:summary="Network connectivity required to download the feed."
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_htmllib.py | 35 parser.feed( 50 parser.feed(
|
test_xmllib.py | 28 parser.feed(c) 36 h.feed(nsdoc)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_htmllib.py | 35 parser.feed( 50 parser.feed(
|
test_xmllib.py | 28 parser.feed(c) 36 h.feed(nsdoc)
|
/cts/tests/tests/sax/src/android/sax/cts/ |
ElementTest.java | 40 private static final String FEED = "feed"; 41 private static final String XMLFILE = "<feed xmlns='http://www.w3.org/2005/Atom'>" 46 + "<name><id>brett</id></name></feed>"; 72 RootElement root = new RootElement(ATOM_NAMESPACE, FEED);
|
/external/chromium_org/chrome/browser/google_apis/ |
gdata_wapi_parser_unittest.cc | 22 // Test document feed parsing. 29 scoped_ptr<ResourceList> feed(ResourceList::ExtractAndParse(*document)); 30 ASSERT_TRUE(feed.get()); 36 EXPECT_EQ(1, feed->start_index()); 37 EXPECT_EQ(1000, feed->items_per_page()); 38 EXPECT_EQ(update_time, feed->updated_time()); 41 ASSERT_EQ(1U, feed->authors().size()); 42 EXPECT_EQ("tester", feed->authors()[0]->name()); 43 EXPECT_EQ("tester@testing.com", feed->authors()[0]->email()); 46 ASSERT_EQ(6U, feed->links().size()) [all...] |
gdata_contacts_requests.h | 16 // This class fetches a JSON feed containing a user's contact groups. 32 // If non-empty, URL of the feed to fetch. 40 // This class fetches a JSON feed containing a user's contacts. 58 // If non-empty, URL of the feed to fetch.
|
/development/samples/training/network-usage/src/com/example/android/networkusage/ |
StackOverflowXmlParser.java | 29 * Given an InputStream representation of a feed, it returns a List of entries, 30 * where each list element represents a single entry (post) in the XML feed. 52 parser.require(XmlPullParser.START_TAG, ns, "feed"); 68 // This class represents a single entry (post) in the XML feed. 108 // Processes title tags in the feed. 116 // Processes link tags in the feed. 132 // Processes summary tags in the feed.
|
/frameworks/base/samples/training/network-usage/src/com/example/android/networkusage/ |
StackOverflowXmlParser.java | 29 * Given an InputStream representation of a feed, it returns a List of entries, 30 * where each list element represents a single entry (post) in the XML feed. 52 parser.require(XmlPullParser.START_TAG, ns, "feed"); 68 // This class represents a single entry (post) in the XML feed. 108 // Processes title tags in the feed. 116 // Processes link tags in the feed. 132 // Processes summary tags in the feed.
|
/external/chromium/chrome/common/extensions/docs/examples/extensions/news/javascript/ |
util.js | 13 * Default feed news URL.
|
/external/chromium/chrome/common/extensions/docs/examples/extensions/news/views/ |
feed.html | 18 <link rel = "stylesheet" href = "/css/feed.css"/> 62 * Checks language in image url retrieved from feed and sets style of 119 <script src = "/javascript/feed.js"></script> 140 <div id = "feed">
|
/external/chromium_org/chrome/browser/ui/webui/options/ |
options_browsertest.h | 13 // This is a helper class used by options_browsertest.js to feed the navigation
|
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/news/javascript/ |
util.js | 13 * Default feed news URL.
|
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/news/views/ |
feed.html | 18 <link rel = "stylesheet" href = "/css/feed.css"/> 62 * Checks language in image url retrieved from feed and sets style of 119 <script src = "/javascript/feed.js"></script> 140 <div id = "feed">
|
/external/chromium_org/media/tools/bug_hunter/ |
bug_hunter_unittest.py | 34 feed = gdata.projecthosting.data.IssuesFeed() 36 feed.entry.append(gdata.projecthosting.data.IssueEntry( 44 return feed 74 feed = gdata.projecthosting.data.CommentsFeed() 75 feed.entry = [gdata.projecthosting.data.CommentEntry( 80 return feed
|
/external/chromium_org/chrome/browser/chromeos/contacts/ |
gdata_contacts_service_unittest.cc | 36 // Filename of JSON feed containing contact groups. 135 // Rewrites |original_url|, a photo URL from a contacts feed, to instead point 202 // feed. 206 EXPECT_FALSE(Download("/feed.json", base::Time(), &contacts)); 210 // feed. 214 EXPECT_FALSE(Download("/feed.json", base::Time(), &contacts)); 218 // Check that we're able to download an empty feed and a normal-looking feed 225 EXPECT_TRUE(Download("/feed.json", base::Time(), &contacts)); 228 // in the groups feed [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/generators/rss/ |
RSSFeedCreateFeedTask.java | 34 * project - project's name, used to label the feed - eg., Eclipse, EMF, UML2 35 * feedURL - URL of the feed where it will be published - eg., http://servername/path/to/feed.xml 90 sb.append("<feed xmlns=\"http://www.w3.org/2005/Atom\">" + NL); //$NON-NLS-1$ 98 sb.append("</feed>" + NL + NL); //$NON-NLS-1$
|