/development/samples/training/multiscreen/newsreader/src/com/example/android/newsreader/ |
ArticleActivity.java | 24 * Activity that displays a particular news article onscreen. 27 * which case this separate activity is shown in order to display the news article. This activity 29 * in that case the news article will be displayed by the {@link NewsReaderActivity} and this 33 // The news category index and the article index for the article we are to display 39 * Setting up the activity means reading the category/article index from the Intent that 60 // Display the correct news article on the fragment 61 NewsArticle article = NewsSource.getInstance().getCategory(mCatIndex).getArticle(mArtIndex); local 62 f.displayArticle(article);
|
/external/chromium_org/components/dom_distiller/webui/ |
dom_distiller_handler.cc | 65 const ArticleEntry& article = *it; local 66 DCHECK(IsEntryValid(article)); 68 entry->SetString("entry_id", article.entry_id()); 69 std::string title = (!article.has_title() || article.title().empty()) ? 70 article.entry_id() : article.title();
|
/development/samples/training/basic/FragmentBasics/src/com/example/fragments/ |
ArticleFragment.java | 34 // the previous article selection set by onSaveInstanceState(). 51 // below that sets the article text. 54 // Set article based on argument passed in 57 // Set article based on saved instance state defined during onCreateView 63 TextView article = (TextView) getActivity().findViewById(R.id.article); local 64 article.setText(Ipsum.Articles[position]); 72 // Save the current article selection in case we need to recreate the fragment
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
nntplib.py | 17 To post an article from a file: 18 >>> f = open(filename, 'r') # file containing article, including header 23 Note that all arguments and return values representing article numbers 83 # Response numbers that are followed by additional text (e.g. article) 341 - first: first article number (string) 342 - last: last article number (string) 389 - id: article number or message id 392 - nr: the article number 406 """Internal: process a HEAD, BODY or ARTICLE command.""" 413 - id: article number or message i 435 def article(self, id): member in class:NNTP [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
nntplib.py | 17 To post an article from a file: 18 >>> f = open(filename, 'r') # file containing article, including header 23 Note that all arguments and return values representing article numbers 83 # Response numbers that are followed by additional text (e.g. article) 341 - first: first article number (string) 342 - last: last article number (string) 389 - id: article number or message id 392 - nr: the article number 406 """Internal: process a HEAD, BODY or ARTICLE command.""" 413 - id: article number or message i 435 def article(self, id): member in class:NNTP [all...] |
/external/chromium_org/third_party/accessibility-audit/ |
axs_testing.js | 417 axs.constants.ARIA_ROLES = {alert:{namefrom:["author"], parent:["region"]}, alertdialog:{namefrom:["author"], namerequired:!0, parent:["alert", "dialog"]}, application:{namefrom:["author"], namerequired:!0, parent:["landmark"]}, article:{namefrom:["author"], parent:["document", "region"]}, banner:{namefrom:["author"], parent:["landmark"]}, button:{childpresentational:!0, namefrom:["contents", "author"], namerequired:!0, parent:["command"], properties:["aria-expanded", "aria-pressed"]}, checkbox:{namefrom:["contents", 477 axs.constants.STRUCTURE_ROLE_TO_NAME = {article:"aria_role_article", application:"aria_role_application", banner:"aria_role_banner", columnheader:"aria_role_columnheader", complementary:"aria_role_complementary", contentinfo:"aria_role_contentinfo", definition:"aria_role_definition", directory:"aria_role_directory", document:"aria_role_document", form:"aria_role_form", group:"aria_role_group", heading:"aria_role_heading", img:"aria_role_img", list:"aria_role_list", listitem:"aria_role_listitem", 484 axs.constants.TAG_TO_INFORMATION_TABLE_VERBOSE_MSG = {A:"tag_link", BUTTON:"tag_button", H1:"tag_h1", H2:"tag_h2", H3:"tag_h3", H4:"tag_h4", H5:"tag_h5", H6:"tag_h6", LI:"tag_li", OL:"tag_ol", SELECT:"tag_select", TEXTAREA:"tag_textarea", UL:"tag_ul", SECTION:"tag_section", NAV:"tag_nav", ARTICLE:"tag_article", ASIDE:"tag_aside", HGROUP:"tag_hgroup", HEADER:"tag_header", FOOTER:"tag_footer", TIME:"tag_time", MARK:"tag_mark"}; [all...] |