OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:mimeCharset
(Results
1 - 3
of
3
) sorted by null
/packages/apps/Email/src/org/apache/james/mime4j/message/
MemoryTextBody.java
50
private String
mimeCharset
= null;
57
public MemoryTextBody(InputStream is, String
mimeCharset
)
60
this.
mimeCharset
=
mimeCharset
;
75
if (
mimeCharset
!= null) {
76
javaCharset = CharsetUtil.toJavaCharset(
mimeCharset
);
83
if (
mimeCharset
== null) {
87
log.warn("MIME charset '" +
mimeCharset
+ "' has no "
95
if (
mimeCharset
== null) {
99
log.warn("MIME charset '" +
mimeCharset
+ "' has no "
[
all
...]
TempFileTextBody.java
49
private String
mimeCharset
= null;
56
public TempFileTextBody(InputStream is, String
mimeCharset
)
59
this.
mimeCharset
=
mimeCharset
;
74
if (
mimeCharset
!= null) {
75
javaCharset = CharsetUtil.toJavaCharset(
mimeCharset
);
82
if (
mimeCharset
== null) {
86
log.warn("MIME charset '" +
mimeCharset
+ "' has no "
94
if (
mimeCharset
== null) {
98
log.warn("MIME charset '" +
mimeCharset
+ "' has no "
[
all
...]
/packages/apps/Email/src/org/apache/james/mime4j/codec/
EncoderUtil.java
330
String
mimeCharset
= CharsetUtil.toMimeCharset(charset.name());
331
if (
mimeCharset
== null) {
342
String prefix = ENC_WORD_PREFIX +
mimeCharset
+ "?B?";
345
String prefix = ENC_WORD_PREFIX +
mimeCharset
+ "?Q?";
Completed in 29 milliseconds