HomeSort by relevance Sort by last modified time
    Searched refs:HTML (Results 126 - 150 of 420) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/owasp/sanitizer/empiricism/
html-containment.js 5 * exhaustively for all combinations of HTML element names.
11 * an HTML document body created by parsing the HTML from makeHtmlString
91 // Try to generate an HTML string.
131 '<!doctype html><html><head></head>'
  /external/python/cpython2/Lib/
markupbase.py 1 """Shared support for scanning document type declarations in HTML and XHTML.
26 by the SGML/HTML and XHTML parsers."""
66 # This is some sort of declaration; in "HTML as
68 # declaration ("<!DOCTYPE html...>").
  /prebuilts/gdb/darwin-x86/lib/python2.7/
markupbase.py 1 """Shared support for scanning document type declarations in HTML and XHTML.
26 by the SGML/HTML and XHTML parsers."""
66 # This is some sort of declaration; in "HTML as
68 # declaration ("<!DOCTYPE html...>").
  /prebuilts/gdb/linux-x86/lib/python2.7/
markupbase.py 1 """Shared support for scanning document type declarations in HTML and XHTML.
26 by the SGML/HTML and XHTML parsers."""
66 # This is some sort of declaration; in "HTML as
68 # declaration ("<!DOCTYPE html...>").
  /prebuilts/go/darwin-x86/src/cmd/go/
discovery.go 36 // parseMetaGoImports returns meta imports from the HTML in r.
  /prebuilts/go/darwin-x86/src/go/doc/
comment.go 5 // Godoc comment extraction and comment -> HTML formatting.
23 // Escape comment text for HTML. If nice is set,
99 // Emphasize and escape a line of text for HTML. URLs are converted into links;
267 // ToHTML converts comment text to formatted HTML.
headscan.go 58 list = append(list, s[i:]) // incorrect HTML
  /prebuilts/go/darwin-x86/src/html/
escape_test.go 5 package html package
15 // The HTML text.
16 html string
92 unescaped := UnescapeString(tt.html)
  /prebuilts/go/darwin-x86/src/net/rpc/
debug.go 8 Some HTML presented at http://machine:port/debug/rpc
14 "html/template"
19 const debugText = `<html>
37 </html>`
  /prebuilts/go/linux-x86/src/cmd/go/
discovery.go 36 // parseMetaGoImports returns meta imports from the HTML in r.
  /prebuilts/go/linux-x86/src/go/doc/
comment.go 5 // Godoc comment extraction and comment -> HTML formatting.
23 // Escape comment text for HTML. If nice is set,
99 // Emphasize and escape a line of text for HTML. URLs are converted into links;
267 // ToHTML converts comment text to formatted HTML.
headscan.go 58 list = append(list, s[i:]) // incorrect HTML
  /prebuilts/go/linux-x86/src/html/
escape_test.go 5 package html package
15 // The HTML text.
16 html string
92 unescaped := UnescapeString(tt.html)
  /prebuilts/go/linux-x86/src/net/rpc/
debug.go 8 Some HTML presented at http://machine:port/debug/rpc
14 "html/template"
19 const debugText = `<html>
37 </html>`
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
markupbase.py 1 """Shared support for scanning document type declarations in HTML and XHTML.
26 by the SGML/HTML and XHTML parsers."""
66 # This is some sort of declaration; in "HTML as
68 # declaration ("<!DOCTYPE html...>").
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
markupbase.py 1 """Shared support for scanning document type declarations in HTML and XHTML.
26 by the SGML/HTML and XHTML parsers."""
66 # This is some sort of declaration; in "HTML as
68 # declaration ("<!DOCTYPE html...>").
  /tools/tradefederation/core/tests/src/com/android/tradefed/testtype/
