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

1 2 3 4 5 6 7 8

  /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/icu4c/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/inspector/
combine-javascript-resources.pl 27 # the script tags in the head of an input HTML file.
42 'input-html=s' => \$htmlFile);
45 print "Usage: $0 --input-html <path> --output-dir path --output-script-name <name>\n";
54 open HTML, $htmlFile or die;
55 $htmlContents = <HTML>;
56 close HTML;
79 open HTML, ">", "$outputDirectory/" . basename($htmlFile) or die "Can't open $outputDirectory/" . basename($htmlFile) . ": $!";
80 print HTML $htmlContents;
81 close HTML;
  /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/chromium_org/third_party/jinja2/_markupsafe/
_native.py 15 """Convert the characters &, <, >, ' and " in string s to HTML-safe
17 such characters in HTML. Marks return value as markup string.
  /external/chromium/chrome/browser/chromeos/panels/
panel_browsertest.cc 32 const std::string HTML =
33 "<html><head><title>PanelOpen</title></head>"
40 "</body></html>";
41 GURL url("data:text/html," + HTML);
70 const std::string HTML =
71 "<html><head><title>PanelOpen</title></head>"
78 "</body></html>";
79 GURL url("data:text/html," + HTML);
    [all...]
  /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/clang/include/clang/StaticAnalyzer/Core/
PathDiagnosticConsumers.h 36 CREATE_CONSUMER(HTML)
  /external/libvpx/libvpx/examples/includes/HTML-Toc-0.91/
TocUpdator.pm 1 #==== HTML::TocUpdator ========================================================
2 # function: Update 'HTML::Toc' table of contents.
6 package HTML::TocUpdator;
10 use HTML::TocInsertor;
18 @ISA = qw(HTML::TocInsertor);
35 #--- HTML::TocUpdator::new() --------------------------------------------------
57 #--- HTML::TocUpdator::_deinitializeUpdatorBatch() --------------------------
71 #--- HTML::TokenUpdator::_doesHashEqualHash() ---------------------------------
112 #--- HTML::TokenUpdator::_doesTagExistInArray() -------------------------------
139 if (HTML::TocUpdator::_doesHashEqualHash
    [all...]
TocInsertor.pm 2 # function: Insert Table of Contents HTML::Toc, generated by
3 # HTML::TocGenerator.
9 package HTML::TocInsertor;
14 use HTML::TocGenerator;
22 @ISA = qw(HTML::TocGenerator);
44 #--- HTML::TocInsertor::new() -------------------------------------------------
64 #--- HTML::TocInsertor::_deinitializeOutput() ---------------------------------
81 #--- HTML::TocInsertor::_initializeOutput() -----------------------------------
121 #--- HTML::TocInsertor::_deinitializeInsertorBatch() --------------------------
151 #--- HTML::TocInsertor::_initializeInsertorBatch() ---------------------------
    [all...]
TocGenerator.pm 1 #=== HTML::TocGenerator =======================================================
2 # function: Generate 'HTML::Toc' table of contents.
6 package HTML::TocGenerator;
10 use HTML::Parser;
18 @ISA = qw(HTML::Parser);
71 #--- HTML::TocGenerator::new() ------------------------------------------------
93 #--- HTML::TocGenerator::_deinitializeBatch() ---------------------------------
101 #--- HTML::TocGenerator::_deinitializeExtenderBatch() -------------------------
115 #--- HTML::TocGenerator::_deinitializeGeneratorBatch() ------------------------
125 #--- HTML::TocGenerator::_doesHashContainHash() ------------------------------
    [all...]
  /external/clang/docs/
Makefile 27 HTML := $(wildcard $(PROJ_SRC_DIR)/*.html) \
32 EXTRA_DIST := $(HTML) $(DOXYFILES) llvm.css CommandGuide img
34 .PHONY: install-html install-doxygen doxygen generated
38 install_targets += install-html
49 install-html: $(PROJ_OBJ_DIR)/html.tar.gz
50 $(Echo) Installing HTML documentation
51 $(Verb) $(MKDIR) $(DESTDIR)$(PROJ_docsdir)/html
52 $(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/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/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...]

Completed in 1624 milliseconds

1 2 3 4 5 6 7 8