Home
last modified time | relevance | path

Searched refs:HTML (Results 1 – 25 of 34) sorted by relevance

12

/packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
DHTML4.java38 private static final HashMap<String,HTML.Element> elements = Maps.newHashMap();
41 private static final HashMap<String,HTML.Attribute> attributes = Maps.newHashMap();
48 public HTML.Element lookupElement(String name) {
55 public HTML.Attribute lookupAttribute(String name) {
66 public static HTML.Element lookupElement(String name) { in lookupElement()
71 public static HTML.Attribute lookupAttribute(String name) { in lookupAttribute()
79 public static Map<String, HTML.Element> getAllElements() { in getAllElements()
87 public static Map<String, HTML.Attribute> getAllAttributes() { in getAllAttributes()
92 private static HTML.Element addElement(String tag, String flags) { in addElement()
93 return addElement(tag, flags, HTML.Element.Flow.NONE); in addElement()
[all …]
DHtmlTreeBuilder.java39 private final List<HTML.Element> stack = new ArrayList<HTML.Element>();
72 HTML.Element element = t.getElement(); in visitTag()
98 HTML.Element element = t.getElement(); in visitEndTag()
129 private int findStartTag(HTML.Element element) { in findStartTag()
131 HTML.Element e = stack.get(i); in findStartTag()
144 HTML.Element element = pop(); in addMissingEndTag()
152 private void push(HTML.Element element) { in push()
157 private HTML.Element pop() { in pop()
196 HTML.Element element = tag.getElement(); in seeTag()
197 if (element.getType() == HTML.Element.TABLE_TYPE) { in seeTag()
[all …]
DHtmlDocument.java100 public static Tag createTag(HTML.Element element, List<TagAttribute> attributes) { in createTag()
108 public static Tag createTag(HTML.Element element, in createTag()
119 public static Tag createSelfTerminatingTag(HTML.Element element, in createSelfTerminatingTag()
128 public static Tag createSelfTerminatingTag(HTML.Element element, in createSelfTerminatingTag()
138 public static EndTag createEndTag(HTML.Element element) { in createEndTag()
145 public static EndTag createEndTag(HTML.Element element, String originalHtml) { in createEndTag()
152 public static TagAttribute createTagAttribute(HTML.Attribute attr, String value) { in createTagAttribute()
159 public static TagAttribute createTagAttribute(HTML.Attribute attr, in createTagAttribute()
505 private final HTML.Element element;
535 private Tag(HTML.Element element, List<TagAttribute> attributes, in Tag()
[all …]
DHtmlParser.java593 private final HashMap<String,HTML.Element> unknownElements = Maps.newHashMap();
599 private final HashMap<String,HTML.Attribute> unknownAttributes = Maps.newHashMap();
606 private HTML.Element lookupUnknownElement(String name) { in lookupUnknownElement()
608 HTML.Element result = unknownElements.get(name); in lookupUnknownElement()
610 result = new HTML.Element(name, in lookupUnknownElement()
611 HTML.Element.NO_TYPE, in lookupUnknownElement()
615 HTML.Element.Flow.NONE); in lookupUnknownElement()
626 private HTML.Attribute lookupUnknownAttribute(String name) { in lookupUnknownAttribute()
628 HTML.Attribute result = unknownAttributes.get(name); in lookupUnknownAttribute()
630 result = new HTML.Attribute(name, HTML.Attribute.NO_TYPE); in lookupUnknownAttribute()
[all …]
DHTML.java28 public final class HTML { class
134 if (o instanceof HTML.Element) { in equals()
135 HTML.Element that = (HTML.Element) o; in equals()
226 if (o instanceof HTML.Attribute) { in equals()
227 HTML.Attribute that = (HTML.Attribute) o; in equals()
DHtmlWhitelist.java34 HTML.Element lookupElement(String name); in lookupElement()
44 HTML.Attribute lookupAttribute(String name); in lookupAttribute()
DHtmlTree.java880 private static final Set<HTML.Element> BLANK_LINE_ELEMENTS =
911 HTML.Element element = tag.getElement();
943 HTML.Element element = endTag.getElement();
/packages/apps/Test/connectivity/sl4n/rapidjson/doc/
DDoxyfile.in300 # mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in
367 # instead of on a separate page (for HTML and Man pages) or section (for LaTeX
380 # to NO, structs, classes, and unions are shown on a separate page (for HTML and
975 # will make the HTML file larger and loading of large files a bit slower, you
983 # point to the HTML generated by the htags(1) tool instead of doxygen built-in
1058 # Configuration options related to the HTML output
1061 # If the GENERATE_HTML tag is set to YES doxygen will generate HTML output
1066 # The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a
1075 # generated HTML page (for example: .htm, .php, .asp).
1081 # The HTML_HEADER tag can be used to specify a user-defined HTML header file for
[all …]
Dfeatures.md45 …* Similar to [DOM](http://en.wikipedia.org/wiki/Document_Object_Model) for HTML/XML, RapidJSON can…
/packages/apps/LegacyCamera/jni/feature_mos/doc/
Dfeature_mos_API_doxyfile763 # will point to the HTML generated by the htags(1) tool instead of doxygen
800 # configuration options related to the HTML output
804 # generate HTML output.
808 # The HTML_OUTPUT tag is used to specify where the HTML docs will be put.
815 # each generated HTML page (for example: .htm,.php,.asp). If it is left blank
820 # The HTML_HEADER tag can be used to specify a personal HTML header for
821 # each generated HTML page. If it is left blank doxygen will generate a
826 # The HTML_FOOTER tag can be used to specify a personal HTML footer for
827 # each generated HTML page. If it is left blank doxygen will generate a
833 # style sheet that is used by each HTML page. It can be used to
[all …]
/packages/apps/LegacyCamera/jni/feature_stab/doc/
Ddbreg_API_doxyfile763 # will point to the HTML generated by the htags(1) tool instead of doxygen
800 # configuration options related to the HTML output
804 # generate HTML output.
808 # The HTML_OUTPUT tag is used to specify where the HTML docs will be put.
815 # each generated HTML page (for example: .htm,.php,.asp). If it is left blank
820 # The HTML_HEADER tag can be used to specify a personal HTML header for
821 # each generated HTML page. If it is left blank doxygen will generate a
826 # The HTML_FOOTER tag can be used to specify a personal HTML footer for
827 # each generated HTML page. If it is left blank doxygen will generate a
833 # style sheet that is used by each HTML page. It can be used to
[all …]
/packages/apps/Browser2/src/org/chromium/webview_shell/
DWebViewAnimationTestActivity.java22 private static final String HTML = "<html>" field in WebViewAnimationTestActivity
84 mWebView.loadDataWithBaseURL("http://foo.bar", HTML, "text/html", null, "http://foo.bar"); in onCreate()
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
DHtmlUtils.java33 import com.google.android.mail.common.html.parser.HTML;
124 HTML.Element element = tag.getElement(); in handleEnd()
DNotificationUtils.java66 import com.google.android.mail.common.html.parser.HTML;
1949 private static final HTML.Attribute ELIDED_TEXT_ATTRIBUTE =
1950 new HTML.Attribute(ELIDED_TEXT_ELEMENT_ATTRIBUTE_NAME, HTML.Attribute.NO_TYPE);
1971 final HTML.Element htmlElement = htmlTag.getElement(); in addNode()
/packages/apps/ManagedProvisioning/tools/bash/
Dcoverage.sh24 REPORT_TYPE=${1:-HTML}
/packages/inputmethods/LatinIME/dictionaries/
Dsl_wordlist.combined.gz1dictionary=main:sl,locale=sl,description=Slovenščina,date=1393228152, ...
Dhr_wordlist.combined.gz1dictionary=main:hr,locale=hr,description=Hrvatski,date=1393228135, ...
Den_US_wordlist.combined.gz
Den_GB_wordlist.combined.gz
Dit_wordlist.combined.gz
Dnl_wordlist.combined.gz
Den_wordlist.combined.gz
Dpt_BR_wordlist.combined.gz1dictionary=main:pt_br,locale=pt_BR,description=Português (Brasil),date ...
Dda_wordlist.combined.gz1dictionary=main:da,locale=da,description=Dansk,date=1393228134, ...
Dcs_wordlist.combined.gz1dictionary=main:cs,locale=cs,description=Čeština,date=1393228134, ...

12