Home | History | Annotate | Download | only in util

Lines Matching refs:entity

28  * entity which we will discard.
52 * <li><code>&&lt;html-entity&gt;;</code> where
53 * <code>&lt;html-entity&gt;</code> is one of <code>lt</code>,
67 * trailing characters before the start of an entity.
70 * characters part of an entity.
72 * an entity. The caller can then invoke <code>getEntity</code>
99 * How many characters to store as we are processing an entity. Once we
100 * reach that size, we know the entity is definitely invalid. The size
118 /** Storage for received until characters until an HTML entity is complete. */
125 private String entity;
128 * Constructs an entity resolver that is initially empty and
135 entity = "";
139 * Constructs an entity resolver that is an exact copy of
143 * @param aEntityResolver the entity resolver to copy
148 entity = aEntityResolver.entity;
159 entity = "";
176 * Returns the decoded HTML Entity. Should only be called
179 * @return the decoded HTML Entity or an empty {@code String} if
183 return entity;
193 * processing of the entity.
206 entity = convertEntity(input);
212 entity = uncovertedInput(input);
222 * Performs the decoding of a complete HTML entity and saves the
228 * conversions since it is the end delimiter of the entity
229 * @return The decoded entity or the original input if we could not decode it.