OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:HtmlUtils
(Results
1 - 11
of
11
) sorted by null
/packages/apps/Contacts/tests/src/com/android/contacts/util/
HtmlUtilsTest.java
19
import com.android.contacts.util.
HtmlUtils
.StreamItemQuoteSpan;
31
* Tests for {@link
HtmlUtils
}.
39
* Test for {@link
HtmlUtils
#postprocess} specifically about trimming newlines.
51
assertNull(
HtmlUtils
.postprocess(getContext(), null));
57
HtmlUtils
.postprocess(getContext(), new SpannedString(text)).toString());
60
HtmlUtils
.postprocess(getContext(), new SpannableStringBuilder(text)).toString());
69
checkPostProcess(
HtmlUtils
.postprocess(getContext(), builder));
72
checkPostProcess(
HtmlUtils
.postprocess(getContext(), new SpannedString(builder)));
85
checkPostProcess(
HtmlUtils
.postprocess(getContext(), builder));
88
checkPostProcess(
HtmlUtils
.postprocess(getContext(), new SpannedString(builder)))
[
all
...]
/external/jsilver/src/com/google/streamhtmlparser/util/
JavascriptTokenBuffer.java
111
if (
HtmlUtils
.isJavascriptWhitespace(input) &&
112
HtmlUtils
.isJavascriptWhitespace(getChar(-1))) {
196
if (
HtmlUtils
.isJavascriptWhitespace(getChar(-1))) {
200
for (position = end;
HtmlUtils
.isJavascriptIdentifier(getChar(position));
HtmlUtils.java
40
public final class
HtmlUtils
{
45
private
HtmlUtils
() {
51
* {@link
HtmlUtils
#parseContentAttributeForUrl(String)}.
368
* <p>We return {@link
HtmlUtils
.META_REDIRECT_TYPE} indicating whether the
400
* @return {@link
HtmlUtils
.META_REDIRECT_TYPE} indicating the presence
EntityResolver.java
204
if ((input == ';') || (
HtmlUtils
.isHtmlSpace(input))) {
/external/jsilver/src/com/google/streamhtmlparser/impl/
HtmlParserImpl.java
26
import com.google.streamhtmlparser.util.
HtmlUtils
;
242
if (
HtmlUtils
.isAttributeJavascript(attribute)) {
245
if (
HtmlUtils
.isAttributeUri(attribute)) {
248
if (
HtmlUtils
.isAttributeStyle(attribute)) {
254
HtmlUtils
.META_REDIRECT_TYPE redirectType =
255
HtmlUtils
.parseContentAttributeForUrl(getValue());
256
if (redirectType ==
HtmlUtils
.META_REDIRECT_TYPE.URL_START ||
257
redirectType ==
HtmlUtils
.META_REDIRECT_TYPE.URL)
320
return (
HtmlUtils
.parseContentAttributeForUrl(getValue()) ==
321
HtmlUtils
.META_REDIRECT_TYPE.URL_START)
[
all
...]
JavascriptParserImpl.java
22
import com.google.streamhtmlparser.util.
HtmlUtils
;
185
if (
HtmlUtils
.isJavascriptWhitespace(ccBuffer.getChar(position))) {
227
if (lastIdentifier != null &&
HtmlUtils
252
if (
HtmlUtils
.isJavascriptWhitespace(ccBuffer.getChar(-2))) {
GenericParser.java
23
import com.google.streamhtmlparser.util.
HtmlUtils
;
115
HtmlUtils
.encodeCharForAscii(input),
/packages/apps/Contacts/src/com/android/contacts/util/
StreamItemEntry.java
162
mDecodedText =
HtmlUtils
.fromHtml(context, mText, imageGetter, null);
165
mDecodedComments =
HtmlUtils
.fromHtml(context, mComments, imageGetter, null);
HtmlUtils.java
38
public class
HtmlUtils
{
/packages/apps/Contacts/src/com/android/contacts/socialwidget/
SocialWidgetProvider.java
26
import com.android.contacts.util.
HtmlUtils
;
207
CharSequence status =
HtmlUtils
.fromHtml(context, streamItem.getText());
/packages/apps/Contacts/src/com/android/contacts/detail/
ContactDetailDisplayUtils.java
25
import com.android.contacts.util.
HtmlUtils
;
238
snippet =
HtmlUtils
.fromHtml(context, firstEntry.getText());
Completed in 525 milliseconds