/cts/tests/tests/text/src/android/text/cts/ |
SpannableStringBuilderSpanTest.java | 34 private SpanSet mSpanSet = new SpanSet(); 35 private SpanSet mReplacementSpanSet = new SpanSet(); 145 if (startStyle == SpanSet.INSIDE && endStyle == SpanSet.INSIDE && 157 case SpanSet.BEFORE: 160 case SpanSet.INSIDE: 185 case SpanSet.AFTER: 191 case SpanSet.BEFORE [all...] |
/external/chromium_org/third_party/icu/source/common/ |
unisetspan.h | 102 UnicodeSet spanSet; 105 // Same as spanSet, plus characters that start or end strings. 150 return spanSet.contains(c);
|
unisetspan.cpp | 203 : spanSet(0, 0x10ffff), pSpanNotSet(NULL), strings(setStrings), 208 spanSet.retainAll(set); 212 pSpanNotSet=&spanSet; 231 spanLength=spanSet.span(s16, length16, USET_SPAN_CONTAINED); 256 spanSet.freeze(); 310 spanLength=spanSet.span(s16, length16, USET_SPAN_CONTAINED); 318 spanLength=length16-spanSet.spanBack(s16, length16, USET_SPAN_CONTAINED); 334 spanLength=spanSet.spanUTF8((const char *)s8, length8, USET_SPAN_CONTAINED); 338 spanLength=length8-spanSet.spanBackUTF8((const char *)s8, length8, USET_SPAN_CONTAINED); 391 : spanSet(otherStringSpan.spanSet), pSpanNotSet(NULL), strings(newParentSetStrings) [all...] |
/external/icu4c/common/ |
unisetspan.h | 102 UnicodeSet spanSet; 105 // Same as spanSet, plus characters that start or end strings. 150 return spanSet.contains(c);
|
unisetspan.cpp | 205 : spanSet(0, 0x10ffff), pSpanNotSet(NULL), strings(setStrings), 210 spanSet.retainAll(set); 214 pSpanNotSet=&spanSet; 233 spanLength=spanSet.span(s16, length16, USET_SPAN_CONTAINED); 258 spanSet.freeze(); 312 spanLength=spanSet.span(s16, length16, USET_SPAN_CONTAINED); 320 spanLength=length16-spanSet.spanBack(s16, length16, USET_SPAN_CONTAINED); 336 spanLength=spanSet.spanUTF8((const char *)s8, length8, USET_SPAN_CONTAINED); 340 spanLength=length8-spanSet.spanBackUTF8((const char *)s8, length8, USET_SPAN_CONTAINED); 393 : spanSet(otherStringSpan.spanSet), pSpanNotSet(NULL), strings(newParentSetStrings) [all...] |
/frameworks/base/core/java/android/text/ |
SpanSet.java | 30 public class SpanSet<E> { 39 SpanSet(Class<? extends E> type) {
|
TextLine.java | 60 private final SpanSet<MetricAffectingSpan> mMetricAffectingSpanSpanSet = 61 new SpanSet<MetricAffectingSpan>(MetricAffectingSpan.class); 62 private final SpanSet<CharacterStyle> mCharacterStyleSpanSet = 63 new SpanSet<CharacterStyle>(CharacterStyle.class); 64 private final SpanSet<ReplacementSpan> mReplacementSpanSpanSet = 65 new SpanSet<ReplacementSpan>(ReplacementSpan.class); [all...] |
Layout.java | 366 mLineBackgroundSpans = new SpanSet<LineBackgroundSpan>(LineBackgroundSpan.class); [all...] |
/external/chromium_org/third_party/sqlite/src/src/ |
parse.y | 727 static void spanSet(ExprSpan *pOut, Token *pStart, Token *pEnd){ 744 expr(A) ::= LP(B) expr(X) RP(E). {A.pExpr = X.pExpr; spanSet(&A,&B,&E);} 752 spanSet(&A,&X,&Y); 760 spanSet(&A,&X,&Z); 775 spanSet(&A, &X, &X); 780 spanSet(&A, &X, &X); 790 spanSet(&A,&X,&Y); 798 spanSet(&A,&X,&E); 805 spanSet(&A,&X,&E); 814 spanSet(&A, &OP, &OP) [all...] |
/frameworks/base/ |
preloaded-classes | 858 android.text.SpanSet [all...] |