Lines Matching refs:aChar
320 const sal_Unicode aChar(rCandidate[nPos]); in copySign() local
322 if(sal_Unicode('+') == aChar || sal_Unicode('-') == aChar) in copySign()
324 rTarget.append(aChar); in copySign()
336 const sal_Unicode aChar(rCandidate[nPos]); in copyNumber() local
338 … bOnNumber = (sal_Unicode('0') <= aChar && sal_Unicode('9') >= aChar) || sal_Unicode('.') == aChar; in copyNumber()
342 rTarget.append(aChar); in copyNumber()
354 const sal_Unicode aChar(rCandidate[nPos]); in copyHex() local
356 bOnHex = (sal_Unicode('0') <= aChar && sal_Unicode('9') >= aChar) in copyHex()
357 || (sal_Unicode('A') <= aChar && sal_Unicode('F') >= aChar) in copyHex()
358 || (sal_Unicode('a') <= aChar && sal_Unicode('f') >= aChar); in copyHex()
362 rTarget.append(aChar); in copyHex()
374 const sal_Unicode aChar(rCandidate[nPos]); in copyString() local
376 bOnChar = (sal_Unicode('a') <= aChar && sal_Unicode('z') >= aChar) in copyString()
377 || (sal_Unicode('A') <= aChar && sal_Unicode('Z') >= aChar) in copyString()
378 || sal_Unicode('-') == aChar; in copyString()
382 rTarget.append(aChar); in copyString()
408 const sal_Unicode aChar(rCandidate[nPos]); in readNumber() local
410 if(sal_Unicode('e') == aChar || sal_Unicode('E') == aChar) in readNumber()
420 aNum.append(aChar); in readNumber()
582 const sal_Unicode aChar(rCandidate[nPos]); in readAngle() local
586 switch(aChar) in readAngle()
837 const sal_Unicode aChar(rCandidate[0]); in read_color() local
840 if(aChar == sal_Unicode('#')) in read_color()
1003 const sal_Unicode aChar(rCandidate[nPos]); in readTransform() local
1012 switch(aChar) in readTransform()
1513 const sal_Unicode aChar(rCandidate[nPos]); in convert() local
1515 if(rPattern == aChar) in convert()
1526 aBuffer.append(aChar); in convert()
1557 const sal_Unicode aChar(rCandidate[nPos]); in removeBlockComments() local
1558 …const bool bStart(aCommentSlash == aChar && nPos + 1 < nLen && aCommentStar == rCandidate[nPos + 1… in removeBlockComments()
1559 …const bool bEnd(aCommentStar == aChar && nPos + 1 < nLen && aCommentSlash == rCandidate[nPos + 1]); in removeBlockComments()
1576 aBuffer.append(aChar); in removeBlockComments()
1605 const sal_Unicode aChar(rCandidate[nPos]); in consolidateContiguosSpace() local
1607 if(aSpace == aChar) in consolidateContiguosSpace()
1619 aBuffer.append(aChar); in consolidateContiguosSpace()