Home | History | Annotate | Download | only in voiceinteraction

Lines Matching refs:te

117             TextEntry te = mTextRects.get(i);
118 Log.d(TAG, "View " + te.className + " " + te.bounds.toShortString()
119 + " in " + te.parentLeft + "," + te.parentTop
120 + " matrix=" + te.matrix.toShortString()
121 + " size=" + te.textSize + " color=#" + Integer.toHexString(te.textColor)
123 + te.text);
124 if (te.lineCharOffsets != null && te.lineBaselines != null) {
125 final int num = te.lineCharOffsets.length < te.lineBaselines.length
126 ? te.lineCharOffsets.length : te.lineBaselines.length;
128 Log.d(TAG, " Line #" + j + ": offset=" + te.lineCharOffsets[j]
129 + " baseline=" + te.lineBaselines[j]);
163 TextEntry te = new TextEntry(root, parentLeft, parentTop, matrix);
164 mTextRects.add(te);
185 TextEntry te = mTextRects.get(i);
186 canvas.drawRect(te.bounds.left - mTmpLocation[0], te.bounds.top - mTmpLocation[1],
187 te.bounds.right - mTmpLocation[0], te.bounds.bottom - mTmpLocation[1],
191 TextEntry te = mTextRects.get(i);
194 canvas.concat(te.matrix);
195 canvas.drawRect(0, 0, te.bounds.right - te.bounds.left, te.bounds.bottom - te.bounds.top,
197 if (te.lineBaselines != null) {
198 for (int j=0; j<te.lineBaselines.length; j++) {
199 canvas.drawLine(0, te.lineBaselines[j] - te.scrollY,
200 te.bounds.right - te.bounds.left, te.lineBaselines[j] - te.scrollY,