HomeSort by relevance Sort by last modified time
    Searched refs:html (Results 76 - 100 of 1939) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/libbrillo/
gen_coverage_html.sh 22 genhtml --no-function-coverage -o html ./app.info || genhtml -o html ./app.info
  /external/libopus/doc/
Makefile.am 8 $(top_srcdir)/doc/header.html \
9 $(top_srcdir)/doc/footer.html \
12 EXTRA_DIST = customdoxygen.css Doxyfile.in footer.html header.html \
25 $(INSTALL) -d $(DESTDIR)$(docdir)/html/search
26 for f in `find html -type f \! -name "installdox"`; do \
35 $(RM) -r html
42 $(RM) -r $(DESTDIR)$(docdir)/html
build_oggdraft.sh 52 xml2rfc draft-ietf-codec-oggopus.xml --text --html
  /external/owasp/sanitizer/src/main/org/owasp/html/
HtmlTokenType.java 29 package org.owasp.html;
32 * Types of HTML tokens.
38 * An HTML or XML attribute name consisting of characters other than
42 /** An HTML value, possibly a quoted string. */
45 * An HTML bogus comment, XML Prologue, or XML processing instruction like
49 /** An HTML or XML style comment, <tt>&lt;!-- for example --></tt>. */
58 * A quoted string. Should not show up in well formed HTML, but may where
  /external/owasp/sanitizer/src/tests/org/owasp/html/
