HomeSort by relevance Sort by last modified time
    Searched defs:stringLength (Results 1 - 24 of 24) sorted by null

  /external/webkit/WebCore/platform/text/
TextStream.cpp 85 size_t stringLength = strlen(string);
87 m_text.grow(textLength + stringLength);
88 for (size_t i = 0; i < stringLength; ++i)
  /external/proguard/src/proguard/util/
ExtensionMatcher.java 58 int stringLength = string.length();
61 return string.regionMatches(true, stringLength - suffixLength, suffix, 0, suffixLength);
  /external/proguard/src/proguard/
DataEntryReaderFactory.java 150 int stringLength = string.length();
153 return string.regionMatches(true, stringLength - suffixLength, suffix, 0, suffixLength);
DataEntryWriterFactory.java 159 int stringLength = string.length();
162 return string.regionMatches(true, stringLength - suffixLength, suffix, 0, suffixLength);
  /external/proguard/src/proguard/gui/splash/
TypeWriterString.java 57 int stringLength = string.length();
58 int length = (int)(stringLength * t + 0.5);
63 if (t > 0.0 && length < stringLength)
  /external/emma/core/java12/com/vladium/util/
WCMatcher.java 238 final int stringLength = string.length;
269 if (si_i == stringLength) return false;
283 if (si + i == stringLength) return true;
297 final int stringLength = string.length;
328 if (si_i == stringLength) return false;
342 if (si + i == stringLength) return true;
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
NameLookupBuilder.java 160 final int stringLength = name.length();
196 } while (position < stringLength);
  /external/chromium/third_party/icu/source/test/cintltst/
