Lines Matching refs:sal_uInt32

148 	static inline bool isUSASCII(sal_uInt32 nChar);
156 static inline bool isISO88591(sal_uInt32 nChar);
165 static inline bool isControl(sal_uInt32 nChar);
174 static inline bool isWhiteSpace(sal_uInt32 nChar);
183 static inline bool isVisible(sal_uInt32 nChar);
192 static inline bool isDigit(sal_uInt32 nChar);
201 static inline bool isCanonicHexDigit(sal_uInt32 nChar);
210 static inline bool isHexDigit(sal_uInt32 nChar);
219 static inline bool isUpperCase(sal_uInt32 nChar);
228 static inline bool isLowerCase(sal_uInt32 nChar);
237 static inline bool isAlpha(sal_uInt32 nChar);
246 static inline bool isAlphanumeric(sal_uInt32 nChar);
255 static inline bool isBase64Digit(sal_uInt32 nChar);
265 static bool isAtomChar(sal_uInt32 nChar);
275 static bool isTokenChar(sal_uInt32 nChar);
285 static bool isEncodedWordTokenChar(sal_uInt32 nChar);
296 static bool isIMAPAtomChar(sal_uInt32 nChar);
306 static inline sal_uInt32 toUpperCase(sal_uInt32 nChar);
316 static inline sal_uInt32 toLowerCase(sal_uInt32 nChar);
326 static inline int getWeight(sal_uInt32 nChar);
336 static inline int getHexWeight(sal_uInt32 nChar);
347 static inline int getBase64Weight(sal_uInt32 nChar);
356 static sal_uInt32 getDigit(int nWeight);
365 static sal_uInt32 getHexDigit(int nWeight);
374 static sal_uInt32 getBase64Digit(int nWeight);
376 static inline bool isHighSurrogate(sal_uInt32 nUTF16);
378 static inline bool isLowSurrogate(sal_uInt32 nUTF16);
380 static inline sal_uInt32 toUTF32(sal_Unicode cHighSurrogate,
492 static inline bool needsQuotedStringEscape(sal_uInt32 nChar);
507 bool bLeadingZeroes, sal_uInt32 & rValue);
511 sal_uInt32 & rValue);
515 sal_uInt32 & rValue);
519 sal_uInt32 & rValue);
523 sal_uInt32 nOpening,
524 sal_uInt32 nClosing,
530 sal_uInt32 nOpening,
531 sal_uInt32 nClosing,
581 static inline int getUTF8OctetCount(sal_uInt32 nChar);
584 sal_uInt32 nChar);
586 static void writeUTF8(INetMIMEOutputSink & rSink, sal_uInt32 nChar);
588 static void writeUnsigned(INetMIMEOutputSink & rSink, sal_uInt32 nValue,
609 sal_uInt32 & rCharacter);
635 static inline sal_uInt32 getUTF32Character(const sal_Unicode *& rBegin,
648 sal_uInt32 nUTF32);
652 inline bool INetMIME::isUSASCII(sal_uInt32 nChar) in isUSASCII()
658 inline bool INetMIME::isISO88591(sal_uInt32 nChar) in isISO88591()
664 inline bool INetMIME::isControl(sal_uInt32 nChar) in isControl()
670 inline bool INetMIME::isWhiteSpace(sal_uInt32 nChar) in isWhiteSpace()
676 inline bool INetMIME::isVisible(sal_uInt32 nChar) in isVisible()
682 inline bool INetMIME::isDigit(sal_uInt32 nChar) in isDigit()
688 inline bool INetMIME::isCanonicHexDigit(sal_uInt32 nChar) in isCanonicHexDigit()
694 inline bool INetMIME::isHexDigit(sal_uInt32 nChar) in isHexDigit()
700 inline bool INetMIME::isUpperCase(sal_uInt32 nChar) in isUpperCase()
706 inline bool INetMIME::isLowerCase(sal_uInt32 nChar) in isLowerCase()
712 inline bool INetMIME::isAlpha(sal_uInt32 nChar) in isAlpha()
718 inline bool INetMIME::isAlphanumeric(sal_uInt32 nChar) in isAlphanumeric()
724 inline bool INetMIME::isBase64Digit(sal_uInt32 nChar) in isBase64Digit()
731 inline sal_uInt32 INetMIME::toUpperCase(sal_uInt32 nChar) in toUpperCase()
737 inline sal_uInt32 INetMIME::toLowerCase(sal_uInt32 nChar) in toLowerCase()
743 inline int INetMIME::getWeight(sal_uInt32 nChar) in getWeight()
749 inline int INetMIME::getHexWeight(sal_uInt32 nChar) in getHexWeight()
757 inline int INetMIME::getBase64Weight(sal_uInt32 nChar) in getBase64Weight()
768 inline bool INetMIME::isHighSurrogate(sal_uInt32 nUTF16) in isHighSurrogate()
774 inline bool INetMIME::isLowSurrogate(sal_uInt32 nUTF16) in isLowSurrogate()
780 inline sal_uInt32 INetMIME::toUTF32(sal_Unicode cHighSurrogate, in toUTF32()
786 return ((sal_uInt32(cHighSurrogate) & 0x3FF) << 10) in toUTF32()
787 | (sal_uInt32(cLowSurrogate) & 0x3FF); in toUTF32()
854 inline bool INetMIME::needsQuotedStringEscape(sal_uInt32 nChar) in needsQuotedStringEscape()
889 inline int INetMIME::getUTF8OctetCount(sal_uInt32 nChar) in getUTF8OctetCount()
901 inline sal_uInt32 INetMIME::getUTF32Character(const sal_Unicode *& rBegin, in getUTF32Character()
909 sal_uInt32 nUTF32 = sal_uInt32(*rBegin++ & 0x3FF) << 10; in getUTF32Character()
918 sal_uInt32 nUTF32) in putUTF32Character()
936 static sal_uInt32 const NO_LINE_LENGTH_LIMIT = SAL_MAX_UINT32;
939 sal_uInt32 m_nColumn;
940 sal_uInt32 m_nLineLengthLimit;
972 virtual void writeSequence(const sal_uInt32 * pBegin,
973 const sal_uInt32 * pEnd);
989 INetMIMEOutputSink(sal_uInt32 nTheColumn = 0, in INetMIMEOutputSink()
990 sal_uInt32 nTheLineLengthLimit in INetMIMEOutputSink()
1000 sal_uInt32 getColumn() const { return m_nColumn; } in getColumn()
1002 sal_uInt32 getLineLengthLimit() const { return m_nLineLengthLimit; } in getLineLengthLimit()
1004 void setLineLengthLimit(sal_uInt32 nTheLineLengthLimit) in setLineLengthLimit()
1036 inline void write(const sal_uInt32 * pBegin, const sal_uInt32 * pEnd);
1117 inline void INetMIMEOutputSink::write(const sal_uInt32 * pBegin, in write()
1118 const sal_uInt32 * pEnd) in write()
1170 sal_uInt32 nChar) in writeEscapeSequence()
1189 inline INetMIMEStringOutputSink(sal_uInt32 nColumn = 0, in INetMIMEStringOutputSink()
1190 sal_uInt32 nLineLengthLimit in INetMIMEStringOutputSink()
1218 virtual void writeSequence(const sal_uInt32 * pBegin,
1219 const sal_uInt32 * pEnd);
1225 inline INetMIMEUnicodeOutputSink(sal_uInt32 nColumn = 0, in INetMIMEUnicodeOutputSink()
1226 sal_uInt32 nLineLengthLimit in INetMIMEUnicodeOutputSink()
1269 sal_uInt32 m_nExtraSpaces;
1272 sal_uInt32 m_nBufferSize;
1277 sal_uInt32 m_nQuotedEscaped;
1280 inline bool needsEncodedWordEscape(sal_uInt32 nChar) const;
1292 INetMIMEEncodedWordOutputSink & operator <<(sal_uInt32 nChar);