/trunk/main/i18nutil/source/utility/ |
H A D | oneToOneMapping.cxx | 85 int i, j, high, low, current = -1; in makeIndex() local 94 if( high != current ) in makeIndex() 96 current = high; in makeIndex() 100 mpIndex[high][j] = NULL; in makeIndex() 102 mpIndex[high][low] = &mpTableWF[k]; in makeIndex() 116 int high, low; in find() local 117 high = (nKey >> 8) & 0xFF; in find() 119 if( mpIndex[high] != NULL && in find() 120 mpIndex[high][low] != NULL && in find() 121 mpIndex[high][low]->flag & mnFlag ) in find() [all …]
|
H A D | widthfolding.cxx | 227 int i, j, high, low; in getfull2halfTableForASC() local 231 high = (full2halfASCException[i].first >> 8) & 0xFF; in getfull2halfTableForASC() 234 if( !table.mpIndex[high] ) in getfull2halfTableForASC() 236 table.mpIndex[high] = new UnicodePairWithFlag*[256]; in getfull2halfTableForASC() 239 table.mpIndex[high][j] = NULL; in getfull2halfTableForASC() 241 table.mpIndex[high][low] = &full2halfASCException[i]; in getfull2halfTableForASC() 261 int i, j, high, low; in gethalf2fullTableForJIS() local 265 high = (half2fullJISException[i].first >> 8) & 0xFF; in gethalf2fullTableForJIS() 268 if( !table.mpIndex[high] ) in gethalf2fullTableForJIS() 273 table.mpIndex[high][j] = NULL; in gethalf2fullTableForJIS() [all …]
|
/trunk/main/nss/ |
H A D | nss_win.patch | 399 + ret.high = a.high + b.high + FStar_UInt128_carry(a.low + b.low, b.low); 450 + ret.high = a.high & b.high; 460 + ret.high = a.high ^ b.high; 470 + ret.high = a.high | b.high; 480 + ret.high = ~a.high; 526 - .high = a.high >> s }); 529 + ret.high = a.high >> s; 564 …ow = (FStar_UInt64_gte_mask(a.high, b.high) & ~FStar_UInt64_eq_mask(a.high, b.high)) | (FStar_UInt… 565 - .high = (FStar_UInt64_gte_mask(a.high, b.high) & ~FStar_UInt64_eq_mask(a.high, b.high)… 567 …ow = (FStar_UInt64_gte_mask(a.high, b.high) & ~FStar_UInt64_eq_mask(a.high, b.high)) | (FStar_UInt… [all …]
|
/trunk/main/soltools/giparser/ |
H A D | gi_list.cxx | 211 unsigned high = aChildren.size(); in lower_bound() local 213 for ( unsigned cur = high / 2; high > low; cur = (low + high) / 2 ) in lower_bound() 221 high = cur; in lower_bound()
|
/trunk/main/xmerge/java/xmerge/src/main/java/org/openoffice/xmerge/util/ |
H A D | EndianConverter.java | 118 int high, low; in readShort() local 120 high = value[1] & 0xFF; in readShort() 123 return (short)(high << 8 | low); in readShort()
|
/trunk/main/autodoc/inc/cosv/ |
H A D | comfunc.hxx | 43 inline bool in_range(E low, E val, E high); // return low <= val < high; 87 in_range(E low, E val, E high) { return low <= val AND val < high; } in in_range() argument
|
/trunk/main/offapi/com/sun/star/xml/crypto/ |
H A D | XXMLEncryptionTemplate.idl | 63 * except that the high level application tell the mechanism and parameters. 67 * or DTD and the encryption device. If so, the high level application takes the 74 * In some situation, the high level applications do not want to know anything
|
/trunk/main/sal/rtl/source/ |
H A D | surrogates.h | 42 #define SAL_RTL_COMBINE_SURROGATES(high, low) \ argument 43 ((((high) - SAL_RTL_FIRST_HIGH_SURROGATE) << 10) + \
|
H A D | uri.cxx | 74 inline sal_uInt32 combineSurrogates(sal_uInt32 high, sal_uInt32 low) in combineSurrogates() argument 76 return SAL_RTL_COMBINE_SURROGATES(high, low); in combineSurrogates()
|
/trunk/main/sc/source/ui/sidebar/ |
H A D | CellAppearancePropertyPanel.hrc | 54 //high contrast 127 //high contrast
|
H A D | CellAppearancePropertyPanel.src | 214 // high contrast 533 // high contrast
|
/trunk/main/cui/source/options/ |
H A D | optaccessibility.src | 106 Text [ en-US ] = "Options for high contrast appearance" ; 114 Text [ en-US ] = "Automatically ~detect high contrast mode of operating system" ;
|
/trunk/main/writerfilter/documentation/ |
H A D | sprms.txt | 6 7: justify high
|
/trunk/main/offapi/com/sun/star/util/ |
H A D | Color.idl | 34 <p>The byte order is from high to low:
|
/trunk/main/offapi/com/sun/star/frame/ |
H A D | DocumentTemplates.idl | 41 /** implements a high level interface on top of an ucb content provider
|
H A D | TemplateAccess.idl | 39 /** provides a high level api to organize document templates
|
/trunk/main/offapi/com/sun/star/graphic/ |
H A D | GraphicColorMode.idl | 42 /** used when requesting graphics which are suitable for a high-contrast
|
/trunk/main/chart2/source/controller/dialogs/ |
H A D | dlg_DataEditor.hrc | 41 // image lists (normal and high-contrast) for toolbox
|
/trunk/main/offapi/com/sun/star/ui/ |
H A D | ImageType.idl | 52 /** an image with high contrast colors.
|
/trunk/main/offapi/com/sun/star/awt/ |
H A D | XLayoutFlow.idl | 42 /** returns the preferred high this layout element would need for the given width. */
|
H A D | ActionEvent.idl | 39 <p>This high-level event is generated by a component (such as a Button)
|
/trunk/main/offapi/com/sun/star/document/ |
H A D | PrinterIndependentLayout.idl | 50 assuming a generic high-resolution printer (4800dpi) */
|
/trunk/main/vcl/source/fontsubset/ |
H A D | sft.cxx | 1304 signed int low, mid, high, lastfound = 0xffff; in GEbinsearch() local 1310 high = length - 1; in GEbinsearch() 1311 while(high >= low) { in GEbinsearch() 1312 mid = (high + low)/2; in GEbinsearch() 1316 high = --mid; in GEbinsearch()
|
/trunk/main/udkapi/com/sun/star/reflection/ |
H A D | ProxyFactory.idl | 49 Aggregation will no longer be supported as a high-level concept of UNO.
|
/trunk/main/svx/source/sidebar/area/ |
H A D | AreaPropertyPanel.hrc | 72 // high contrast
|