Home
last modified time | relevance | path

Searched refs:sSize (Results 1 – 6 of 6) 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/icu4c/io/
Dufmt_cmn.c222 ufmt_defaultCPToUnicode(const char *s, int32_t sSize, in ufmt_defaultCPToUnicode() argument
232 if(sSize <= 0) { in ufmt_defaultCPToUnicode()
233 sSize = uprv_strlen(s) + 1; in ufmt_defaultCPToUnicode()
240 ucnv_toUnicode(defConverter, &alias, alias + tSize, &s, s + sSize - 1, in ufmt_defaultCPToUnicode()
Dufmt_cmn.h153 ufmt_defaultCPToUnicode(const char *s, int32_t sSize,
/external/webkit/Source/JavaScriptCore/runtime/
DStringPrototype.cpp858 int sSize = s.length(); in stringProtoFuncToLowerCase() local
859 if (!sSize) in stringProtoFuncToLowerCase()
863 Vector<UChar> buffer(sSize); in stringProtoFuncToLowerCase()
866 for (int i = 0; i < sSize; i++) { in stringProtoFuncToLowerCase()
875 int length = Unicode::toLower(buffer.data(), sSize, sData, sSize, &error); in stringProtoFuncToLowerCase()
878 length = Unicode::toLower(buffer.data(), length, sData, sSize, &error); in stringProtoFuncToLowerCase()
882 if (length == sSize) { in stringProtoFuncToLowerCase()
898 int sSize = s.length(); in stringProtoFuncToUpperCase() local
899 if (!sSize) in stringProtoFuncToUpperCase()
903 Vector<UChar> buffer(sSize); in stringProtoFuncToUpperCase()
[all …]
/external/icu4c/test/intltest/
Dtscoll.cpp113 int32_t sSize = pieceSize, tSize = pieceSize; in compareUsingPartials() local
118 while(sSize == pieceSize && tSize == pieceSize && partialSKResult == 0) { in compareUsingPartials()
121 sSize = ucol_nextSortKeyPart(coll, &sIter, sState, sBuf, pieceSize, &status); in compareUsingPartials()
/external/icu4c/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()