Home
last modified time | relevance | path

Searched refs:IsLetterTab (Results 1 – 3 of 3) sorted by relevance

/AOO41X/main/basic/source/comp/
H A Dscanner.cxx542 IsLetterTab[i] = false; in LetterTable()
544 IsLetterTab[0xC0] = true; // � , CAPITAL LETTER A WITH GRAVE ACCENT in LetterTable()
545 IsLetterTab[0xC1] = true; // � , CAPITAL LETTER A WITH ACUTE ACCENT in LetterTable()
546 IsLetterTab[0xC2] = true; // � , CAPITAL LETTER A WITH CIRCUMFLEX ACCENT in LetterTable()
547 IsLetterTab[0xC3] = true; // � , CAPITAL LETTER A WITH TILDE in LetterTable()
548 IsLetterTab[0xC4] = true; // � , CAPITAL LETTER A WITH DIAERESIS in LetterTable()
549 IsLetterTab[0xC5] = true; // � , CAPITAL LETTER A WITH RING ABOVE in LetterTable()
550 IsLetterTab[0xC6] = true; // � , CAPITAL LIGATURE AE in LetterTable()
551 IsLetterTab[0xC7] = true; // � , CAPITAL LETTER C WITH CEDILLA in LetterTable()
552 IsLetterTab[0xC8] = true; // � , CAPITAL LETTER E WITH GRAVE ACCENT in LetterTable()
[all …]
/AOO41X/main/svtools/source/edit/
H A Dsyntaxhighlight.cxx237 bool IsLetterTab[256]; member in LetterTable
244 bool bRet = (c < 256) ? IsLetterTab[c] : isLetterUnicode( c ); in isLetter()
280 IsLetterTab[i] = false; in LetterTable()
282 IsLetterTab[0xC0] = true; // ?, CAPITAL LETTER A WITH GRAVE ACCENT in LetterTable()
283 IsLetterTab[0xC1] = true; // ?, CAPITAL LETTER A WITH ACUTE ACCENT in LetterTable()
284 IsLetterTab[0xC2] = true; // ?, CAPITAL LETTER A WITH CIRCUMFLEX ACCENT in LetterTable()
285 IsLetterTab[0xC3] = true; // ?, CAPITAL LETTER A WITH TILDE in LetterTable()
286 IsLetterTab[0xC4] = true; // ?, CAPITAL LETTER A WITH DIAERESIS in LetterTable()
287 IsLetterTab[0xC5] = true; // ?, CAPITAL LETTER A WITH RING ABOVE in LetterTable()
288 IsLetterTab[0xC6] = true; // ?, CAPITAL LIGATURE AE in LetterTable()
[all …]
/AOO41X/main/basic/source/inc/
H A Dscanner.hxx104 bool IsLetterTab[256]; member in LetterTable
111 bool bRet = (c < 256) ? IsLetterTab[c] : isLetterUnicode( c ); in isLetter()