Searched defs:sp (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/include/utils/
H A DRefBase.h35 inline bool operator _op_ (const sp<T>& o) const { \
42 inline bool operator _op_ (const sp<U>& o) const { \
190 class sp class in namespace:android
195 inline sp() : m_ptr(0) { } function in class:android::sp
197 sp(T* other);
198 sp(const sp<T>& other);
199 template<typename U> sp(U* other);
200 template<typename U> sp(const sp<
349 sp<T>::sp(T* other) function in class:sp
356 sp<T>::sp(const sp<T>& other) function in class:sp
363 sp<T>::sp(U* other) : m_ptr(other) function in class:sp
369 sp<T>::sp(const sp<U>& other) function in class:sp
435 sp<T>::sp(T* p, weakref_type* refs) function in class:sp
[all...]
/frameworks/base/core/java/android/text/method/
H A DPasswordTransformationMethod.java40 Spannable sp = (Spannable) source;
48 ViewReference[] vr = sp.getSpans(0, sp.length(),
51 sp.removeSpan(vr[i]);
54 removeVisibleSpans(sp);
56 sp.setSpan(new ViewReference(view), 0, 0,
79 Spannable sp = (Spannable) s;
80 ViewReference[] vr = sp.getSpans(0, s.length(),
105 removeVisibleSpans(sp);
108 sp
132 removeVisibleSpans(Spannable sp) argument
240 Visible(Spannable sp, PasswordTransformationMethod ptm) argument
[all...]
/frameworks/base/core/java/android/text/
H A DTextUtils.java580 Spanned sp = (Spanned) cs;
581 Object[] os = sp.getSpans(0, cs.length(), Object.class);
600 writeWhere(p, sp, o);
615 private static void writeWhere(Parcel p, Spanned sp, Object o) { argument
616 p.writeInt(sp.getSpanStart(o));
617 p.writeInt(sp.getSpanEnd(o));
618 p.writeInt(sp.getSpanFlags(o));
633 SpannableString sp = new SpannableString(p.readString());
643 readSpan(p, sp, new AlignmentSpan.Standard(p));
647 readSpan(p, sp, ne
915 readSpan(Parcel p, Spannable sp, Object o) argument
[all...]

Completed in 151 milliseconds