usettest.c 273 int32_t stringLength = 0;
278 stringLength = (int32_t)(p - stringStart - 1);
279 strncpy(strCopy, stringStart, stringLength);
280 strCopy[stringLength] = 0;
282 u_charsToUChars(stringStart, ustr, stringLength);
284 if (uset_containsString(set, ustr, stringLength) == isIn) {
420 int32_t stringLength = 0;
425 stringLength = (int32_t)(p - stringStart - 1);
426 strncpy(strCopy, stringStart, stringLength);
427 strCopy[stringLength] = 0
    [all...]
  /external/icu4c/test/cintltst/
usettest.c 273 int32_t stringLength = 0;
278 stringLength = (int32_t)(p - stringStart - 1);
279 strncpy(strCopy, stringStart, stringLength);
280 strCopy[stringLength] = 0;
282 u_charsToUChars(stringStart, ustr, stringLength);
284 if (uset_containsString(set, ustr, stringLength) == isIn) {
420 int32_t stringLength = 0;
425 stringLength = (int32_t)(p - stringStart - 1);
426 strncpy(strCopy, stringStart, stringLength);
427 strCopy[stringLength] = 0
    [all...]
  /external/proguard/src/proguard/classfile/constant/
Utf8Constant.java 191 int stringLength = string.length();
192 for (int stringIndex = 0; stringIndex < stringLength; stringIndex++)
208 for (int stringIndex = 0; stringIndex < stringLength; stringIndex++)
  /external/webkit/WebCore/platform/graphics/mac/
ComplexTextController.h 69 static PassRefPtr<ComplexTextRun> create(CTRunRef ctRun, const SimpleFontData* fontData, const UChar* characters, unsigned stringLocation, size_t stringLength)
71 return adoptRef(new ComplexTextRun(ctRun, fontData, characters, stringLocation, stringLength));
75 static PassRefPtr<ComplexTextRun> create(ATSUTextLayout atsuTextLayout, const SimpleFontData* fontData, const UChar* characters, unsigned stringLocation, size_t stringLength, bool ltr, bool directionalOverride)
77 return adoptRef(new ComplexTextRun(atsuTextLayout, fontData, characters, stringLocation, stringLength, ltr, directionalOverride));
80 static PassRefPtr<ComplexTextRun> create(const SimpleFontData* fontData, const UChar* characters, unsigned stringLocation, size_t stringLength, bool ltr)
82 return adoptRef(new ComplexTextRun(fontData, characters, stringLocation, stringLength, ltr));
89 size_t stringLength() const { return m_stringLength; }
99 ComplexTextRun(CTRunRef, const SimpleFontData*, const UChar* characters, unsigned stringLocation, size_t stringLength);
103 ComplexTextRun(ATSUTextLayout, const SimpleFontData*, const UChar* characters, unsigned stringLocation, size_t stringLength, bool ltr, bool directionalOverride);
106 ComplexTextRun(const SimpleFontData*, const UChar* characters, unsigned stringLocation, size_t stringLength, bool ltr)
    [all...]
ComplexTextController.cpp 112 hitGlyphEnd = max<CFIndex>(hitGlyphStart, j + 1 < complexTextRun.glyphCount() ? complexTextRun.indexAt(j + 1) : complexTextRun.stringLength());
114 hitGlyphEnd = max<CFIndex>(hitGlyphStart, j > 0 ? complexTextRun.indexAt(j - 1) : complexTextRun.stringLength());
120 int stringLength = complexTextRun.stringLength();
121 TextBreakIterator* cursorPositionIterator = cursorMovementIterator(complexTextRun.characters(), stringLength);
136 clusterEnd = stringLength;
314 ComplexTextController::ComplexTextRun::ComplexTextRun(const SimpleFontData* fontData, const UChar* characters, unsigned stringLocation, size_t stringLength, bool ltr)
318 , m_stringLength(stringLength)
378 glyphEndOffset = max<unsigned>(glyphStartOffset, g + 1 < glyphCount ? complexTextRun.indexAt(g + 1) : complexTextRun.stringLength());
380 glyphEndOffset = max<unsigned>(glyphStartOffset, g > 0 ? complexTextRun.indexAt(g - 1) : complexTextRun.stringLength());
    [all...]
  /external/chromium/third_party/icu/source/tools/toolutil/
pkgitems.cpp 227 int32_t i, stringLength;
230 stringLength=udata_readInt32(ds, (int32_t)*p);
233 offset+=1+((stringLength+1)+1)/2;
249 for(i=0; i<stringLength && p16[i]!=u16; ++i) {}
260 stringLength=i;
263 if(i!=stringLength) {
273 if(stringLength>=(int32_t)sizeof(localeID)) {
275 itemName, res, stringLength);
283 for(i=0; i<stringLength; ++i) {
289 for(i=0; i<stringLength; ++i)
    [all...]
  /external/webkit/JavaScriptCore/runtime/
JSString.h 108 return r->stringLength();
156 unsigned stringLength() { return m_stringLength; }
194 , m_stringLength(rope->stringLength())
  /libcore/luni/src/main/java/java/lang/
AbstractStringBuilder.java 417 int stringLength = string.length();
418 int diff = end - start - stringLength;
423 + stringLength, count - end);
429 + stringLength, count - end);
441 string._getChars(0, stringLength, value, start);
  /external/chromium/third_party/icu/source/i18n/
bmsearch.cpp 60 int32_t stringLength();
272 int32_t Target::stringLength()
709 int32_t tlen = target->stringLength();
  /external/icu4c/i18n/
bmsearch.cpp 60 int32_t stringLength();
274 int32_t Target::stringLength()
662 int32_t tlen = target->stringLength();
  /libcore/luni/src/main/java/java/math/
BigInteger.java     [all...]
  /libcore/luni/src/main/native/
org_apache_harmony_xml_ExpatParser.cpp     [all...]
  /external/webkit/WebCore/rendering/
SVGRootInlineBox.cpp 610 unsigned int stringLength = itSearch - it;
614 textWidth = styleToUse->font().width(svgTextRunForInlineTextBox(stringStart, stringLength, styleToUse, textBox, (*it).x));
627 textBox->paintCharacters(m_paintInfo, m_tx, m_ty, *it, stringStart, stringLength, m_textPaintInfo);
    [all...]
  /external/webkit/WebKitTools/DumpRenderTree/win/
DumpRenderTree.cpp 687 unsigned stringLength = SysStringLen(resultString);
688 int bufferSize = ::WideCharToMultiByte(CP_UTF8, 0, resultString, stringLength, 0, 0, 0, 0);
690 ::WideCharToMultiByte(CP_UTF8, 0, resultString, stringLength, buffer, bufferSize + 1, 0, 0);
    [all...]
  /external/freetype/include/freetype/internal/
tttypes.h 194 /* stringLength :: The length of the string in bytes. */
207 FT_UShort stringLength;
    [all...]
  /external/emma/lib/
emma.jar 
  /prebuilt/darwin-x86/swt/
swt.jar 

Completed in 701 milliseconds