Home
last modified time | relevance | path

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

/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/
DCSpinner.java342 Point sSize; in layout() local
343 sSize = m_spinner.computeSize(SWT.DEFAULT, SWT.DEFAULT, flushCache); in layout()
344 sSize.y = Math.min(sSize.y, Math.min(tSize.y, cRect.height)); in layout()
345 sSize.x = Math.min(sSize.x, cRect.width); in layout()
350 cRect.x + cRect.width - sSize.x + 1, in layout()
352 sSize.x, in layout()
355 win32Hack.setBounds(cRect.x, cRect.y, cRect.width - arrowWidth, sSize.y); in layout()
393 Point sSize; in layout() local
394 sSize = m_spinner.computeSize(SWT.DEFAULT, SWT.DEFAULT, flushCache); in layout()
395 sSize.y = Math.min(sSize.y, Math.min(tSize.y, cRect.height)); in layout()
[all …]
/external/gptfdisk/
Dsupport.cc100 uint64_t GetSectorNum(uint64_t low, uint64_t high, uint64_t def, uint64_t sSize, in GetSectorNum() argument
110 response = IeeeToInt(line, sSize, low, high, def); in GetSectorNum()
132 uint64_t IeeeToInt(string inValue, uint64_t sSize, uint64_t low, uint64_t high, uint64_t def) { in IeeeToInt() argument
139 if (sSize == 0) { in IeeeToInt()
140 sSize = SECTOR_SIZE; in IeeeToInt()
172 mult = bytesPerUnit / sSize; in IeeeToInt()
173 divide = sSize / bytesPerUnit; in IeeeToInt()
Dsupport.h77 uint64_t GetSectorNum(uint64_t low, uint64_t high, uint64_t def, uint64_t sSize, const std::string&…
78 uint64_t IeeeToInt(string IeeeValue, uint64_t sSize, uint64_t low, uint64_t high, uint64_t def = 0);
Dgptcl.cc66 uint64_t low, high, startSector, endSector, sSize; in DoOptions() local
157 sSize = GetBlockSize(); in DoOptions()
291 startSector = IeeeToInt(GetString(newPartInfo, 2), sSize, low, high, low); in DoOptions()
292 endSector = IeeeToInt(GetString(newPartInfo, 3), sSize, startSector, high, high); in DoOptions()
/external/icu/icu4c/source/io/
Dufmt_cmn.c225 ufmt_defaultCPToUnicode(const char *s, int32_t sSize, in ufmt_defaultCPToUnicode() argument
235 if(sSize <= 0) { in ufmt_defaultCPToUnicode()
236 sSize = uprv_strlen(s) + 1; in ufmt_defaultCPToUnicode()
243 ucnv_toUnicode(defConverter, &alias, alias + tSize, &s, s + sSize - 1, in ufmt_defaultCPToUnicode()
Dufmt_cmn.h154 ufmt_defaultCPToUnicode(const char *s, int32_t sSize,
/external/icu/icu4c/source/test/intltest/
Dtscoll.cpp97 int32_t sSize = pieceSize, tSize = pieceSize; in compareUsingPartials() local
102 while(sSize == pieceSize && tSize == pieceSize && partialSKResult == 0) { in compareUsingPartials()
105 sSize = ucol_nextSortKeyPart(coll, &sIter, sState, sBuf, pieceSize, &status); in compareUsingPartials()
/external/icu/icu4c/source/test/cintltst/
Dcallcoll.c234 int32_t sSize = pieceSize, tSize = pieceSize; in compareUsingPartials() local
245 while(sSize == pieceSize && tSize == pieceSize && partialSKResult == 0) { in compareUsingPartials()
248 sSize = ucol_nextSortKeyPart(coll, &sIter, sState, sBuf, pieceSize, status); in compareUsingPartials()
/external/skia/src/ports/
DSkFontHost_win.cpp91 size_t sSize = WideCharToMultiByte(CP_UTF8, 0, t, -1, NULL, 0, NULL, NULL); in tchar_to_skstring() local
92 s->resize(sSize); in tchar_to_skstring()
93 WideCharToMultiByte(CP_UTF8, 0, t, -1, s->writable_str(), sSize, NULL, NULL); in tchar_to_skstring()