Searched refs:HTML (Results 26 - 50 of 76) sorted by relevance

1234

/external/emma/core/java12/com/vladium/emma/report/html/doc/
H A DTag.java22 public static final Tag HTML = new TagImpl ("HTML"); field in class:Tag
H A DHTMLDocument.java30 super (Tag.HTML, AttributeSet.create ());
/external/chromium_org/third_party/libxml/src/
H A Dlibxml2.spec1 Summary: Library providing XML and HTML support
14 to read, modify and write XML and HTML files. There is DTDs support
24 Summary: Libraries, includes, etc. to develop XML and HTML applications
33 to read, modify and write XML and HTML files. There is DTDs support
54 to read, modify and write XML and HTML files. There is DTDs support
H A DtestHTML.c2 * testHTML.c : a small tester program for HTML input.
718 * build an HTML tree from a string;
856 printf("\tParse the HTML files and output the result of the parsing\n");
877 printf("%s : HTML support not compiled in\n", argv[0]);
/external/jsilver/src/com/google/clearsilver/jsilver/autoescape/
H A DAutoEscapeContext.java55 * <td>HtmlParser.Mode.HTML</td>
59 * <td>HtmlParser.Mode.HTML</td>
102 CONTENT_TYPE_LIST.put("text/html", HtmlParser.Mode.HTML);
103 CONTENT_TYPE_LIST.put("text/plain", HtmlParser.Mode.HTML);
241 "Attempting to start HTML parser in unsupported mode" + mode, resourceName);
256 throw new JSilverAutoEscapingException("Attempting to start HTML parser in invalid mode"
300 * encounters the include command, and {@code insertText} will cause the HTML parser to switch its
365 // Inside an HTML tag or attribute name
370 // Inside an HTML attribute value
373 // Default is assumed to be HTML bod
478 HTML("html", ESCAPE_AUTO_HTML), JS("js", ESCAPE_AUTO_JS), STYLE("css", ESCAPE_AUTO_STYLE), JS_UNQUOTED( enum constant in enum:AutoEscapeContext.AutoEscapeState
[all...]
/external/chromium_org/ui/base/clipboard/
H A Dclipboard_aura.cc31 HTML = 1 << 1, enumerator in enum:ui::__anon16617::AuraClipboardFormat
61 format_ |= HTML;
73 format_ |= HTML;
118 // HTML markup data in UTF8 format.
204 else if (HasFormat(HTML))
210 // Reads HTML from the data at the top of clipboard stack.
221 if (!HasFormat(HTML))
467 return clipboard->IsFormatAvailable(HTML);
/external/clang/tools/libclang/
H A DCXComment.cpp389 SmallString<1024> HTML; local
391 ->convertCommentToHTML(FC, HTML, cxtu::getASTUnit(TU)->getASTContext());
392 return cxstring::createDup(HTML.str());
/external/chromium_org/ui/base/dragdrop/
H A Dos_exchange_data.cc112 if ((formats & HTML) != 0 && provider_->HasHtml())
H A Dos_exchange_data.h67 HTML = 1 << 5, enumerator in enum:ui::OSExchangeData::Format
225 // Adds a snippet of HTML. |html| is just raw html but this sets both
/external/e2fsprogs/lib/et/
H A DMakefile.in66 HTML=makeinfo --html --no-split
90 -$(Q) $(HTML) $(srcdir)/com_err.texinfo
/external/markdown/MarkdownTest/
H A DMarkdownTest.pl133 Flag to turn on using the command line 'tidy' tool to normalize HTML
/external/pcre/dist/
H A D132html3 # Script to turn PCRE man pages into HTML
69 This page is part of the PCRE HTML documentation. It was generated automatically
87 # (other) automated systems that translate man pages to HTML. Complain if
197 # A comment that starts "HTML" inserts literal HTML
199 elsif (/^\.\\"\s*HTML\s*(.*)/)
204 # A comment that starts < inserts that HTML at the end of the
/external/chromium_org/content/child/
H A Dsite_isolation_policy.cc104 // The content is blocked if it is sniffed as HTML/JSON/XML. When
234 // type claims it to be. For example, we apply a HTML sniffer for a document
242 SiteIsolationResponseMetaData::HTML) {
243 bucket_prefix = "SiteIsolation.XSD.HTML";
270 // This block is for plain text documents. We apply our HTML, XML,
275 bucket_prefix = "SiteIsolation.XSD.Plain.HTML";
310 return SiteIsolationResponseMetaData::HTML;
390 // as one of the HTML signatures, but it also appears in valid
392 // we do not want to block any JS, we exclude it from our HTML
426 // If we cannot find "<!--", we fail sniffing this as HTML
[all...]
/external/bison/djgpp/
H A Dconfig.bat45 set HTML=enabled variable
46 if not "%HTML%" == "enabled" goto SmallEnv
123 if "%1" == "withouthtml" set HTML=disabled variable
124 if "%1" == "withoutHTML" set HTML=disabled variable
125 if "%1" == "WITHOUTHTML" set HTML=disabled variable
126 if not "%HTML%" == "disabled" goto SmallEnv
153 if "%HTML%" == "enabled" echo --enable-html >> args
154 if "%HTML%" == "disabled" echo --disable-html >> args
161 set HTML= variable
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DOutputPropertiesFactory.java72 * This non-standard property key is used to set a value of "yes" if the href values for HTML serialization should
150 * This non-standard property key is used to set a value of "yes" if the href values for HTML serialization should
194 /** property file for default HTML properties */
196 /** property file for default UNKNOWN (Either XML or HTML, to be determined later) properties */
273 else if (method.equals(Method.HTML))
H A DCharInfo.java59 * The name of the HTML entities file.
87 /** This flag is an optimization for HTML entities. It false if entities
322 * special chars for XML (but not HTML!).
335 if (Method.HTML.equals(method)) {
338 // So we don't escape '<' in an attribute for HTML
351 * parsing and printing, primarily for HTML documents. '&amp;lt;' is an
/external/owasp/sanitizer/src/main/org/owasp/html/
H A DHtmlLexer.java40 * A flexible lexer for HTML.
41 * This is hairy code, but it is outside the TCB for the HTML sanitizer.
57 * Normalize case of names that are not name-spaced. This lower-cases HTML
244 /** Can the attribute appear in HTML without a value. */
264 /** The source of HTML character data. */
280 * contain unescaped HTML input.
352 // From HTML 5 section 8.1.2.6
616 // According to HTML 5 section 8.1.2.6
649 "Unexpectedly DONE while lexing HTML token stream");
/external/chromium_org/native_client_sdk/src/tools/
H A Dnacl_llvm.mk159 # HTML file generation
/external/harfbuzz_ng/test/shaping/
H A Dhb_test_tools.py37 class HTML: class in class:ColorFormatter
60 format = ColorFormatter.HTML
/external/jsilver/src/com/google/streamhtmlparser/impl/
H A DHtmlParserImpl.java302 // False when not inside an HTML attribute value
307 // Or when the HTML attribute is not of URI type.
353 case HTML:
373 * Resets the state of the parser to the initial state of parsing HTML.
377 resetMode(Mode.HTML);
386 * parsing of HTML attribute names and values where content we do not
391 * <li>We are at the start of the value of a URL-accepting HTML attribute. In
394 * to perform on the HTML attribute value. We avoid injecting fake data and
399 * change internal state to be now inside a non-quoted HTML attribute
497 * Starts recording the name of the HTML ta
[all...]
/external/chromium_org/chrome/third_party/chromevox/chromevox/injected/
H A Dmathjax_external_util.js126 MathJax.OutputJax['HTML-CSS']['idPostfix'];
415 var script = MathJax.HTML.Element('script', {type: typeString}, [math]);
/external/clang/tools/scan-build/
H A Dscan-build120 # GetHTMLRunDir - Construct an HTML directory name for the current sub-run.
1112 Specify the title used on generated HTML pages. If not specified, a default
1117 By default the output of scan-build is a set of HTML files. This option
1122 By default the output of scan-build is a set of HTML files. This option
1123 outputs the results as a set of HTML and .plist files.
1338 # HtmlEscape - HTML entity encode characters that are special in HTML
1367 my $HtmlDir; # Parent directory to store HTML files.
1650 # Determine the output directory for the HTML reports.
1719 # Postprocess the HTML director
[all...]
/external/chromium_org/third_party/WebKit/Tools/qunit/qunit/
H A Dqunit.js1192 return this.multiline ? this.HTML ? '<br />' : '\n' : this.HTML ? '&nbsp;' : ' ';
1198 if ( this.HTML )
1247 var open = QUnit.jsDump.HTML ? '&lt;' : '<',
1248 close = QUnit.jsDump.HTML ? '&gt;' : '>';
1283 HTML:false,//if true, entities are escaped ( <, >, \t, space and \n )
/external/chromium_org/third_party/qunit/src/
H A Dqunit.js1988 return this.multiline ? this.HTML ? "<br />" : "\n" : this.HTML ? "&nbsp;" : " ";
1996 if ( this.HTML ) {
2061 open = QUnit.jsDump.HTML ? "&lt;" : "<",
2062 close = QUnit.jsDump.HTML ? "&gt;" : ">",
2115 HTML: false,
/external/chromium_org/third_party/lcov/bin/
H A Dgenhtml22 # This script generates HTML output from .info files as created by the
51 # 2005-03-04 / Cal Pierog: added legend to HTML output, fixed coloring of
149 # Additional offsets used when converting branch coverage data to HTML
211 # HTML related prototypes
283 our $html_prolog_file; # Custom HTML prolog file (up to and including <body>)
284 our $html_epilog_file; # Custom HTML epilog file (from </body> onwards)
285 our $html_prolog; # Actual HTML prolog
286 our $html_epilog; # Actual HTML epilog
287 our $html_ext = "html"; # Extension for generated HTML files
294 our $charset = "UTF-8"; # Default charset for HTML page
[all...]

Completed in 1971 milliseconds

1234