Searched refs:sCached (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/text/
H A DMeasuredText.java49 private static MeasuredText[] sCached = new MeasuredText[3]; field in class:MeasuredText
54 for (int i = sCached.length; --i >= 0;) {
55 if (sCached[i] != null) {
56 mt = sCached[i];
57 sCached[i] = null;
73 for (int i = 0; i < sCached.length; ++i) {
74 if (sCached[i] == null) {
75 sCached[i] = mt;
H A DTextLine.java67 private static final TextLine[] sCached = new TextLine[3]; field in class:TextLine
76 synchronized (sCached) {
77 for (int i = sCached.length; --i >= 0;) {
78 if (sCached[i] != null) {
79 tl = sCached[i];
80 sCached[i] = null;
108 synchronized(sCached) {
109 for (int i = 0; i < sCached.length; ++i) {
110 if (sCached[i] == null) {
111 sCached[
[all...]

Completed in 52 milliseconds