Searched refs:stringBuilder (Results 1 – 4 of 4) sorted by relevance
60 private void appendContentRoot(StringBuilder stringBuilder, String rootPath) in appendContentRoot() argument64 stringBuilder.append(" <content url=\"file://").append(intermediates).append("\">\n"); in appendContentRoot()66 stringBuilder.append(" <sourceFolder url=\"file://") in appendContentRoot()69 stringBuilder.append(" </content>\n"); in appendContentRoot()
112 StringBuilder stringBuilder = new StringBuilder(); in respondWithStorageInformation() local119 stringBuilder.append("List of directories on phone:\n"); in respondWithStorageInformation()121 stringBuilder.append(" - " + file + "\n"); in respondWithStorageInformation()124 stringBuilder.append("No files in external storage."); in respondWithStorageInformation()127 stringBuilder.append("No external media is available."); in respondWithStorageInformation()134 dataMap.putString(Constants.KEY_PAYLOAD, stringBuilder.toString()); in respondWithStorageInformation()
397 StringBuilder stringBuilder = new StringBuilder(); in getPhoneStorageInformation() local409 stringBuilder.append("List of files\n"); in getPhoneStorageInformation()411 stringBuilder.append(" - " + file + "\n"); in getPhoneStorageInformation()415 stringBuilder.append("No files in external storage."); in getPhoneStorageInformation()419 stringBuilder.append("No external media is available."); in getPhoneStorageInformation()422 return stringBuilder.toString(); in getPhoneStorageInformation()
146 final StringBuilder stringBuilder = new StringBuilder(data.length); in broadcastUpdate() local148 stringBuilder.append(String.format("%02X ", byteChar)); in broadcastUpdate()149 intent.putExtra(EXTRA_DATA, new String(data) + "\n" + stringBuilder.toString()); in broadcastUpdate()