Home
last modified time | relevance | path

Searched refs:line2 (Results 1 – 14 of 14) sorted by relevance

/packages/apps/TV/src/com/android/tv/dvr/ui/browse/
DActionPresenterSelector.java116 CharSequence line2 = action.getLabel2(); in onBindViewHolder() local
118 vh.mButton.setText(line2); in onBindViewHolder()
119 } else if (TextUtils.isEmpty(line2)) { in onBindViewHolder()
122 vh.mButton.setText(line1 + "\n" + line2); in onBindViewHolder()
/packages/apps/Messaging/src/com/android/messaging/datamodel/
DMessageNotificationState.java1235 CharSequence line2; in checkFailedMessages() local
1262 line2 = failedMessgeSnippet; in checkFailedMessages()
1287 line2 = resources.getQuantityString( in checkFailedMessages()
1294 line2 = applyWarningTextColor(context, line2); in checkFailedMessages()
1311 if (isRichContent && !TextUtils.isEmpty(line2)) { in checkFailedMessages()
1314 if (line2 != null) { in checkFailedMessages()
1315 inboxStyle.addLine(Html.fromHtml(line2.toString())); in checkFailedMessages()
1319 builder.setContentText(line2); in checkFailedMessages()
DBugleNotifications.java1200 final String line2 = context.getString(R.string.notification_emergency_send_failure_line2, in notifyEmergencySmsFailed() local
1208 .setContentText(line2) in notifyEmergencySmsFailed()
1209 .setStyle(new NotificationCompat.BigTextStyle(builder).bigText(line2)) in notifyEmergencySmsFailed()
/packages/apps/Music/src/com/android/music/
DArtistAlbumBrowserActivity.java562 TextView line2; field in ArtistAlbumBrowserActivity.ArtistAlbumListAdapter.ViewHolder
636 vh.line2 = (TextView) v.findViewById(R.id.line2); in newGroupView()
650 vh.line2 = (TextView) v.findViewById(R.id.line2); in newChildView()
676 vh.line2.setText(songs_albums); in bindGroupView()
728 vh.line2.setText(builder.toString()); in bindChildView()
DMusicPicker.java172 TextView line2; field in MusicPicker.TrackListAdapter.ViewHolder
211 vh.line2 = (TextView) v.findViewById(R.id.line2); in newView()
256 vh.line2.setText(vh.buffer2, 0, len); in bindView()
DAlbumBrowserActivity.java498 TextView line2; field in AlbumBrowserActivity.AlbumListAdapter.ViewHolder
566 vh.line2 = (TextView) v.findViewById(R.id.line2); in newView()
592 vh.line2.setText(displayname); in bindView()
DTrackBrowserActivity.java1307 TextView line2;
1412 vh.line2 = (TextView) v.findViewById(R.id.line2);
1449 vh.line2.setText(vh.buffer2, 0, len);
DMediaPickerActivity.java245 tv = (TextView) view.findViewById(R.id.line2); in bindView()
DAudioPreview.java95 mTextLine2 = (TextView) findViewById(R.id.line2); in onCreate()
DQueryBrowserActivity.java360 TextView tv2 = (TextView) view.findViewById(R.id.line2); in bindView()
DPlaylistBrowserActivity.java598 view.findViewById(R.id.line2).setVisibility(View.GONE); in bindView()
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
DGeometryMathUtils.java102 public static float[] lineIntersect(float[] line1, float[] line2) { in lineIntersect() argument
107 float c0 = line2[0]; in lineIntersect()
108 float c1 = line2[1]; in lineIntersect()
109 float d0 = line2[2]; in lineIntersect()
110 float d1 = line2[3]; in lineIntersect()
/packages/apps/UnifiedEmail/src/org/apache/commons/io/
DFileSystemUtils.java331 String line2 = lines.get(1); // the line we're interested in in freeSpaceUnix() local
334 StringTokenizer tok = new StringTokenizer(line2, " "); in freeSpaceUnix()
/packages/apps/DocumentsUI/src/com/android/documentsui/dirlist/
DListDocumentHolder.java71 mDetails = (LinearLayout) itemView.findViewById(R.id.line2); in ListDocumentHolder()