HomeSort by relevance Sort by last modified time
    Searched full:rss (Results 1 - 25 of 172) sorted by null

1 2 3 4 5 6 7

  /external/markdown/docs/extensions/
RSS.txt 0 RSS
7 An extension to Python-Markdown that outputs a markdown document as RSS. This
18 >>> rss = markdown.markdown(text, ['rss'])
23 An RSS document includes some data about the document (URI, author, title) that
33 >>> rss = markdown.markdown(text, extensions = \
34 ... ['rss(URL=http://example.com,CREATOR=JOHN DOE,TITLE=My Document)']
  /system/extras/libpagemap/
pm_memusage.c 20 mu->vss = mu->rss = mu->pss = mu->uss = 0;
25 a->rss += b->rss;
  /development/samples/MySampleRss/res/values/
strings.xml 3 <string name="menu_option_start">Start RSS Service</string>
4 <string name="menu_option_stop">Stop RSS Service</string>
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/
feedTools.jar 
plugin.xml 67 class="org.eclipse.releng.generators.rss.RSSFeedCreateFeedTask">
72 class="org.eclipse.releng.generators.rss.RSSFeedAddEntryTask">
77 class="org.eclipse.releng.generators.rss.RSSFeedGetPropertyTask">
82 class="org.eclipse.releng.generators.rss.RSSFeedUpdateEntryTask">
87 class="org.eclipse.releng.services.rss.RSSFeedPublisherTask">
92 class="org.eclipse.releng.services.rss.RSSFeedWatcherTask">
  /external/chromium/chrome/common/extensions/docs/examples/extensions/news_a11y/
manifest.json 4 "description": "Displays the first 5 items from the 'Google News - top news' RSS feed in a popup.",
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/util/rss/
Messages.java 16 package org.eclipse.releng.util.rss;
25 private static final String BUNDLE_NAME = "org.eclipse.releng.util.rss.messages"; //$NON-NLS-1$
  /external/chromium/chrome/common/extensions/docs/examples/extensions/news_i18n/_locales/en/
messages.json 7 "message": "Displays the first 5 items from the '$Google$ News - top news' RSS feed in a popup.",
36 "example": "Failed to fetch RSS feed."
41 "message": "Failed to fetch RSS feed.",
  /external/chromium/chrome/common/extensions/docs/examples/extensions/news_i18n/_locales/es/
messages.json 7 "message": "Muestra los primeros 5 eventos de '$Google$ noticias - destacados' RSS feed en una ventana.",
36 "example": "Fallo al capturar el RSS feed."
41 "message": "Fallo al capturar el RSS feed.",
  /external/markdown/markdown/extensions/
rss.py 57 md.treeprocessors['rss'] = treeprocessor
65 rss = etree.Element("rss")
66 rss.set("version", "2.0")
68 channel = etree.SubElement(rss, "channel")
109 return rss
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/generators/rss/
RSSFeedGetPropertyTask.java 11 package org.eclipse.releng.generators.rss;
18 import org.eclipse.releng.util.rss.Messages;
19 import org.eclipse.releng.util.rss.RSSFeedUtil;
  /development/samples/XmlAdapters/res/values/
strings.xml 21 <string name="rss_reader_activity">Xml RSS Reader</string>
24 <string name="no_rss_feed">Loading RSS feed...</string>
  /development/samples/XmlAdapters/src/com/example/android/xmladapters/
RssReaderActivity.java 25 * This example demonstrate the creation of a simple RSS feed reader using the XML adapter syntax.
31 private static final String FEED_URI = "http://feeds.nytimes.com/nyt/rss/HomePage";
  /development/samples/MySampleRss/src/com/example/codelab/rssexample/
RssService.java 50 private Cursor mCur; // RSS content provider cursor.
63 Notification note = new Notification(this, R.drawable.rss_icon, "RSS Service",
69 // icon on the status bar. This will launch our RSS Reader app.
72 // Get a cursor over the RSS items.
104 // Typically called after adding a new RSS feed to the list.
119 // previous value has been stored), it will requery all RSS feeds;
141 mLogger.info("Querying Rss feeds...");
161 // Query an individual RSS feed. Returns true if successful, false otherwise.
166 mLogger.info("RSS Feed " + url + ":\n " + rssFeed);
174 // lastUpdated = <rss><channel><pubDate>value</pubDate></channel></rss>
    [all...]
MyRssReader2.java 99 menu.add(0, 0, "Start RSS Service", null);
100 menu.add(0, 1, "Stop RSS Service", null);
142 // RSS items that are unread, or a normal TextView for items that have been read.
171 // Method to initialize our list of RSS items.
175 list.add(new RssItem("http://newsrss.bbc.co.uk/rss/newsonline_world_edition/front_page/rss.xml", "BBC"));
MyRssReader3.java 132 // Called by the "Add RSS Item" floating screen when it closes.
151 // RSS items that are unread, or a normal TextView for items that have been read.
175 // Method to initialize our list of RSS items.
179 list.add(new RssItem("http://newsrss.bbc.co.uk/rss/newsonline_world_edition/front_page/rss.xml", "BBC"));
  /development/samples/RSSReader/res/values/
strings.xml 19 <string name="rss_layout_urltext_text">http://rss.slashdot.org/Slashdot/slashdot</string>
  /external/chromium/chrome/common/extensions/docs/examples/extensions/news/javascript/
util.js 15 var DEFAULT_NEWS_URL = 'http://news.google.com/news?output=rss';
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_rss/
feedManipulation.xml 5 <taskdef name="CreateFeed" classname="org.eclipse.releng.generators.rss.RSSFeedCreateFeedTask" classpath="../feedTools.jar"/>
6 <taskdef name="AddEntry" classname="org.eclipse.releng.generators.rss.RSSFeedAddEntryTask" classpath="../feedTools.jar"/>
7 <taskdef name="GetProperty" classname="org.eclipse.releng.generators.rss.RSSFeedGetPropertyTask" classpath="../feedTools.jar"/>
8 <taskdef name="UpdateEntry" classname="org.eclipse.releng.generators.rss.RSSFeedUpdateEntryTask" classpath="../feedTools.jar"/>
  /system/extras/showmap/
showmap.c 19 unsigned rss; member in struct:mapinfo
97 } else if (!strcmp(field, "Rss:")) {
98 mi->rss = size;
134 current->rss += map->rss;
223 printf(" size RSS PSS clean dirty clean dirty ");
250 unsigned rss = 0; local
270 rss += mi->rss;
283 mi->rss,
    [all...]
  /development/samples/XmlAdapters/
_index.html 19 PhotosListActivity</strong></a> retrieves an RSS photo feed and displays the images and their
25 RssReaderActivity</strong></a> also displays items extracted from an RSS feed. An additional
  /external/webkit/Source/WebKit/qt/tests/MIMESniffing/resources/
application_rdf+xml 3 <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/">
5 <channel rdf:about="http://www.xml.com/xml/news.rss">
  /external/compiler-rt/lib/tsan/rtl/
tsan_platform_linux.cc 111 } else if (internal_strncmp(pos, "Rss:", 4) == 0) {
113 uptr rss = readdec(pos) * 1024; local
114 total += rss;
117 mem[0] += rss;
119 mem[file ? 1 : 2] += rss;
121 mem[file ? 1 : 2] += rss;
123 mem[3] += rss;
125 mem[4] += rss;
127 mem[5] += rss;
135 "RSS %zd MB: shadow:%zd file:%zd mmap:%zd trace:%zd heap:%zd other:%zd\n"
    [all...]
  /external/llvm/utils/Misc/
zkill 69 ('RSS', int, 'rss')]
188 group.add_option("", "--min-rss", dest="minRSS", metavar="N",
189 help="Kill processes with RSS >= N",
191 group.add_option("", "--max-rss", dest="maxRSS", metavar="N",
192 help="Kill processes with RSS <= N",
252 if opts.minRSS <= p.rss <= opts.maxRSS]
265 note('kill(%r, %s) # (user=%r, executable=%r, CPU=%2.2f%%, time=%r, vmem=%r, rss=%r)' %
266 (p.pid, signalValueName, p.user, p.executable, p.cpu_percent, p.cpu_time, p.vmem_size, p.rss))
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
taskstats.h 122 /* Accumulated RSS usage in duration of a task, in MBytes-usecs.
123 * The current rss usage is added to this counter every time
128 __u64 coremem; /* accumulated RSS usage in MB-usec */
134 /* High watermark of RSS and virtual memory usage in duration of
137 __u64 hiwater_rss; /* High-watermark of RSS usage, in KB */

Completed in 540 milliseconds

1 2 3 4 5 6 7