Lines Matching refs:pName
52 static void Impl_toAsciiLower( const sal_Char* pName, sal_Char* pBuf ) in Impl_toAsciiLower() argument
54 while ( *pName ) in Impl_toAsciiLower()
57 if ( (*pName >= 0x41) && (*pName <= 0x5A) ) in Impl_toAsciiLower()
58 *pBuf = (*pName)+0x20; /* toAsciiLower */ in Impl_toAsciiLower()
60 *pBuf = *pName; in Impl_toAsciiLower()
63 pName++; in Impl_toAsciiLower()
71 static void Impl_toAsciiLowerAndRemoveNonAlphanumeric( const sal_Char* pName, sal_Char* pBuf ) in Impl_toAsciiLowerAndRemoveNonAlphanumeric() argument
73 while ( *pName ) in Impl_toAsciiLowerAndRemoveNonAlphanumeric()
76 if ( (*pName >= 0x41) && (*pName <= 0x5A) ) in Impl_toAsciiLowerAndRemoveNonAlphanumeric()
78 *pBuf = (*pName)+0x20; /* toAsciiLower */ in Impl_toAsciiLowerAndRemoveNonAlphanumeric()
82 else if ( ((*pName >= 0x61) && (*pName <= 0x7A)) || in Impl_toAsciiLowerAndRemoveNonAlphanumeric()
83 ((*pName >= 0x30) && (*pName <= 0x39)) ) in Impl_toAsciiLowerAndRemoveNonAlphanumeric()
85 *pBuf = *pName; in Impl_toAsciiLowerAndRemoveNonAlphanumeric()
89 pName++; in Impl_toAsciiLowerAndRemoveNonAlphanumeric()