HomeSort by relevance Sort by last modified time
    Searched refs:HTML (Results 1 - 25 of 236) sorted by null

1 2 3 4 5 6 7 8 910

  /packages/apps/UnifiedEmail/src/com/android/mail/lib/html/parser/
HTML4.java 16 package com.android.mail.lib.html.parser;
27 * HTML4 contains HTML 4.0 definitions and specifications
29 * See http://www.w3.org/TR/html401/index/elements.html
30 * See http://www.w3.org/TR/html401/index/attributes.html
37 private static final HashMap<String,HTML.Element> elements = Maps.newHashMap();
40 private static final HashMap<String,HTML.Attribute> attributes = Maps.newHashMap();
45 * @see com.google.common.html.parser.HtmlWhitelist#lookupElement(String)
47 public HTML.Element lookupElement(String name) {
52 * @see com.google.common.html.parser.HtmlWhitelist#lookupAttribute(String)
54 public HTML.Attribute lookupAttribute(String name)
    [all...]
HtmlWhitelist.java 16 package com.android.mail.lib.html.parser;
20 * looking up accepted HTML elements and attributes.
26 * Looks up the HTML.Element object associated with the given element tag
30 * @return The HTML.Element object associated with the given element tag name,
33 HTML.Element lookupElement(String name);
36 * Looks up the HTML.Attribute object associated with the given attribute
40 * @return The HTML.Attribute object associated with the given attribute name,
43 HTML.Attribute lookupAttribute(String name);
HTML.java 16 package com.android.mail.lib.html.parser;
23 * HTML class defines Element and Attribute classes.
27 public final class HTML {
30 * Html element
121 * @return just name, not proper HTML
133 if (o instanceof HTML.Element) {
134 HTML.Element that = (HTML.Element) o;
147 * Html attribute
213 * @return Element name (name only, not proper HTML)
    [all...]
HtmlTreeBuilder.java 16 package com.android.mail.lib.html.parser;
19 import com.android.mail.lib.html.parser.HtmlDocument.EndTag;
39 private final List<HTML.Element> stack = new ArrayList<HTML.Element>();
44 /** Gets the built html tree */
72 HTML.Element element = t.getElement();
98 HTML.Element element = t.getElement();
129 private int findStartTag(HTML.Element element) {
131 HTML.Element e = stack.get(i);
144 HTML.Element element = pop()
298 String html = new String(ByteStreams.toByteArray(System.in)); local
    [all...]
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
HTML4.java 17 package com.google.android.mail.common.html.parser;
28 * HTML4 contains HTML 4.0 definitions and specifications
30 * See http://www.w3.org/TR/html401/index/elements.html
31 * See http://www.w3.org/TR/html401/index/attributes.html
38 private static final HashMap<String,HTML.Element> elements = Maps.newHashMap();
41 private static final HashMap<String,HTML.Attribute> attributes = Maps.newHashMap();
46 * @see com.google.common.html.parser.HtmlWhitelist#lookupElement(String)
48 public HTML.Element lookupElement(String name) {
53 * @see com.google.common.html.parser.HtmlWhitelist#lookupAttribute(String)
55 public HTML.Attribute lookupAttribute(String name)
    [all...]
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);
HTML.java 17 package com.google.android.mail.common.html.parser;
24 * HTML class defines Element and Attribute classes.
28 public final class HTML {
31 * Html element
122 * @return just name, not proper HTML
134 if (o instanceof HTML.Element) {
135 HTML.Element that = (HTML.Element) o;
148 * Html attribute
214 * @return Element name (name only, not proper HTML)
    [all...]
HtmlTreeBuilder.java 16 package com.google.android.mail.common.html.parser;
19 import com.google.android.mail.common.html.parser.HtmlDocument.EndTag;
39 private final List<HTML.Element> stack = new ArrayList<HTML.Element>();
44 /** Gets the built html tree */
72 HTML.Element element = t.getElement();
98 HTML.Element element = t.getElement();
129 private int findStartTag(HTML.Element element) {
131 HTML.Element e = stack.get(i);
144 HTML.Element element = pop()
298 String html = new String(ByteStreams.toByteArray(System.in)); local
    [all...]
  /external/chromium_org/third_party/icu/source/test/perf/perldriver/
Output.pm 15 my $outType = "HTML";
16 my $html = "noName";
52 print HTML "<td class=\"";
54 print HTML "value";
56 print HTML "worse";
58 print HTML "\">";
60 print HTML formatPercent(2, $mean);
62 print HTML formatNumber(2, $mult, $mean);
64 print HTML "</td>\n";
65 print HTML "<td class=\""
    [all...]
  /external/icu/icu4c/source/test/perf/perldriver/
Output.pm 15 my $outType = "HTML";
16 my $html = "noName";
52 print HTML "<td class=\"";
54 print HTML "value";
56 print HTML "worse";
58 print HTML "\">";
60 print HTML formatPercent(2, $mean);
62 print HTML formatNumber(2, $mult, $mean);
64 print HTML "</td>\n";
65 print HTML "<td class=\""
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
Method.java 31 * <li>HTML
59 * The output method type for HTML documents: <tt>html</tt>.
61 public static final String HTML = "html";
78 * XML or HTML type (depending on the first tag in the output being html or
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLTreeBuilderSimulator.h 29 #include "core/html/parser/HTMLParserOptions.h"
42 HTML,
62 bool inForeignContent() const { return m_namespaceStack.last() != HTML; }
  /external/clang/docs/tools/
Makefile 17 # the POD files to HTML only and keep them in the src directories. It must also
21 DST_HTML_DIR=html/
27 all:: html man ps
30 rm -f pod2htm*.*~~ $(HTML) $(MAN) $(PS)
55 HTML := $(patsubst $(SRC_DOC_DIR)%.pod, $(DST_HTML_DIR)%.html, $(POD))
62 INSTALL_TARGETS := install-html install-man install-ps
66 .SUFFIXES: .html .pod .1 .ps
68 $(DST_HTML_DIR)%.html: %.pod $(DST_HTML_DIR)/.dir
79 html: $(HTML
    [all...]
  /external/chromium_org/third_party/markupsafe/
_native.py 16 """Convert the characters &, <, >, ' and " in string s to HTML-safe
18 such characters in HTML. Marks return value as markup string.
  /external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
AwJavaBridgeTest.java 30 final String HTML = "<html>Hello World</html>";
48 HTML, "text/html", false);
63 loadDataSync(awContents, mContentsClient.getOnPageFinishedHelper(), HTML,
64 "text/html", false);
  /external/clang/docs/
Makefile 32 HTML := $(wildcard $(PROJ_SRC_DIR)/*.html) \
37 EXTRA_DIST := $(HTML) $(DOXYFILES) llvm.css CommandGuide img
39 .PHONY: install-html install-doxygen doxygen generated
43 install_targets += install-html
54 install-html: $(PROJ_OBJ_DIR)/html.tar.gz
55 $(Echo) Installing HTML documentation
56 $(Verb) $(MKDIR) $(DESTDIR)$(PROJ_docsdir)/html
57 $(Verb) $(MKDIR) $(DESTDIR)$(PROJ_docsdir)/html/im
    [all...]
make.bat 21 echo. html to make standalone HTML files
22 echo. dirhtml to make HTML files named index.html in directories
23 echo. singlehtml to make a single large HTML file
26 echo. htmlhelp to make HTML files and a HTML help project
27 echo. qthelp to make HTML files and a qthelp project
28 echo. devhelp to make HTML files and a Devhelp project
47 if "%1" == "html" (
    [all...]
  /external/chromium_org/native_client_sdk/src/doc/
Makefile 24 @echo " html to make standalone HTML files"
35 html:
36 $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html
38 @echo "Build finished. The HTML pages are in $(BUILDDIR)/html."
59 @echo "Build finished. The HTML pages are in $(CHROMESITE_BUILDDIR)"
  /external/chromium_org/third_party/mesa/src/src/gallium/docs/
make.bat 17 echo. html to make standalone HTML files
18 echo. dirhtml to make HTML files named index.html in directories
21 echo. htmlhelp to make HTML files and a HTML help project
22 echo. qthelp to make HTML files and a qthelp project
36 if "%1" == "html" (
37 %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
    [all...]
  /external/clang/include/clang/Index/
CommentToXML.h 36 SmallVectorImpl<char> &HTML,
  /external/mesa3d/src/gallium/docs/
make.bat 17 echo. html to make standalone HTML files
18 echo. dirhtml to make HTML files named index.html in directories
21 echo. htmlhelp to make HTML files and a HTML help project
22 echo. qthelp to make HTML files and a qthelp project
36 if "%1" == "html" (
37 %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
    [all...]
  /external/clang/docs/analyzer/
make.bat 21 echo. html to make standalone HTML files
22 echo. dirhtml to make HTML files named index.html in directories
23 echo. singlehtml to make a single large HTML file
26 echo. htmlhelp to make HTML files and a HTML help project
27 echo. qthelp to make HTML files and a qthelp project
28 echo. devhelp to make HTML files and a Devhelp project
47 if "%1" == "html" (
    [all...]
  /external/llvm/docs/
make.bat 21 echo. html to make standalone HTML files
22 echo. dirhtml to make HTML files named index.html in directories
23 echo. singlehtml to make a single large HTML file
26 echo. htmlhelp to make HTML files and a HTML help project
27 echo. qthelp to make HTML files and a qthelp project
28 echo. devhelp to make HTML files and a Devhelp project
47 if "%1" == "html" (
    [all...]
  /external/chromium_org/third_party/icu/source/test/perf/collationperf/
CollPerf.pl 140 # Print the results in a HTML page
148 my $html = localtime;
149 $html =~ s/://g; # ':' illegal
150 $html =~ s/\s*\d+$//; # delete year
151 $html =~ s/^\w+\s*//; # delete dow
152 $html = "CollationPerformance $html.html";
153 $html = "../results/" . $html;
    [all...]
  /external/icu/icu4c/source/test/perf/collationperf/
CollPerf.pl 140 # Print the results in a HTML page
148 my $html = localtime;
149 $html =~ s/://g; # ':' illegal
150 $html =~ s/\s*\d+$//; # delete year
151 $html =~ s/^\w+\s*//; # delete dow
152 $html = "CollationPerformance $html.html";
153 $html = "../results/" . $html;
    [all...]

Completed in 404 milliseconds

1 2 3 4 5 6 7 8 910