Home
last modified time | relevance | path

Searched refs:abbr (Results 1 – 25 of 44) sorted by relevance

12

/external/icu4c/data/locales/
Dhi.txt605 "ताएका" /** (abbr.) */,
606 "हाकूची" /** (abbr.) */,
607 "हाकूहो" /** (abbr.) */,
608 "शूचो" /** (abbr.) */,
609 "ताहिओ" /** (abbr.) */,
610 "केउन" /** (abbr.) */,
611 "वाडू" /** (abbr.) */,
612 "रैकी" /** (abbr.) */,
613 "योरो" /** (abbr.) */,
614 "जिंकी" /** (abbr.) */,
[all …]
Dth.txt880 "ทะอิกะ" /** (abbr.) */,
881 "ฮะกุชิ" /** (abbr.) */,
882 "ฮากุโฮ" /** (abbr.) */,
883 "ชุโช" /** (abbr.) */,
884 "ทะอิโฮ" /** (abbr.) */,
885 "เคอุง" /** (abbr.) */,
886 "วะโด" /** (abbr.) */,
887 "เรกิ" /** (abbr.) */,
888 "โยโร" /** (abbr.) */,
889 "จิงกิ" /** (abbr.) */,
[all …]
Dru.txt1292 "Эпоха Тайка" /** (abbr.) */,
1293 "Эпоха Хакути" /** (abbr.) */,
1294 "Эпоха Хакухо" /** (abbr.) */,
1295 "Эпоха Сючё" /** (abbr.) */,
1296 "Эпоха Тайхо" /** (abbr.) */,
1297 "Эпоха Кёюн" /** (abbr.) */,
1298 "Эпоха Вадо" /** (abbr.) */,
1299 "Эпоха Рэйки" /** (abbr.) */,
1300 "Эпоха Ёро" /** (abbr.) */,
1301 "Эпоха Дзинки" /** (abbr.) */,
[all …]
Droot.txt1133 "Taika" /** (abbr.) */,
1134 "Hakuchi" /** (abbr.) */,
1135 "Hakuhō" /** (abbr.) */,
1136 "Shuchō" /** (abbr.) */,
1137 "Taihō" /** (abbr.) */,
1138 "Keiun" /** (abbr.) */,
1139 "Wadō" /** (abbr.) */,
1140 "Reiki" /** (abbr.) */,
1141 "Yōrō" /** (abbr.) */,
1142 "Jinki" /** (abbr.) */,
[all …]
/external/markdown/docs/extensions/
DAbbreviations.txt8 Specifically, any defined abbreviation is wrapped in an `<abbr>` tag.
18 [php]: http://www.michelf.com/projects/php-markdown/extra/#abbr
30 <p>The <abbr title="Hyper Text Markup Language">HTML</abbr> specification
31 is maintained by the <abbr title="World Wide Web Consortium">W3C</abbr>.</p>
44 >>> html = markdown.markdown(text, ['abbr'])
48 >>> html = markdown.markdown(text, ['abbr', 'footnotes'])
53 markdown.py -x abbr source.txt > output.html
/external/markdown/markdown/extensions/
Dabbr.py53 abbr = m.group('abbr').strip()
55 self.markdown.inlinePatterns['abbr-%s'%abbr] = \
56 AbbrPattern(self._generate_pattern(abbr), title)
85 abbr = etree.Element('abbr')
86 abbr.text = m.group('abbr')
87 abbr.set('title', self.title)
88 return abbr
/external/icu4c/tools/tzcode/
Dzdump.c164 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); in hunt()
704 strcmp(abbr(&tm), loab) == 0)) { in hunt()
761 if (*abbr(tmp) != '\0') in show()
762 (void) printf(" %s", abbr(tmp)); in show()
771 if (tmp != NULL && *abbr(tmp) != '\0') in show()
[all …]
Dzic.c125 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);
1875 doabbr(abbr, format, letters, isdst, doquotes) in doabbr() argument
1876 char * const abbr; in doabbr()
1889 (void) strcpy(abbr, format);
1890 else (void) sprintf(abbr, format, letters);
1892 (void) strcpy(abbr, slashp + 1);
[all …]
Dtz2icu.cpp141 int32_t abbr; // index into ZoneInfo.abbrs 0..n-1 member
148 ZoneType() : rawoffset(-1), dstoffset(-1), abbr(-1) {} in ZoneType()
409 type.abbr = (int32_t) c; in readzoneinfo()
478 find(abbroffset.begin(), abbroffset.end(), it->abbr); in readzoneinfo()
490 os << "Warning: unusual abbr offset " << it->abbr in readzoneinfo()
498 it->abbr = 0; in readzoneinfo()
501 it->abbr = index; in readzoneinfo()
1227 abbr(-1), isdst(false), isstd(false), isgmt(false) {} in ZoneType()
/external/llvm/lib/DebugInfo/
DDWARFCompileUnit.cpp31 const DWARFDebugAbbrev *abbr = Context.getDebugAbbrev(); in extract() local
42 if (lengthOK && versionOK && addrSizeOK && abbrOffsetOK && abbr != NULL) { in extract()
43 Abbrevs = abbr->getAbbreviationDeclarationSet(abbrOffset); in extract()
/external/qemu/elff/
Ddwarf_defs.h743 bool add(const Dwarf_Abbr_DIE* abbr, Dwarf_AbbrNum num) { in add() argument
789 array_[num - 1] = abbr; in add()
800 bool add(const Dwarf_Abbr_DIE* abbr) { in add() argument
801 return add(abbr, abbr->get_abbr_num()); in add()
Ddwarf_die.cc256 const Dwarf_Abbr_DIE* abbr = parent_cu()->get_die_abbr(abbr_num); in advance() local
257 if (abbr == NULL) { in advance()
261 const Dwarf_Abbr_AT* attrib_abbr = abbr->process(NULL, &die_tag); in advance()
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_cvs/searchcvs/www/projectName/includes/
Dsearchcvs.css1 abbr selector
4 /* removes konqueror's custom abbr style */
/external/webkit/LayoutTests/dom/html/level2/html/
DHTMLTableCellElement04.js103 vabbr = testNode.abbr;
DHTMLTableCellElement03.js103 vabbr = testNode.abbr;
Dtable19.js102 vabbr = testNode.abbr;
/external/webkit/LayoutTests/dom/xhtml/level2/html/
DHTMLTableCellElement04.js103 vabbr = testNode.abbr;
Dtable19.js102 vabbr = testNode.abbr;
DHTMLTableCellElement03.js103 vabbr = testNode.abbr;
/external/webkit/Source/WebCore/html/
DHTMLTableCellElement.h44 String abbr() const;
DHTMLTableCellElement.idl25 attribute [Reflect] DOMString abbr;
/external/webkit/Tools/iExploder/iexploder-1.7.2/src/html-tags/
Ddillo2 abbr
Dmozilla2 abbr
Dwebkit3 abbr
/external/webkit/Tools/iExploder/iexploder-1.3.2/htdocs/
Dhtmltags.in3 abbr

12