Home
last modified time | relevance | path

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

12345678910>>...20

/aosp_15_r20/external/jsoup/src/test/java/org/jsoup/parser/
H A 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 …]
H A 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 …]
H A 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
H A 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
/aosp_15_r20/external/jsoup/src/main/java/org/jsoup/nodes/
H A 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 …]
H A 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
/aosp_15_r20/external/dokka/core/libs/
HDkotlinx-html-jvm-0.6.8-google.jar ... .FlowMetaDataPhrasingContent $this String $receiver public static void text (kotlinx.html.FlowMetaDataPhrasingContent, java.lang ...
/aosp_15_r20/prebuilts/tools/common/m2/repository/kotlinx/html/jvm/0.6.8/
HDkotlinx-html-jvm-0.6.8-google.jar ... .FlowMetaDataPhrasingContent $this String $receiver public static void text (kotlinx.html.FlowMetaDataPhrasingContent, java.lang ...
/aosp_15_r20/external/jsoup/src/test/java/org/jsoup/nodes/
H A 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 …]
H A DNodeTest.java405 TextNode text = (TextNode) div.childNode(0); in clonedNodesHaveOwnerDocsAndIndependentSettings() local
423 String html = "<div>One <span>Two</span> <a href></a> Three</div>"; in firstAndLastChild() local
461 TextNode text = new TextNode("Some Text"); in nodeName() local
467 String html = "<div><p>One</p>"; in elementIs() local
471 TextNode text = (TextNode) p.childNode(0); in elementIs() local
484 String html = "<div><svg><path>1,2,3</path></svg></div>"; in svgElementIs() local
H A 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
H A 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
/aosp_15_r20/external/owasp/sanitizer/distrib/lib/
Dowasp-java-html-sanitizer.jar ... org/ org/owasp/ org/owasp/html/ org/owasp/html/AbstractTokenStream.class ...
/aosp_15_r20/external/python/typing/docs/
DMakefile29 html: BUILDER = html target
30 html: build target
33 text: BUILDER = text target
34 text: build target
/aosp_15_r20/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/ui/src/main/java/com/google/android/exoplayer2/ui/
H A 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
/aosp_15_r20/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/ui/src/main/java/com/google/android/exoplayer2/ui/
H A 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
/aosp_15_r20/prebuilts/tools/common/m2/repository/org/jetbrains/markdown/0.1.41/
HDmarkdown-0.1.41.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/intellij/ org/ ...
/aosp_15_r20/external/python/cpython2/Doc/
DMakefile43 html: BUILDER = html target
44 html: build target
58 text: BUILDER = text target
59 text: build target
/aosp_15_r20/frameworks/base/core/java/com/google/android/util/
H A DAbstractMessageParser.java71 private String text; field in AbstractMessageParser
90 public AbstractMessageParser(String text) { in AbstractMessageParser()
100 public AbstractMessageParser(String text, boolean parseSmilies, in AbstractMessageParser()
197 public static Token tokenForUrl(String url, String text) { in tokenForUrl()
466 private void addURLToken(String url, String text) { in addURLToken()
698 protected String text; field in AbstractMessageParser.Token
700 protected Token(Type type, String text) { in Token()
736 private String html; field in AbstractMessageParser.Html
738 public Html(String text, String html) { in Html()
764 private static String trimLeadingWhitespace(String text) { in trimLeadingWhitespace()
[all …]
/aosp_15_r20/external/python/cpython3/Doc/
DMakefile76 html: BUILDER = html target
77 html: build target
91 text: BUILDER = text target
92 text: build target
/aosp_15_r20/external/jsoup/src/main/java/org/jsoup/select/
H A 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() argument
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()
/aosp_15_r20/external/jsoup/src/test/java/org/jsoup/select/
H A 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
/aosp_15_r20/external/conscrypt/api-doclet/src/main/kotlin/org/conscrypt/doclet/
H A DHtmlBuilder.kt26 fun text(fragment: () -> String): StringBuilder = text(fragment()) method in org.conscrypt.doclet.HtmlBuilder
27 fun text(text: String): StringBuilder = content.append(text) method
158 fun html(block: Block) = block.render() method
/aosp_15_r20/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
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/lib/python3.11/
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

12345678910>>...20