Benchmark.java 29 package org.owasp.html;
47 String html = Files.toString(new File(args[0]), Charsets.UTF_8); local
64 n += parseUsingLibhtmlparser(html);
70 n += sanitize(html).length();
76 n += sanitizeUsingPolicyBuilder(html).length();
84 n += parseUsingLibhtmlparser(html);
93 n += sanitize(html).length();
102 n += sanitizeUsingPolicyBuilder(html).length();
126 private static int parseUsingLibhtmlparser(String html) throws Exception {
128 Node node = parser.parse(new InputSource(new StringReader(html)));
    [all...]
  /external/swiftshader/third_party/LLVM/docs/tutorial/
Makefile 13 HTML := $(wildcard $(PROJ_SRC_DIR)/*.html)
15 EXTRA_DIST := $(HTML) index.html
16 HTML_DIR := $(DESTDIR)$(PROJ_docsdir)/html/tutorial
18 install-local:: $(HTML)
19 $(Echo) Installing HTML Tutorial Documentation
21 $(Verb) $(DataInstall) $(HTML) $(HTML_DIR)
23 $(Verb) $(DataInstall) $(PROJ_SRC_DIR)/index.html $(HTML_DIR)
30 $(Echo) "HTML : " '$(HTML)
    [all...]
  /external/wayland/
publish-doc 9 DOC_HTML=./doc/publican/Wayland/en-US/html/
11 [ -e "${DOC_HTML}" ] || (echo "HTML documentation failed to build at ${DOC_HTML}" && exit 1)
15 rsync --delete -avz ${DOC_HTML} freedesktop.org:/srv/wayland.freedesktop.org/www/docs/html/
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
HtmlWhitelist.java 17 package com.google.android.mail.common.html.parser;
21 * looking up accepted HTML elements and attributes.
27 * Looks up the HTML.Element object associated with the given element tag
31 * @return The HTML.Element object associated with the given element tag name,
34 HTML.Element lookupElement(String name);
37 * Looks up the HTML.Attribute object associated with the given attribute
41 * @return The HTML.Attribute object associated with the given attribute name,
44 HTML.Attribute lookupAttribute(String name);
  /art/tools/dmtracedump/
dumpdir.sh 9 G=$2/`echo $F | sed "s/.*\\///g"`.html
  /compatibility/cdd/
cdd_gen.sh 3 # Build the CDD HTML and PDF from the source files.
59 wkhtmltopdf -B 1in -T 1in -L .75in -R .75in page $filename.html --footer-html source/android-cdd-footer.html /tmp/$filename-body.pdf
60 wkhtmltopdf -s letter -B 0in -T 0in -L 0in -R 0in cover source/android-cdd-cover.html /tmp/$filename-cover.pdf
  /external/autotest/frontend/client/src/autotest/afe/
IButton.java 13 public ButtonImpl(String html) {
14 super(html);
  /external/sonivox/jet_tools/JetCreator/
JetHelp.py 24 import wx.html
29 html1 = wx.html.HtmlWindow(frame, -1)
  /external/libcap/doc/
Makefile 23 .PHONY: html
24 html:
25 mkdir -p html
29 groff -man -Thtml $$man > html/$$man.html ; \
48 rm -rf html
  /external/libvpx/libvpx/
docs.mk 38 CLEAN-OBJS += doxyfile $(wildcard docs/html/*)
39 docs/html/index.html: doxyfile $(CODEC_DOX) $(TXT_DOX)
42 DOCS-yes += docs/html/index.html
44 DIST-DOCS-yes = $(wildcard docs/html/*)
  /external/scapy/doc/scapy/
BuildDoc.bat 18 mkdir html doctrees pickle >nul 2>&1
21 sphinx-build -b html -d _build/doctrees . _build/html
Makefile 14 .PHONY: help clean html web pickle htmlhelp latex changes linkcheck
18 @echo " html to make standalone HTML files"
20 @echo " htmlhelp to make HTML files and a HTML help project"
28 html:
29 mkdir -p _build/html _build/doctrees
30 $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) _build/html
32 @echo "Build finished. The HTML pages are in _build/html.
    [all...]
  /art/tools/ahat/src/main/com/android/ahat/
HtmlDoc.java 24 * An Html implementation of Doc.
38 ps.println("<!DOCTYPE html>");
39 ps.println("<html>");
41 ps.format("<title>%s</title>\n", title.html());
51 ps.print(DocString.text(String.format(format, args)).html());
57 ps.format("<div class=\"menu\">%s</div>", string.html());
63 ps.print(DocString.text(title).html());
69 ps.print(string.html());
76 ps.print(str.html());
90 ps.format("<th>%s</th>", columns[i].heading.html());
    [all...]
  /external/owasp/sanitizer/distrib/lib/
owasp-java-html-sanitizer.jar 
  /external/jacoco/org.jacoco.cli.test/src/org/jacoco/cli/internal/commands/
ReportTest.java 6 * http://www.eclipse.org/legal/epl-v10.html
115 File html = new File(tmp.getRoot(), "coverage"); local
118 "./src", "--html", html.getAbsolutePath());
121 assertTrue(html.isDirectory());
122 assertTrue(new File(html,
123 "org.jacoco.cli.internal.commands/ReportTest.html").isFile());
124 assertTrue(new File(html,
125 "org.jacoco.cli.internal.commands/ReportTest.java.html")
132 File html = new File(tmp.getRoot(), "coverage") local
    [all...]
  /external/autotest/client/common_lib/cros/
interactive_xmlrpc_server.py 43 self._chrome.browser.platform.http_server.UrlOf('shell.html'))
48 def set_output(self, html):
51 @param html: HTML document to replace tab contents with.
56 # JSON does a better job of escaping HTML for JavaScript than we could
58 html_escaped = json.dumps(html)
68 def append_output(self, html):
69 """Append HTML to the contents of the tab.
71 @param html: HTML to append to the existing tab contents
    [all...]
  /external/swiftshader/third_party/LLVM/docs/CommandGuide/
Makefile 13 # the POD files to HTML only and keep them in the src directories. It must also
17 DST_HTML_DIR=html/
22 all:: html man ps
25 rm -f pod2htm*.*~~ $(HTML) $(MAN) $(PS)
47 HTML := $(patsubst $(SRC_DOC_DIR)%.pod, $(DST_HTML_DIR)%.html, $(POD))
58 .SUFFIXES: .html .pod .1 .ps
60 $(DST_HTML_DIR)%.html: %.pod $(DST_HTML_DIR)/.dir
71 html: $(HTML)
    [all...]
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/page/
TablePage.java 6 * http://www.eclipse.org/legal/epl-v10.html
12 package org.jacoco.report.internal.html.page;
20 import org.jacoco.report.internal.html.HTMLElement;
21 import org.jacoco.report.internal.html.IHTMLReportContext;
22 import org.jacoco.report.internal.html.resources.Resources;
23 import org.jacoco.report.internal.html.table.ITableItem;
  /external/python/cpython2/Doc/
Makefile 16 .PHONY: help build html htmlhelp latex text changes linkcheck \
23 @echo " html to make standalone HTML files"
24 @echo " htmlview to open the index page built by the html target in your browser"
25 @echo " htmlhelp to make HTML files and a HTML help project"
43 html: BUILDER = html
44 html: build
45 @echo "Build finished. The HTML pages are in build/html.
    [all...]
  /external/python/cpython3/Doc/
Makefile 16 .PHONY: help build html htmlhelp latex text changes linkcheck \
24 @echo " html to make standalone HTML files"
25 @echo " htmlview to open the index page built by the html target in your browser"
26 @echo " htmlhelp to make HTML files and a HTML help project"
44 html: BUILDER = html
45 html: build
46 @echo "Build finished. The HTML pages are in build/html.
    [all...]
  /packages/apps/UnifiedEmail/tests/src/com/android/mail/utils/
NotificationUtilsTest.java 23 import com.google.android.mail.common.html.parser.HtmlTree;
32 final String html = "<body style=3D=22margin:0; padding:0;=22>" local
36 + " html =7B -webkit-text-size-adjust:none; =7D</style>"
39 // Get the html "tree" for this message body
40 final HtmlTree htmlTree = Utils.getHtmlTree(html);
58 final String html = "<body style=3D=22margin:0; padding:0;=22>" local
62 + " html =7B -webkit-text-size-adjust:none; =7D"
63 + " <style>html =7B -webkit-text-size-adjust:none; =7D</style></style>"
66 // Get the html "tree" for this message body
67 final HtmlTree htmlTree = Utils.getHtmlTree(html);
    [all...]

Completed in 447 milliseconds

1 2 34 5 6 7 8 91011>>