CodeCoverageTestBaseTest.java 151 HTML(LogDataType.HTML);
204 return ImmutableList.of(FakeReportFormat.HTML);
266 eq(FakeReportFormat.HTML.getLogDataType()),
448 doReturn(ImmutableList.of(FakeReportFormat.XML, FakeReportFormat.HTML))
453 .generateCoverageReport(anyCollection(), eq(FakeReportFormat.HTML));
464 verify(coverageTest).generateCoverageReport(anyCollection(), eq(FakeReportFormat.HTML));
465 verify(coverageTest).doLogReport(anyString(), eq(FakeReportFormat.HTML.getLogDataType()),
    [all...]
  /prebuilts/go/darwin-x86/src/html/template/
css.go 156 // cssEscaper escapes HTML and CSS special characters using \<hex>+ escapes.
191 // Encode HTML specials as hex so the output can be embedded
192 // in HTML attributes without further encoding.
js_test.go 187 // Allow embedding in HTML without further escaping.
193 // http://dev.w3.org/html5/markup/aria/syntax.html#escaping-text-span
202 // injection followed by an HTML text injection.
242 // Allow embedding in HTML without further escaping.
  /prebuilts/go/linux-x86/src/html/template/
css.go 156 // cssEscaper escapes HTML and CSS special characters using \<hex>+ escapes.
191 // Encode HTML specials as hex so the output can be embedded
192 // in HTML attributes without further encoding.
  /external/autotest/frontend/client/src/autotest/afe/
JobDetailView.java 36 import com.google.gwt.user.client.ui.HTML;
482 return "/embedded_spreadsheet/EmbeddedSpreadsheetClient.html?afe_job_id=" + jobId;
574 return new HTML(getLogsLinkHtml(basePath + "debug", "Debug logs"));
576 return new HTML(getLogsLinkHtml(basePath, "All logs"));
  /external/llvm/tools/llvm-cov/
CodeCoverage.cpp 315 clEnumValN(CoverageViewOptions::OutputFormat::HTML, "html",
316 "HTML output"),
378 case CoverageViewOptions::OutputFormat::HTML:
380 error("Color output cannot be disabled when generating html.");
588 if (ViewOpts.Format == CoverageViewOptions::OutputFormat::HTML)
589 error("HTML output for summary reports is not yet supported.");
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
HtmlTree.java 16 package com.google.android.mail.common.html.parser;
35 * HtmlTree represents a parsed and well-formed html text, it provides
39 * We don't really build a html tree data structure. Instead, for
52 // http://www.w3.org/TR/html4/struct/text.html#h-9.1
101 /** Contains html nodes */
114 /** The html string (lazy creation) */
115 private String html; field in class:HtmlTree
190 * Gets the entire html.
197 * Gets the entire html, if wrapSize is > 0, it tries to do wrapping at the
201 if (html == null)
    [all...]
  /prebuilts/go/darwin-x86/src/text/tabwriter/
tabwriter.go 9 // http://nickgravgaard.com/elastictabstops/index.html.
69 // If a Writer is configured to filter HTML, HTML tags and entities
85 // inside an HTML tag or inside an escaped text segment, formfeed
105 endChar byte // terminating char of escaped sequence (Escape for escapes, '>', ';' for HTML tags/entities, or 0)
130 // position pos; html tags and entities are excluded from this width if html
148 // Ignore html tags and treat entities (starting with '&'
421 // Terminate escaped mode. If the escaped text was an HTML tag, its width
422 // is assumed to be zero for formatting purposes; if it was an HTML entity
    [all...]
  /prebuilts/go/linux-x86/src/text/tabwriter/
tabwriter.go 9 // http://nickgravgaard.com/elastictabstops/index.html.
69 // If a Writer is configured to filter HTML, HTML tags and entities
85 // inside an HTML tag or inside an escaped text segment, formfeed
105 endChar byte // terminating char of escaped sequence (Escape for escapes, '>', ';' for HTML tags/entities, or 0)
130 // position pos; html tags and entities are excluded from this width if html
148 // Ignore html tags and treat entities (starting with '&'
421 // Terminate escaped mode. If the escaped text was an HTML tag, its width
422 // is assumed to be zero for formatting purposes; if it was an HTML entity
    [all...]

Completed in 705 milliseconds

1 2 3 4 56 7 8 91011>>