Lines Matching refs:nFlags

29 static sal_Bool ImplGetUndefinedAsciiMultiByte(sal_uInt32 nFlags,
33 static sal_Bool ImplGetInvalidAsciiMultiByte(sal_uInt32 nFlags,
37 static int ImplIsUnicodeIgnoreChar(sal_Unicode c, sal_uInt32 nFlags);
39 sal_Bool ImplGetUndefinedAsciiMultiByte(sal_uInt32 nFlags, in ImplGetUndefinedAsciiMultiByte() argument
45 switch (nFlags & RTL_UNICODETOTEXT_FLAGS_UNDEFINED_MASK) in ImplGetUndefinedAsciiMultiByte()
63 sal_Bool ImplGetInvalidAsciiMultiByte(sal_uInt32 nFlags, in ImplGetInvalidAsciiMultiByte() argument
69 switch (nFlags & RTL_UNICODETOTEXT_FLAGS_UNDEFINED_MASK) in ImplGetInvalidAsciiMultiByte()
87 int ImplIsUnicodeIgnoreChar( sal_Unicode c, sal_uInt32 nFlags ) in ImplIsUnicodeIgnoreChar() argument
90 ((nFlags & RTL_UNICODETOTEXT_FLAGS_NONSPACING_IGNORE) != 0 in ImplIsUnicodeIgnoreChar()
92 || ((nFlags & RTL_UNICODETOTEXT_FLAGS_CONTROL_IGNORE) != 0 in ImplIsUnicodeIgnoreChar()
94 || ((nFlags & RTL_UNICODETOTEXT_FLAGS_PRIVATE_IGNORE) != 0 in ImplIsUnicodeIgnoreChar()
100 sal_Unicode ImplGetUndefinedUnicodeChar(sal_uChar cChar, sal_uInt32 nFlags) in ImplGetUndefinedUnicodeChar() argument
102 return ((nFlags & RTL_TEXTTOUNICODE_FLAGS_UNDEFINED_MASK) in ImplGetUndefinedUnicodeChar()
116 sal_uInt32 nFlags, in ImplHandleUndefinedUnicodeToTextChar() argument
126 if ( nFlags & RTL_UNICODETOTEXT_FLAGS_PRIVATE_MAPTO0 ) in ImplHandleUndefinedUnicodeToTextChar()
136 if ( ImplIsUnicodeIgnoreChar( c, nFlags ) ) in ImplHandleUndefinedUnicodeToTextChar()
158 … if ( (nFlags & RTL_UNICODETOTEXT_FLAGS_INVALID_MASK) == RTL_UNICODETOTEXT_FLAGS_INVALID_ERROR ) in ImplHandleUndefinedUnicodeToTextChar()
163 …else if ( (nFlags & RTL_UNICODETOTEXT_FLAGS_INVALID_MASK) == RTL_UNICODETOTEXT_FLAGS_INVALID_IGNOR… in ImplHandleUndefinedUnicodeToTextChar()
168 else if (ImplGetInvalidAsciiMultiByte(nFlags, in ImplHandleUndefinedUnicodeToTextChar()
186 …if ( (nFlags & RTL_UNICODETOTEXT_FLAGS_UNDEFINED_MASK) == RTL_UNICODETOTEXT_FLAGS_UNDEFINED_ERROR ) in ImplHandleUndefinedUnicodeToTextChar()
191 …else if ( (nFlags & RTL_UNICODETOTEXT_FLAGS_UNDEFINED_MASK) == RTL_UNICODETOTEXT_FLAGS_UNDEFINED_I… in ImplHandleUndefinedUnicodeToTextChar()
193 else if (ImplGetUndefinedAsciiMultiByte(nFlags, in ImplHandleUndefinedUnicodeToTextChar()