Searched defs:append (Results 1 - 6 of 6) sorted by relevance

/packages/apps/Email/emailcommon/src/org/apache/commons/io/output/
H A DFileWriterWithEncoding.java38 * By default, the file will be overwritten, but this may be changed to append.
74 * @param append true if content should be appended, false to overwrite
78 public FileWriterWithEncoding(String filename, String encoding, boolean append) throws IOException { argument
79 this(new File(filename), encoding, append);
99 * @param append true if content should be appended, false to overwrite
103 public FileWriterWithEncoding(String filename, Charset encoding, boolean append) throws IOException { argument
104 this(new File(filename), encoding, append);
124 * @param append true if content should be appended, false to overwrite
128 public FileWriterWithEncoding(String filename, CharsetEncoder encoding, boolean append) throws IOException { argument
129 this(new File(filename), encoding, append);
153 FileWriterWithEncoding(File file, String encoding, boolean append) argument
179 FileWriterWithEncoding(File file, Charset encoding, boolean append) argument
205 FileWriterWithEncoding(File file, CharsetEncoder encoding, boolean append) argument
222 initWriter(File file, Object encoding, boolean append) argument
[all...]
H A DLockableFileWriter.java37 * By default, the file will be overwritten, but this may be changed to append.
78 * @param append true if content should be appended, false to overwrite
82 public LockableFileWriter(String fileName, boolean append) throws IOException { argument
83 this(fileName, append, null);
90 * @param append true if content should be appended, false to overwrite
95 public LockableFileWriter(String fileName, boolean append, String lockDir) throws IOException { argument
96 this(new File(fileName), append, lockDir);
115 * @param append true if content should be appended, false to overwrite
119 public LockableFileWriter(File file, boolean append) throws IOException { argument
120 this(file, append, nul
132 LockableFileWriter(File file, boolean append, String lockDir) argument
158 LockableFileWriter(File file, String encoding, boolean append, String lockDir) argument
230 initWriter(File file, String encoding, boolean append) argument
[all...]
/packages/apps/Mms/src/com/android/mms/ui/
H A DMessageUtils.java83 void onResizeResult(PduPart part, boolean append); argument
160 details.append(res.getString(R.string.message_type_label));
161 details.append(res.getString(R.string.multimedia_notification));
165 details.append('\n');
166 details.append(res.getString(R.string.from_label));
167 details.append(!TextUtils.isEmpty(from)? from:
171 details.append('\n');
172 details.append(res.getString(
178 details.append('\n');
179 details.append(re
563 resizeImageAsync(final Context context, final Uri imageUri, final Handler handler, final ResizeImageResultCallback cb, final boolean append) argument
[all...]
H A DComposeMessageActivity.java2797 public void onResizeResult(PduPart part, boolean append) {
2813 result = mWorkingMessage.setAttachment(WorkingMessage.IMAGE, dataUri, append);
2863 private void addImageAsync(final Uri uri, final boolean append) { argument
2866 addImage(uri, append);
2871 private void addImage(Uri uri, boolean append) { argument
2873 log("append=" + append + ", uri=" + uri);
2876 int result = mWorkingMessage.setAttachment(WorkingMessage.IMAGE, uri, append);
2884 uri, mAttachmentEditorHandler, mResizeImageCallback, append);
2890 private void addVideoAsync(final Uri uri, final boolean append) { argument
2898 addVideo(Uri uri, boolean append) argument
3083 addAttachment(String type, Uri uri, boolean append) argument
[all...]
/packages/apps/Email/src/com/android/email/provider/
H A DContentCache.java814 private void append(StringBuilder sb, String name, Object value) { method in class:ContentCache.Statistics
815 sb.append(", ");
816 sb.append(name);
817 sb.append(": ");
818 sb.append(value);
826 sb.append("Cache " + mName);
827 append(sb, "Cursors", mCache == null ? mCursorCount : mCache.size());
828 append(sb, "Hits", mHitCount);
829 append(sb, "Misses", mMissCount + mProjectionMissCount);
830 append(s
[all...]
/packages/apps/Mms/src/com/android/mms/data/
H A DWorkingMessage.java372 * @param append true if we should add the attachment to a new slide
375 public int setAttachment(int type, Uri dataUri, boolean append) { argument
390 && !append) {
401 if (append) {
420 } else if (append) {
430 if (!append && mAttachmentType == TEXT && type == TEXT) {
1008 sb.append("RECIPIENTS_REQUIRE_MMS | ");
1010 sb.append("HAS_SUBJECT | ");
1012 sb.append("HAS_ATTACHMENT | ");
1014 sb.append("LENGTH_REQUIRES_MM
[all...]

Completed in 754 milliseconds