Lines Matching refs:cRet
1615 sal_Unicode cRet = nRet; in readUnicodeChar() local
1616 return cRet; in readUnicodeChar()
1937 sal_Unicode cRet = 0; in getEscapeChar() local
1942 cRet = 0x0009; in getEscapeChar()
1945 cRet = 0x000a; in getEscapeChar()
1948 cRet = 0x000c; in getEscapeChar()
1951 cRet = 0x000d; in getEscapeChar()
1954 cRet = '\\'; in getEscapeChar()
1968 cRet = 16 * cRet + nDigitVal; in getEscapeChar()
1982 cRet = c; in getEscapeChar()
1985 return cRet; in getEscapeChar()
2144 sal_Unicode cRet = ( nDigitVal < 10 ) ? ('0' + nDigitVal) : ('a' + (nDigitVal-10)); in getHexCharForDigit() local
2145 return cRet; in getHexCharForDigit()