Home
last modified time | relevance | path

Searched refs:tableSize (Results 1 – 9 of 9) sorted by relevance

/trunk/main/i18npool/source/defaultnumberingprovider/
H A Ddefaultnumberingprovider.cxx289 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()
[all …]
/trunk/main/i18npool/source/transliteration/
H A Dtransliteration_Numeric.cxx94 } if (number > tableSize && !recycleSymbol) { in transliterateBullet()
103 out[j++] = table[--number % tableSize]; in transliterateBullet()
124 if (tableSize) in transliterate()
133 if (tableSize) { in transliterateChar2Char()
136 if (number <= tableSize || recycleSymbol) in transliterateChar2Char()
137 return table[--number % tableSize]; in transliterateChar2Char()
H A Dnumtotext_cjk.cxx38 tableSize = 0; \
69 tableSize = sizeof(_table) / sizeof(sal_Unicode); \
H A Dtexttonum.cxx41 tableSize = 0; \
H A Dchartonum.cxx41 tableSize = 0; \
H A Dnumtochar.cxx41 tableSize = 0; \
/trunk/main/svtools/source/table/
H A Dmousefunction.cxx78 ::Size const tableSize = i_tableControl.getTableSizePixel(); in handleMouseMove()
83 if ( ( aPoint.X() > tableSize.Width() ) in handleMouseMove()
100 Size( 1, tableSize.Height() ) in handleMouseMove()
/trunk/main/vcl/aqua/source/a11y/
H A Daqua11ytablewrapper.mm70 Size tableSize = accessibleComponent -> getSize();
75 point.X = tableSize.Width - 1;
76 point.Y = tableSize.Height - 1;
/trunk/main/i18npool/inc/
H A Dtransliteration_Numeric.hxx57 sal_Int16 tableSize; member in com::sun::star::i18n::transliteration_Numeric