Lines Matching refs:tableSize

289 void lcl_formatChars( sal_Unicode table[], int tableSize, int n, OUString& s )  in lcl_formatChars()  argument
295 if( n>=tableSize ) lcl_formatChars( table, tableSize, (n-tableSize)/tableSize, s ); in lcl_formatChars()
297 s += OUString::valueOf( table[ n % tableSize ] ); in lcl_formatChars()
301 void lcl_formatChars1( sal_Unicode table[], int tableSize, int n, OUString& s ) in lcl_formatChars1() argument
307 int repeat_count = n / tableSize + 1; in lcl_formatChars1()
310 s += OUString::valueOf( table[ n%tableSize ] ); in lcl_formatChars1()
314 void lcl_formatChars2( sal_Unicode table_capital[], sal_Unicode table_small[], int tableSize, int n… in lcl_formatChars2() argument
319 if( n>=tableSize ) in lcl_formatChars2()
321 lcl_formatChars2( table_capital, table_small, tableSize, (n-tableSize)/tableSize, s ); in lcl_formatChars2()
322 s += OUString::valueOf( table_small[ n % tableSize ] ); in lcl_formatChars2()
324 s += OUString::valueOf( table_capital[ n % tableSize ] ); in lcl_formatChars2()
328 void lcl_formatChars3( sal_Unicode table_capital[], sal_Unicode table_small[], int tableSize, int n… in lcl_formatChars3() argument
333 int repeat_count = n / tableSize + 1; in lcl_formatChars3()
334 s += OUString::valueOf( table_capital[ n%tableSize ] ); in lcl_formatChars3()
337 s += OUString::valueOf( table_small[ n%tableSize ] ); in lcl_formatChars3()
383 sal_Int16 tableSize = 0; in makeNumberingString() local
508 tableSize = sizeof(table_CircledNumber) / sizeof(sal_Unicode); in makeNumberingString()
512 tableSize = sizeof(table_TianGan_zh) / sizeof(sal_Unicode); in makeNumberingString()
516 tableSize = sizeof(table_DiZi_zh) / sizeof(sal_Unicode); in makeNumberingString()
520 tableSize = sizeof(table_AIUFullWidth_ja_JP) / sizeof(sal_Unicode); in makeNumberingString()
525 tableSize = sizeof(table_AIUHalfWidth_ja_JP) / sizeof(sal_Unicode); in makeNumberingString()
530 tableSize = sizeof(table_IROHAFullWidth_ja_JP) / sizeof(sal_Unicode); in makeNumberingString()
535 tableSize = sizeof(table_IROHAHalfWidth_ja_JP) / sizeof(sal_Unicode); in makeNumberingString()
540 tableSize = sizeof(table_HangulJamo_ko) / sizeof(sal_Unicode); in makeNumberingString()
545 tableSize = sizeof(table_HangulSyllable_ko) / sizeof(sal_Unicode); in makeNumberingString()
550 tableSize = sizeof(table_HangulCircledJamo_ko) / sizeof(sal_Unicode); in makeNumberingString()
555 tableSize = sizeof(table_HangulCircledSyllable_ko) / sizeof(sal_Unicode); in makeNumberingString()
672 } else if (tableSize) { in makeNumberingString()
673 if ( number > tableSize && !recycleSymbol) in makeNumberingString()
676 result += OUString(&table[--number % tableSize], 1); in makeNumberingString()