/external/markdown/markdown/extensions/ |
abbr.py | 11 ... Some text with an ABBR and a REF. Ignore REFERENCE and ref. 13 ... *[ABBR]: Abbreviation 16 >>> markdown.markdown(text, ['abbr']) 17 u'<p>Some text with an <abbr title="Abbreviation">ABBR</abbr> and a <abbr title="Abbreviation Reference">REF</abbr>. Ignore REFERENCE and ref.</p>' 30 ABBR_REF_RE = re.compile(r'[*]\[(?P<abbr>[^\]]*)\][ ]?:\s*(?P<title>.*)') 37 md.preprocessors.add('abbr', AbbrPreprocessor(md), '<reference' [all...] |
/external/webkit/Source/WebCore/html/ |
HTMLTableCellElement.h | 44 String abbr() const;
|
HTMLTableCellElement.idl | 25 attribute [Reflect] DOMString abbr;
|
HTMLTableCellElement.cpp | 137 String HTMLTableCellElement::abbr() const function in class:WebCore::HTMLTableCellElement
|
/external/webkit/LayoutTests/dom/html/level2/html/ |
HTMLTableCellElement03.js | 78 The abbr attribute specifies the abbreviation for table header cells(TH). 80 Retrieve the abbr attribute from the second TH element and examine 103 vabbr = testNode.abbr;
|
HTMLTableCellElement04.js | 78 The abbr attribute specifies the abbreviation for table data cells(TD). 80 Retrieve the abbr attribute from the second TD element and examine 103 vabbr = testNode.abbr;
|
table19.js | 80 The value of attribute abbr of the tablecell element is read and checked against the expected value. 102 vabbr = testNode.abbr;
|
HTMLElement110.js | 80 Retrieve the dir attribute of the ABBR element and examine its value. 99 nodeList = doc.getElementsByTagName("abbr");
|
HTMLElement139.js | 80 Retrieve the class attribute of the ABBR element and examine its value. 99 nodeList = doc.getElementsByTagName("abbr"); 104 assertEquals("classNameLink","ABBR-class",vclassname);
|
HTMLElement23.js | 80 Retrieve the id attribute of the ABBR element and examine its value. 99 nodeList = doc.getElementsByTagName("abbr"); 104 assertEquals("idLink","Test-ABBR",vid);
|
HTMLElement52.js | 80 Retrieve the title attribute of the ABBR element and examine its value. 99 nodeList = doc.getElementsByTagName("abbr"); 104 assertEquals("titleLink","ABBR Element",vtitle);
|
HTMLElement81.js | 80 Retrieve the lang attribute of the ABBR element and examine its value. 99 nodeList = doc.getElementsByTagName("abbr");
|
/external/webkit/LayoutTests/dom/xhtml/level2/html/ |
HTMLTableCellElement03.js | 78 The abbr attribute specifies the abbreviation for table header cells(TH). 80 Retrieve the abbr attribute from the second TH element and examine 103 vabbr = testNode.abbr;
|
HTMLTableCellElement04.js | 78 The abbr attribute specifies the abbreviation for table data cells(TD). 80 Retrieve the abbr attribute from the second TD element and examine 103 vabbr = testNode.abbr;
|
table19.js | 80 The value of attribute abbr of the tablecell element is read and checked against the expected value. 102 vabbr = testNode.abbr;
|
HTMLElement110.js | 80 Retrieve the dir attribute of the ABBR element and examine its value. 99 nodeList = doc.getElementsByTagName("abbr");
|
HTMLElement139.js | 80 Retrieve the class attribute of the ABBR element and examine its value. 99 nodeList = doc.getElementsByTagName("abbr"); 104 assertEquals("classNameLink","ABBR-class",vclassname);
|
HTMLElement23.js | 80 Retrieve the id attribute of the ABBR element and examine its value. 99 nodeList = doc.getElementsByTagName("abbr"); 104 assertEquals("idLink","Test-ABBR",vid);
|
HTMLElement52.js | 80 Retrieve the title attribute of the ABBR element and examine its value. 99 nodeList = doc.getElementsByTagName("abbr"); 104 assertEquals("titleLink","ABBR Element",vtitle);
|
/external/icu4c/tools/tzcode/ |
zdump.c | 164 static char * abbr(struct tm * tmp); 507 (void) strncpy(buf, abbr(&tm), (sizeof buf) - 1); 528 abbr(&newtm), 537 strcmp(abbr(&newtm), buf) != 0)) { 543 abbr(&newtm), 686 (void) strncpy(loab, abbr(&lotm), (sizeof loab) - 1); 704 strcmp(abbr(&tm), loab) == 0)) { 761 if (*abbr(tmp) != '\0') 762 (void) printf(" %s", abbr(tmp)); 771 if (tmp != NULL && *abbr(tmp) != '\0' 776 abbr(tmp) function [all...] |
zic.c | 125 const char * abbr, int isdst, 128 static int addtype(long gmtoff, const char * abbr, int isdst, 138 static void doabbr(char * abbr, const char * format, 156 static int itsabbr(const char * abbr, const char * word); 161 static void newabbr(const char * abbr); [all...] |
/external/qemu/elff/ |
dwarf_die.cc | 256 const Dwarf_Abbr_DIE* abbr = parent_cu()->get_die_abbr(abbr_num);
local 257 if (abbr == NULL) {
261 const Dwarf_Abbr_AT* attrib_abbr = abbr->process(NULL, &die_tag);
|
dwarf_defs.h | 734 * abbr - New entry to add.
743 bool add(const Dwarf_Abbr_DIE* abbr, Dwarf_AbbrNum num) {
789 array_[num - 1] = abbr;
796 * abbr - New entry to add.
800 bool add(const Dwarf_Abbr_DIE* abbr) {
801 return add(abbr, abbr->get_abbr_num());
[all...] |
/ndk/sources/host-tools/ndk-stack/elff/ |
dwarf_die.cc | 256 const Dwarf_Abbr_DIE* abbr = parent_cu()->get_die_abbr(abbr_num); local 257 if (abbr == NULL) { 261 const Dwarf_Abbr_AT* attrib_abbr = abbr->process(NULL, &die_tag);
|
dwarf_defs.h | 734 * abbr - New entry to add. 743 bool add(const Dwarf_Abbr_DIE* abbr, Dwarf_AbbrNum num) { 789 array_[num - 1] = abbr; 796 * abbr - New entry to add. 800 bool add(const Dwarf_Abbr_DIE* abbr) { 801 return add(abbr, abbr->get_abbr_num());
|