- Sort Score
- Num 10 results
- Language All
Results 1 - 6 of 6 for htmlEscaper (0.11 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
android/guava/src/com/google/common/html/HtmlEscapers.java
* escapes only the following five ASCII characters: {@code '"&<>}. */ public static Escaper htmlEscaper() { return HTML_ESCAPER; } // For each xxxEscaper() method, please add links to external reference pages // that are considered authoritative for the behavior of that escaper. private static final Escaper HTML_ESCAPER = Escapers.builder() .addEscape('"', """)Created: 2026-04-03 12:43 - Last Modified: 2024-12-21 03:10 - 3K bytes - Click Count (0) -
android/guava/src/com/google/common/escape/package-info.java
* {@link Escaper}. * * <p>Additional escapers implementations are found in the applicable packages: {@link * com.google.common.html.HtmlEscapers} in {@code com.google.common.html}, {@link * com.google.common.xml.XmlEscapers} in {@code com.google.common.xml}, and {@link * com.google.common.net.UrlEscapers} in {@code com.google.common.net}. *Created: 2026-04-03 12:43 - Last Modified: 2024-12-21 14:50 - 1.3K bytes - Click Count (0) -
android/guava/src/com/google/common/escape/Escaper.java
* using either of these classes, please contact the Java libraries team for advice. * * <p>Popular escapers are defined as constants in classes like {@link * com.google.common.html.HtmlEscapers} and {@link com.google.common.xml.XmlEscapers}. To create * your own escapers, use {@link CharEscaperBuilder}, or extend {@code CharEscaper} or {@code * UnicodeEscaper}. * * @author David Beaumont * @since 15.0Created: 2026-04-03 12:43 - Last Modified: 2025-02-13 15:45 - 4.7K bytes - Click Count (0) -
android/guava/src/com/google/common/escape/CharEscaper.java
* <p>A {@code CharEscaper} instance is required to be stateless, and safe when used concurrently by * multiple threads. * * <p>Popular escapers are defined as constants in classes like {@link * com.google.common.html.HtmlEscapers} and {@link com.google.common.xml.XmlEscapers}. To create * your own escapers extend this class and implement the {@link #escape(char)} method. * * @author Sven Mawson * @since 15.0 */ @GwtCompatibleCreated: 2026-04-03 12:43 - Last Modified: 2025-02-13 15:45 - 6.7K bytes - Click Count (0) -
api/go1.txt
pkg html/template, const ErrRangeLoopReentry ErrorCode pkg html/template, const ErrSlashAmbig ErrorCode pkg html/template, const OK ErrorCode pkg html/template, func HTMLEscape(io.Writer, []uint8) pkg html/template, func HTMLEscapeString(string) string pkg html/template, func HTMLEscaper(...interface{}) string pkg html/template, func JSEscape(io.Writer, []uint8) pkg html/template, func JSEscapeString(string) string
Created: 2026-04-07 11:13 - Last Modified: 2013-08-14 18:58 - 1.7M bytes - Click Count (0) -
android/guava/src/com/google/common/escape/UnicodeEscaper.java
* <p>A {@code UnicodeEscaper} instance is required to be stateless, and safe when used concurrently * by multiple threads. * * <p>Popular escapers are defined as constants in classes like {@link * com.google.common.html.HtmlEscapers} and {@link com.google.common.xml.XmlEscapers}. To create * your own escapers extend this class and implement the {@link #escape(int)} method. * * @author David Beaumont * @since 15.0 */ @GwtCompatibleCreated: 2026-04-03 12:43 - Last Modified: 2026-01-24 04:06 - 13.2K bytes - Click Count (0)