/external/markdown/docs/extensions/ |
D | Abbreviations.txt | 8 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/ |
D | abbr.py | 53 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/slf4j/slf4j-migrator/src/main/java/org/slf4j/migrator/internal/ |
D | ProgressListenerImpl.java | 42 Abbreviator abbr; field in ProgressListenerImpl 48 … this.abbr = new Abbreviator((int) projectFolder.length(), TARGET_FILE_LENGTH, File.separatorChar); in ProgressListenerImpl() 109 return abbr.abbreviate(file.getCanonicalPath()); in getShortName()
|
/external/libxml2/result/ |
D | xhtmlcomp.rde | 9 3 1 abbr 0 0 11 3 15 abbr 0 0
|
D | xhtmlcomp.rdr | 9 3 1 abbr 0 0 11 3 15 abbr 0 0
|
D | xhtmlcomp.sax | 12 SAX.startElement(abbr) 14 SAX.endElement(abbr)
|
D | xhtmlcomp.sax2 | 12 SAX.startElementNs(abbr, NULL, NULL, 0, 0, 0) 14 SAX.endElementNs(abbr, NULL, NULL)
|
/external/icu/icu4c/source/tools/tzcode/ |
D | zdump.c | 230 static char * abbr(struct tm * tmp); 598 (void) strncpy(buf, abbr(&tm), (sizeof buf) - 1); in main() 621 abbr(&newtm), in main() 630 strcmp(abbr(&newtm), buf) != 0)) { in main() 636 abbr(&newtm), in main() 745 (void) strncpy(loab, abbr(&lotm), (sizeof loab) - 1); in hunt() 763 strcmp(abbr(&tm), loab) == 0)) { in hunt() 818 if (*abbr(tmp) != '\0') in show() 819 (void) printf(" %s", abbr(tmp)); in show() 828 if (tmp != NULL && *abbr(tmp) != '\0') in show() [all …]
|
D | zic.c | 144 char *const abbr, int isdst, 147 static int addtype(zic_t gmtoff, const char * abbr, int isdst, 167 static void newabbr(const char * abbr); 1946 doabbr(char *const abbr, const char *const format, const char *const letters, in doabbr() argument 1956 (void) strcpy(abbr, format); in doabbr() 1957 else (void) sprintf(abbr, format, letters); in doabbr() 1959 (void) strcpy(abbr, slashp + 1); in doabbr() 1962 (void) strncpy(abbr, format, slashp - format); in doabbr() 1963 abbr[slashp - format] = '\0'; in doabbr() 1967 for (cp = abbr; *cp != '\0'; ++cp) in doabbr() [all …]
|
D | tz2icu.cpp | 141 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/icu/icu4c/source/i18n/ |
D | filteredbrk.cpp | 402 const UnicodeString *abbr = fSet.getStringAt(i); in build() local 403 if(abbr) { in build() 404 FB_TRACE("build",abbr,TRUE,i); in build() 405 ustrs[n] = *abbr; // copy by value in build() 408 FB_TRACE("build",abbr,FALSE,i); in build()
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_cvs/searchcvs/www/projectName/includes/ |
D | searchcvs.css | 1 abbr selector 4 /* removes konqueror's custom abbr style */
|
/external/vboot_reference/utility/ |
D | tpmc.c | 26 const char* abbr; member 439 printf("%26s %7s %s\n", c->name, c->abbr, c->description); in main() 447 if (strcmp(cmd, c->name) == 0 || strcmp(cmd, c->abbr) == 0) { in main()
|
/external/lldb/source/Plugins/SymbolFile/DWARF/ |
D | DWARFCompileUnit.cpp | 81 const DWARFDebugAbbrev *abbr = m_dwarf2Data->DebugAbbrev(); in Extract() local 92 if (length_OK && version_OK && addr_size_OK && abbr_offset_OK && abbr != NULL) in Extract() 94 m_abbrevs = abbr->GetAbbreviationDeclarationSet(abbr_offset); in Extract()
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/ |
D | TestUScript.java | 594 String abbr = UScript.getShortName(code); in TestAllCodepoints() local 595 if(abbr.indexOf("INV")>=0){ in TestAllCodepoints()
|
/external/pdfium/core/src/fpdfapi/fpdf_page/ |
D | fpdf_page_parser.cpp | 441 static CFX_ByteStringC _PDF_FindFullName(const _FX_BSTR* table, int count, FX_BSTR abbr) in _PDF_FindFullName() argument 445 …if (abbr.GetLength() == table[i + 1].m_Size && FXSYS_memcmp32(abbr.GetPtr(), table[i + 1].m_Ptr, a… in _PDF_FindFullName()
|
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/ |
D | TransliteratorTest.java | 2527 String abbr = UScript.getShortName(code); in TestScriptAllCodepoints() local 2543 if (!scriptAbbrsChecked.contains(abbr)) { in TestScriptAllCodepoints() 2544 scriptAbbrsChecked.add(abbr); in TestScriptAllCodepoints() 2545 String newAbbrId ="[:"+abbr+":];NFD"; in TestScriptAllCodepoints() 2550 " script code: " +abbr); in TestScriptAllCodepoints() 2554 +" script code: " +abbr in TestScriptAllCodepoints()
|
/external/icu/icu4c/ |
D | icu4c.css | 440 abbr { selector
|
/external/icu/icu4c/source/data/locales/ |
D | ru.txt | 1617 era-abbr:intvector{
|
/external/icu/icu4c/source/test/intltest/ |
D | transtst.cpp | 4003 char abbr[256]={'\0'}; in TestAllCodepoints() local 4023 uprv_strcpy(abbr,uscript_getShortName(code)); in TestAllCodepoints() 4030 uprv_strcat(newAbbrId,abbr); in TestAllCodepoints()
|
/external/okhttp/website/static/ |
D | bootstrap-combined.min.css | 9 …abbr[title]:after{content:" (" attr(title) ")"}.ir a:after,a[href^="javascript:"]:after,a[href^="#…
|
/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rcssmin/bench/ |
D | wikipedia.min.css | 1 …r="ltr"]{direction:ltr}textarea[dir="rtl"],input[dir="rtl"]{direction:rtl}abbr,acronym,.explain{bo… selector
|
D | wikipedia.css | 909 abbr, selector
|
/external/slf4j/slf4j-site/src/site/pages/js/ |
D | jquery-min.js | 3 …or(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var V="abbr|article|aside|audio…
|
/external/bison/build-aux/ |
D | texinfo.tex | 2781 % @abbr for "Comput. J." and the like. 2784 \def\abbr#1{\doabbr #1,,\finish} 4571 \definedummyword\abbr
|