Home
last modified time | relevance | path

Searched +defs:text +defs:html (Results 1 – 25 of 72) sorted by relevance

123

/external/python/typing/docs/
DMakefile29 html: BUILDER = html target
30 html: build target
33 text: BUILDER = text target
34 text: build target
/external/jsoup/src/test/java/org/jsoup/parser/
DPositionTest.java49 Element html = doc.expectFirst("html"); in tracksPosition() local
53 TextNode text = (TextNode) span.firstChild(); in tracksPosition() local
119 String html = "<html><head><meta></head><body><img><p>One</p><p>Two</p></body></html>"; in tracksExpectedPoppedElements() local
158 String html = "<meta><img><p>One<p>Two<p>Three"; in tracksImplicitPoppedElements() local
188 …String html = "<!doctype\nhtml>\n<title>jsoup &copy;\n2022</title><body>\n<![CDATA[\n<jsoup>\n]]>"; in tracksMarkup() local
210 String html = "<head>\n<script>foo;\nbar()\n5 <= 4;</script>"; in tracksDataNodes() local
236 TextNode text = (TextNode) rss.firstChild(); in tracksXml() local
257 TextNode text = (TextNode) p.firstChild(); in tracksFromFetch() local
273 String html = "<table>foo<tr>bar<td>baz</td>qux</tr>coo</table>"; in tracksTableMovedText() local
304 String html = "<h1>One</h1><h2>Two</h2><h10>Ten</h10>"; in tracksClosingHeadingTags() local
[all …]
DTokeniserTest.java34 String html = sb.toString(); in bufferUpInAttributeVal() local
51 String html = "<" + tag + ">One</" + tag + ">"; in handleSuperLargeTagNames() local
68 String html = "<p " + attrName + "=foo>One</p>"; in handleSuperLargeAttributeName() local
86 String text = sb.toString(); in handleLargeText() local
87 String html = "<p>" + text + "</p>"; in handleLargeText() local
104 String html = "<p><!-- " + comment + " --></p>"; in handleLargeComment() local
122 String html = "<p><![CDATA[" + cdata + "]]></p>"; in handleLargeCdata() local
141 String html = "<title>" + title + "</title>"; in handleLargeTitle() local
DTokeniserStateTest.java115 …String html = "<html><head></head><body><img src=foo><!-- <table><tr><td></table> --! --- --><p>He… in testCommentEndCoverage() local
122 TextNode text = (TextNode) p.childNode(0); in testCommentEndCoverage() local
128 …String html = "<html><head></head><body><img src=foo><!-- <table><tr><td></table> --!---!>--><p>He… in testCommentEndBangCoverage() local
135 TextNode text = (TextNode) p.childNode(0); in testCommentEndBangCoverage() local
203 String html = "<p\n<p<div id=one <span>Two"; in handlesLessInTagThanAsNewTag() local
DHtmlParserTest.java32 …String html = "<html><head><title>First!</title></head><body><p>First post! <img src=\"foo.png\" /… in parsesSimpleDocument() local
43 …String html = "<html><head><title>First!</title></head><body><p class=\"foo > bar\">First post! <i… in parsesRoughAttributes() local
53 public void dropsDuplicateAttributes(String html, String expected) { in dropsDuplicateAttributes()
74 String html = "<p One=One One=Two one=Three two=Four two=Five Two=Six>Text</p>"; in retainsAttributesOfDifferentCaseIfSensitive() local
81 String html = "<p =a>One<a <p>Something</p>Else"; in parsesQuiteRoughAttributes() local
95 …String html = "<html><head></head><body><img src=foo><!-- <table><tr><td></table> --><p>Hello</p><… in parsesComments() local
102 TextNode text = (TextNode) p.childNode(0); in parsesComments() local
107 String html = "<p>Hello<!-- <tr><td>"; in parsesUnterminatedComments() local
111 TextNode text = (TextNode) p.childNode(0); in parsesUnterminatedComments() local
120 String html = "<!------>"; in allDashCommentsAreNotParseErrors() local
[all …]
/external/python/cpython2/Doc/includes/
Demail-alternative.py20 text = "Hi!\nHow are you?\nHere is the link you wanted:\nhttps://www.python.org" variable
21 html = """\ variable
/external/python/cpython2/Doc/
DMakefile43 html: BUILDER = html target
44 html: build target
58 text: BUILDER = text target
59 text: build target
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/ui/src/main/java/com/google/android/exoplayer2/ui/
DSpannedToHtmlConverter.java82 public static HtmlAndCss convert(@Nullable CharSequence text, float displayDensity) { in convert()
105 StringBuilder html = new StringBuilder(spanned.length()); in convert() local
301 private static String escapeHtml(CharSequence text) { in escapeHtml()
310 public final String html; field in SpannedToHtmlConverter.HtmlAndCss
320 private HtmlAndCss(String html, Map<String, String> cssRuleSets) { in HtmlAndCss() argument
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/ui/src/main/java/com/google/android/exoplayer2/ui/
DSpannedToHtmlConverter.java82 public static HtmlAndCss convert(@Nullable CharSequence text, float displayDensity) { in convert()
105 StringBuilder html = new StringBuilder(spanned.length()); in convert() local
301 private static String escapeHtml(CharSequence text) { in escapeHtml()
310 public final String html; field in SpannedToHtmlConverter.HtmlAndCss
320 private HtmlAndCss(String html, Map<String, String> cssRuleSets) { in HtmlAndCss() argument
/external/sdv/vsomeip/third_party/boost/regex/example/snippets/
Dmfc_example.cpp77 void enumerate_links(const CString& html) in enumerate_links()
90 void enumerate_links2(const CString& html) in enumerate_links2()
142 …CString text = "<dt><a href=\"syntax_perl.html\">Perl Regular Expressions</a></dt><dt><a href=\"sy… in main() local
/external/jsoup/src/main/java/org/jsoup/nodes/
DElement.java783 public Element appendText(String text) { in appendText()
796 public Element prependText(String text) { in prependText()
809 public Element append(String html) { in append()
822 public Element prepend(String html) { in prepend()
837 public Element before(String html) { in before()
860 public Element after(String html) { in after()
897 public Element wrap(String html) { in wrap()
1389 public String text() { in text() method in Element
1498 String text = textNode.getWholeText(); in appendNormalisedText() local
1527 public Element text(String text) { in text() method in Element
[all …]
DDocument.java67 Element html = doc.appendElement("html"); in createShell() local
135 final Element html = htmlEl(); in head() local
155 final Element html = htmlEl(); in body() local
237 public Element text(String text) { in text() argument
397 public enum Syntax {html, xml} enumConstant
/external/python/cpython3/Doc/
DMakefile76 html: BUILDER = html target
77 html: build target
91 text: BUILDER = text target
92 text: build target
/external/chromium-trace/catapult/common/node_runner/node_runner/
Dminify20 let html = fs.readFileSync(filename).toString('utf8'); variable
41 let text = dom5.getTextContent(node); variable
/external/jsoup/src/test/java/org/jsoup/select/
DXpathTest.java29 String html = "<body><div><p>One</div><div><p>Two</div><div>Three</div>"; in supportsXpath() local
39 String html = "<body><div><p>One</div><div><p>Two</div><div>Three</div>"; in supportsXpathFromElement() local
116 String html = "<div id=1><div id=2><p class=foo>Hello</p></div></div><DIV id=3>"; in provideEvaluators() local
128 String html = "<div><p>One<p><a>Two</a><p>Three and some more"; in canSelectTextNodes() local
132 List<TextNode> text = doc.selectXpath("//body//p//text()", TextNode.class); in canSelectTextNodes() local
/external/python/cpython3/Lib/
Dcgitb.py51 def small(text): argument
57 def strong(text): argument
63 def grey(text): argument
106 def html(einfo, context=5): function
203 def text(einfo, context=5): function
/external/python/cpython2/Lib/
Dcgitb.py47 def small(text): argument
53 def strong(text): argument
59 def grey(text): argument
102 def html(einfo, context=5): function
193 def text(einfo, context=5): function
/external/jsoup/src/test/java/org/jsoup/nodes/
DNodeIteratorTest.java11 String html = "<div id=1><p>One<p>Two</div><div id=2><p>Three<p>Four</div>"; field in NodeIteratorTest
89 …String html = "<div id=out1><div id=1><p>One<p>Two</div><div id=2><p>Three<p>Four</div></div><div … in canRemoveViaIterator() local
116 …String html = "<div id=out1><div id=1><p>One<p>Two</div><div id=2><p>Three<p>Four</div></div><div … in canRemoveViaNode() local
143 …String html = "<div id=out1><div id=1><p>One<p>Two</div><div id=2><p>Three<p>Four</div></div><div … in canReplace() local
208 TextNode text = it.next(); in canFilterForTextNodes() local
DEntitiesTest.java14 String text = "Hello &<> Å å π 新 there ¾ © »"; in escape() local
37 String text = "\uD835\uDD59"; in escapedSupplementary() local
47 …String text = "&NestedGreaterGreater; &nGg; &nGt; &nGtv; &Gt; &gg;"; // gg is not combo, but 8811 … in unescapeMultiChars() local
75 String text = new String(Character.toChars(135361)); in escapeSupplementaryCharacter() local
83 String text = "&nparsl;"; in notMissingMultis() local
89 String text = "&npolint; &qfr;"; in notMissingSupplementals() local
95 …String text = "Hello &AElig; &amp;&LT&gt; &reg &angst; &angst &#960; &#960 &#x65B0; there &! &frac… in unescape() local
102 String text = "Hello &amp= &amp;"; in strictUnescape() local
126 String html = "<p>&sup1;&sup2;&sup3;&frac14;&frac12;&frac34;</p>"; in letterDigitEntities() local
170 String text = "Hello &<> Å å π 新 there ¾ © »"; in escapeByClonedOutputSettings() local
DElementTest.java133 String text = doc.text(); in testNormalisesText() local
190 String text = doc.text(); in textHasSpacesAfterBlock() local
509 String html = doc.html(); in testIndentLevel() local
541 String html = "<div><span>1:15</span>&ndash;<span>2:15</span>&nbsp;p.m.</div>"; in testNotPrettyWithEnDashBody() local
550 String html = "<div><span>1:15</span>&ndash;<span>2:15</span>&nbsp;p.m.</div>"; in testPrettyWithEnDashBody() local
558 String html = "<div><span>1:15</span>&ndash;<span>2:15</span>&nbsp;p.m.</div>"; in testPrettyAndOutlineWithEnDashBody() local
567 …String html = "<span>0</span>.<div><span>1</span>-<span>2</span><p><span>3</span>-<span>4</span><d… in testBasicFormats() local
1269 String html = "<div class='B\\&W\\?'><div class=test>Text</div></div>"; in cssSelectorEscapedClass() local
1368 …String html = "<body><a href='./one.html'>One</a> <a href='two.html'>two</a> <a href='../three.htm… in testRelativeUrls() local
1431 String html = "<html><body><fb:comments /></body></html>"; in testNamespacedElements() local
[all …]
/external/jsoup/src/main/java/org/jsoup/select/
DElements.java216 public String text() { in text() method in Elements
262 public String html() { in html() method in Elements
320 public Elements html(String html) { in html() method in Elements
333 public Elements prepend(String html) { in prepend()
346 public Elements append(String html) { in append()
359 public Elements before(String html) { in before()
372 public Elements after(String html) { in after()
388 public Elements wrap(String html) { in wrap()
/external/owasp/sanitizer/src/main/org/owasp/html/
DHtmlSanitizer.java81 void text(String textChunk); in text() method
102 public static void sanitize(@Nullable String html, final Policy policy) { in sanitize()
/external/python/uritemplates/docs/
DMakefile39 html: target
106 text: target
/external/python/six/documentation/
DMakefile39 html: target
106 text: target
/external/libchrome/third_party/markupsafe/
D_speedups.c118 escape(PyObject *self, PyObject *text) in escape()
120 PyObject *s = NULL, *rv = NULL, *html; in escape() local
163 escape_silent(PyObject *self, PyObject *text) in escape_silent()

123