/external/llvm/lib/Target/ARM/InstPrinter/ |
D | ARMInstPrinter.cpp | 68 OS << markup("<reg:") << getRegisterName(RegNo) << markup(">"); in printRegName() 121 O << ", " << markup("<imm:") << "#" in printInst() 122 << translateShiftImm(ARM_AM::getSORegOffset(MO2.getImm())) << markup(">"); in printInst() 279 O << markup("<imm:") << '#' << formatImm(Op.getImm()) << markup(">"); in printOperand() 321 O << markup("<mem:") << "[pc, "; in printThumbLdrLabelOperand() 330 O << markup("<imm:") << "#-" << formatImm(-OffImm) << markup(">"); in printThumbLdrLabelOperand() 332 O << markup("<imm:") << "#" << formatImm(OffImm) << markup(">"); in printThumbLdrLabelOperand() 334 O << "]" << markup(">"); in printThumbLdrLabelOperand() 386 O << markup("<mem:") << "["; in printAM2PreOrOffsetIndexOp() 391 O << ", " << markup("<imm:") << "#" in printAM2PreOrOffsetIndexOp() [all …]
|
/external/freetype/src/tools/docmaker/ |
D | formatter.py | 51 for markup in block.markups: 52 if markup.tag == 'values': 53 for field in markup.fields: 164 def markup_enter( self, markup, block = None ): argument 167 def field_enter( self, field, markup = None, block = None ): argument 170 def field_exit( self, field, markup = None, block = None ): argument 173 def markup_exit( self, markup, block = None ): argument 195 for markup in block.markups: 196 if markup.tag == 'values': 197 for field in markup.fields: [all …]
|
D | tohtml.py | 445 for markup in block.markups: 446 if markup.tag == 'values': 447 for field in markup.fields: 480 def print_html_markup( self, markup ): argument 482 for field in markup.fields: 698 def markup_enter( self, markup, block ): argument 699 if markup.tag == "description": 702 print marker_header + markup.tag + marker_inter 704 self.print_html_markup( markup ) 706 def markup_exit( self, markup, block ): argument [all …]
|
D | content.py | 430 self.markup = None 435 if self.markup and self.markup_lines: 442 m = DocMarkup( self.markup, self.markup_lines ) 446 self.markup = None 452 markup = None 487 self.markup = found 577 markup = self.markups[0] 578 para = markup.fields[0].items[0]
|
D | docbeauty.py | 29 for markup in markups: 30 text.extend( markup.beautify( first ) )
|
/external/llvm/lib/Target/X86/InstPrinter/ |
D | X86ATTInstPrinter.cpp | 37 OS << markup("<reg:") << '%' << getRegisterName(RegNo) << markup(">"); in printRegName() 170 O << markup("<imm:") << '$' << formatImm(Imm) << markup(">"); in printOperand() 189 O << markup("<imm:") << '$'; in printOperand() 191 O << markup(">"); in printOperand() 202 O << markup("<mem:"); in printMemReference() 229 O << ',' << markup("<imm:") << ScaleVal // never printed in hex. in printMemReference() 230 << markup(">"); in printMemReference() 236 O << markup(">"); in printMemReference() 243 O << markup("<mem:"); in printSrcIdx() 255 O << markup(">"); in printSrcIdx() [all …]
|
/external/autotest/site_utils/rpm_control_system/ |
D | BeautifulSoup.py | 915 markup = None 917 markup = markupName 918 markupAttrs = markup 924 or (markup and self._matches(markup, self.name)) \ 925 or (not markup and self._matches(markupName, self.name)): 944 if markup: 945 found = markup 950 def search(self, markup): argument 955 if hasattr(markup, "__iter__") \ 956 and not isinstance(markup, Tag): [all …]
|
/external/skqp/docs/ |
D | markup.bmh | 3 # redefine markup character so examples below will not be parsed 6 Text, except for the single markup character, requires no annotation. 37 The markup character is initially # at the start of any .bmh file 38 ###x <- redefine the markup character as 'x' 39 xxx# <- restore the default markup character 85 $ restore markup character
|
/external/skia/docs/ |
D | markup.bmh | 3 # redefine markup character so examples below will not be parsed 6 Text, except for the single markup character, requires no annotation. 37 The markup character is initially # at the start of any .bmh file 38 ###x <- redefine the markup character as 'x' 39 xxx# <- restore the default markup character 85 $ restore markup character
|
/external/libmojo/third_party/markupsafe/ |
D | _speedups.c | 24 static PyObject* markup; variable 49 markup = PyObject_GetAttrString(module, "Markup"); in init_constants() 129 return PyObject_CallFunctionObjArgs(markup, text, NULL); in escape() 156 rv = PyObject_CallFunctionObjArgs(markup, (PyObject*)s, NULL); in escape() 167 return PyObject_CallFunctionObjArgs(markup, NULL); in escape_silent()
|
/external/owasp/sanitizer/src/tests/org/owasp/html/ |
D | HtmlLexerTest.java | 148 private static void assertTokens(String markup, String... golden) { in assertTokens() argument 149 HtmlLexer lexer = new HtmlLexer(markup); in assertTokens() 153 actual.add(t.type + ": " + markup.substring(t.start, t.end)); in assertTokens()
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
D | ScientificNumberFormatterTest.java | 29 ScientificNumberFormatter markup = ScientificNumberFormatter.getMarkupInstance( in TestBasic() local 35 markup.format(1.23456e-78)); in TestBasic()
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/ |
D | ScientificNumberFormatterTest.java | 32 ScientificNumberFormatter markup = ScientificNumberFormatter.getMarkupInstance( in TestBasic() local 38 markup.format(1.23456e-78)); in TestBasic()
|
/external/llvm/lib/MC/ |
D | MCInstPrinter.cpp | 55 StringRef MCInstPrinter::markup(StringRef s) const { in markup() function in MCInstPrinter 61 StringRef MCInstPrinter::markup(StringRef a, StringRef b) const { in markup() function in MCInstPrinter
|
/external/pcre/dist2/ |
D | 132html | 209 my($markup) = $1; 214 print TEMP "$_$markup\n";
|
/external/llvm/include/llvm/MC/ |
D | MCInstPrinter.h | 86 StringRef markup(StringRef s) const; 87 StringRef markup(StringRef a, StringRef b) const;
|
/external/llvm/docs/ |
D | MarkedUpDisassembly.rst | 21 The markup is simple enough in syntax to be robust even in the case of version 44 Annoated assembly display will supply contextual markup to help clients more 45 efficiently implement things like pretty printers. Most markup will be target
|
D | README.txt | 5 plaintext markup language (file extension `.rst`). While the 25 markup syntax.
|
/external/python/cpython2/Lib/ |
D | DocXMLRPCServer.py | 26 def markup(self, text, escape=None, funcs={}, classes={}, methods={}): member in ServerHTMLDoc 104 doc = self.markup( 121 doc = self.markup(package_documentation, self.preformat, fdict)
|
/external/python/cpython2/Doc/ |
D | README.txt | 9 both style and markup, is available in the "Documenting Python" chapter of the 84 * "suspicious", which checks the parsed markup for text that looks like 87 * "check", which checks for frequent markup errors.
|
/external/python/cpython3/Doc/ |
D | README.rst | 9 both style and markup, is available in the "`Documenting Python 85 * "suspicious", which checks the parsed markup for text that looks like 88 * "check", which checks for frequent markup errors.
|
/external/python/cpython3/Doc/library/ |
D | fileformats.rst | 8 that aren't markup languages and are not related to e-mail.
|
D | html.parser.rst | 20 Create a parser instance able to parse invalid markup. 27 when start tags, end tags, text, comments, and other markup elements are 122 The following methods are called when data or markup elements are encountered 200 the ``<!...>`` markup (e.g. ``'DOCTYPE html'``). 223 the ``<![...]>`` markup. It is sometimes useful to be overridden by a
|
/external/python/cpython2/Doc/library/ |
D | fileformats.rst | 9 that aren't markup languages or are related to e-mail.
|
/external/llvm/lib/Target/NVPTX/InstPrinter/ |
D | NVPTXInstPrinter.cpp | 85 O << markup("<imm:") << formatImm(Op.getImm()) << markup(">"); in printOperand()
|