HomeSort by relevance Sort by last modified time
    Searched refs:realLength (Results 1 - 7 of 7) sorted by null

  /external/skia/src/ports/
SkFontHost_tables.cpp 171 size_t realLength = SkEndian_SwapBE32(header.fDir[i].fLength);
173 if (offset >= realLength) {
182 if (offset + length > realLength) {
183 length = realLength - offset;
  /external/webkit/Source/JavaScriptCore/wtf/unicode/icu/
UnicodeIcu.h 126 int realLength = u_strFoldCase(result, resultLength, src, srcLength, U_FOLD_CASE_DEFAULT, &status);
128 return realLength;
134 int realLength = u_strToLower(result, resultLength, src, srcLength, "", &status);
136 return realLength;
152 int realLength = u_strToUpper(result, resultLength, src, srcLength, "", &status);
154 return realLength;
  /external/webkit/Source/JavaScriptCore/wtf/unicode/glib/
UnicodeGLib.cpp 88 int realLength = getUTF16LengthFromUTF8(utf8Result.get(), utf8ResultLength);
89 if (realLength > resultLength) {
91 return realLength;
  /external/icu4c/test/cintltst/
sprpdata.c 156 int32_t realLength =0;
192 realLength +=2;
194 realLength++;
198 if(realLength != length){
  /external/icu4c/test/intltest/
testidn.cpp 363 int32_t realLength =0;
367 realLength +=2;
369 realLength++;
373 if(realLength != length){
  /external/webkit/Source/JavaScriptCore/wtf/text/
StringImpl.cpp 229 int32_t realLength = Unicode::toLower(data, length, m_data, m_length, &error);
230 if (!error && realLength == length)
232 newImpl = createUninitialized(realLength, data);
233 Unicode::toLower(data, realLength, m_data, m_length, &error);
263 int32_t realLength = Unicode::toUpper(data, length, m_data, m_length, &error);
264 if (!error && realLength == length)
266 newImpl = createUninitialized(realLength, data);
267 Unicode::toUpper(data, realLength, m_data, m_length, &error);
308 int32_t realLength = Unicode::foldCase(data, length, m_data, m_length, &error);
309 if (!error && realLength == length
    [all...]
  /frameworks/ex/chips/src/com/android/ex/chips/
RecipientEditTextView.java     [all...]

Completed in 100 milliseconds