Home
last modified time | relevance | path

Searched refs:getGeneratedSize (Results 1 – 20 of 20) sorted by relevance

/dports/mail/libvmime/vmime-0.9.2/tests/parser/
H A DparameterTest.cpp299 VASSERT("1", p1.getGeneratedSize(ctx) >= generateParameter(p1, ctx).length()); in testGetGeneratedSize()
302 VASSERT("2&", p2a.getGeneratedSize(ctx) >= generateParameter(p2a, ctx).length()); in testGetGeneratedSize()
305 VASSERT("1", p2b.getGeneratedSize(ctx) >= generateParameter(p2b, ctx).length()); in testGetGeneratedSize()
455 VASSERT("1.rfc2047", p1.getGeneratedSize(ctx) >= generateParameter(p1, ctx).length()); in testGetGeneratedSizeRFC2231()
458 VASSERT("1.rfc2231", p1.getGeneratedSize(ctx) >= generateParameter(p1, ctx).length()); in testGetGeneratedSizeRFC2231()
461 VASSERT("1.both", p1.getGeneratedSize(ctx) >= generateParameter(p1, ctx).length()); in testGetGeneratedSizeRFC2231()
477 VASSERT("2.rfc2047", p2.getGeneratedSize(ctx) >= generateParameter(p2, ctx).length()); in testGetGeneratedSizeRFC2231()
483 VASSERT("2.both", p2.getGeneratedSize(ctx) >= generateParameter(p2, ctx).length()); in testGetGeneratedSizeRFC2231()
505 VASSERT("3.both", p3.getGeneratedSize(ctx) >= generateParameter(p3, ctx).length()); in testGetGeneratedSizeRFC2231()
524 VASSERT("4.both", p4.getGeneratedSize(ctx) >= generateParameter(p4, ctx).length()); in testGetGeneratedSizeRFC2231()
[all …]
H A DmessageTest.cpp47 const vmime::size_t genSize = msg->getGeneratedSize(ctx); in VMIME_TEST_SUITE_BEGIN()
/dports/mail/libvmime/vmime-0.9.2/src/vmime/
H A DbodyPart.cpp73 size_t bodyPart::getGeneratedSize(const generationContext& ctx) in getGeneratedSize() function in vmime::bodyPart
75 return m_header->getGeneratedSize(ctx) + 2 /* CRLF */ + m_body->getGeneratedSize(ctx); in getGeneratedSize()
H A DheaderFieldValue.hpp44 size_t getGeneratedSize(const generationContext& ctx);
H A DheaderFieldValue.cpp33 size_t headerFieldValue::getGeneratedSize(const generationContext& ctx) in getGeneratedSize() function in vmime::headerFieldValue
H A Dcomponent.cpp231 size_t component::getGeneratedSize(const generationContext& ctx) in getGeneratedSize() function in vmime::component
237 totalSize += (*it)->getGeneratedSize(ctx); in getGeneratedSize()
H A DheaderField.cpp244 size_t headerField::getGeneratedSize(const generationContext& ctx) in getGeneratedSize() function in vmime::headerField
246 return m_name.length() + 2 /* ": " */ + m_value->getGeneratedSize(ctx); in getGeneratedSize()
H A DbodyPart.hpp105 size_t getGeneratedSize(const generationContext& ctx);
H A Dparameter.hpp88 size_t getGeneratedSize(const generationContext& ctx);
H A DheaderField.hpp164 size_t getGeneratedSize(const generationContext& ctx);
H A DparameterizedHeaderField.hpp182 size_t getGeneratedSize(const generationContext& ctx);
H A DparameterizedHeaderField.cpp362 size_t parameterizedHeaderField::getGeneratedSize(const generationContext& ctx) in getGeneratedSize() function in vmime::parameterizedHeaderField
364 size_t size = headerField::getGeneratedSize(ctx); in getGeneratedSize()
370 size += (*it)->getGeneratedSize(ctx); in getGeneratedSize()
H A Dheader.cpp105 size_t header::getGeneratedSize(const generationContext& ctx) in getGeneratedSize() function in vmime::header
107 return component::getGeneratedSize(ctx) + 2 * m_fields.size() /* CRLF */; in getGeneratedSize()
H A Dcomponent.hpp218 virtual size_t getGeneratedSize(const generationContext& ctx);
H A Dbody.hpp283 size_t getGeneratedSize(const generationContext& ctx);
H A Dheader.hpp294 size_t getGeneratedSize(const generationContext& ctx);
H A Dbody.cpp501 size_t body::getGeneratedSize(const generationContext& ctx) in getGeneratedSize() function in vmime::body
512 size += getPartAt(p)->getGeneratedSize(ctx); in getGeneratedSize()
H A Dparameter.cpp607 size_t parameter::getGeneratedSize(const generationContext& ctx) in getGeneratedSize() function in vmime::parameter
/dports/mail/libvmime/vmime-0.9.2/src/vmime/net/smtp/
H A DSMTPTransport.cpp370 const size_t msgSize = msg->getGeneratedSize(ctx); in send()
/dports/mail/libvmime/vmime-0.9.2/tests/net/smtp/
H A DSMTPTransportTestUtils.hpp578 size_t getGeneratedSize(const vmime::generationContext& /* ctx */) in getGeneratedSize() function in SMTPBigTestMessage