HomeSort by relevance Sort by last modified time
    Searched refs:stringLength (Results 1 - 25 of 36) sorted by null

1 2

  /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/proguard/src/proguard/util/
ExtensionMatcher.java 58 int stringLength = string.length();
61 return string.regionMatches(true, stringLength - suffixLength, suffix, 0, suffixLength);
  /external/freetype/src/base/
ftsnames.c 61 if ( entry->stringLength > 0 && entry->string == NULL )
67 if ( FT_NEW_ARRAY ( entry->string, entry->stringLength ) ||
69 FT_STREAM_READ( entry->string, entry->stringLength ) )
72 entry->stringLength = 0;
81 aname->string_len = entry->stringLength;
  /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...]
ComplexTextControllerATSUI.cpp 143 ComplexTextController::ComplexTextRun::ComplexTextRun(ATSUTextLayout atsuTextLayout, const SimpleFontData* fontData, const UChar* characters, unsigned stringLocation, size_t stringLength, bool ltr, bool directionalOverride)
147 , m_stringLength(stringLength)
165 for (size_t i = 0; i < stringLength; ++i) {
171 substituteCharacters.grow(stringLength);
172 memcpy(substituteCharacters.data(), characters, stringLength * sizeof(UChar));
185 Vector<UChar, 256> shapedArabic(stringLength);
186 shapeArabic(substituteCharacters.isEmpty() ? characters : substituteCharacters.data(), shapedArabic.data(), stringLength);
194 substituteCharacters.grow(stringLength + 2);
196 memcpy(substituteCharacters.data() + 1, characters, stringLength * sizeof(UChar));
197 substituteCharacters[stringLength + 1] = popDirectionalFormatting
    [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...]
ComplexTextControllerCoreText.cpp 43 ComplexTextController::ComplexTextRun::ComplexTextRun(CTRunRef ctRun, const SimpleFontData* fontData, const UChar* characters, unsigned stringLocation, size_t stringLength)
48 , m_stringLength(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;
  /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/
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/freetype/src/sfnt/
sfdriver.c 233 if ( name->nameID == 6 && name->stringLength > 0 )
251 FT_UInt len = name->stringLength / 2;
257 if ( !FT_ALLOC( result, name->stringLength + 1 ) )
265 FT_FRAME_ENTER( name->stringLength ) )
268 name->stringLength = 0;
293 FT_UInt len = name->stringLength;
308 name->stringLength = 0;
ttload.c 765 FT_FRAME_USHORT( stringLength ),
821 if ( entry->stringLength == 0 )
827 entry->stringOffset + entry->stringLength > storage_limit )
831 entry->stringLength = 0;
    [all...]
sfobjs.c 59 len = (FT_UInt)entry->stringLength / 2;
90 len = (FT_UInt)entry->stringLength;
169 if ( rec->nameID == nameid && rec->stringLength > 0 )
271 if ( FT_QNEW_ARRAY ( rec->string, rec->stringLength ) ||
273 FT_STREAM_READ( rec->string, rec->stringLength ) )
276 rec->stringLength = 0;
    [all...]
  /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/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/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/WebKit/mac/Misc/
WebNSAttributedStringExtras.mm 125 NSUInteger stringLength = 0;
167 [string replaceCharactersInRange:NSMakeRange(stringLength, 0) withString:substring.get()];
168 [string setAttributes:attrs.get() range:NSMakeRange(stringLength, currentTextLength)];
169 stringLength += currentTextLength;
WebNSURLExtras.mm 180 unsigned stringLength = [string length];
181 NSRange remaining = NSMakeRange(0, stringLength);
191 remaining.length = stringLength - remaining.location;
203 hostNameEnd.location = stringLength;
207 remaining.length = stringLength - remaining.location;
227 remaining.length = stringLength - remaining.location;
278 unsigned stringLength = [string length];
290 NSRange hostNameTerminator = [string rangeOfCharacterFromSet:hostTerminators options:0 range:NSMakeRange(authorityStart, stringLength - authorityStart)];
291 unsigned hostNameEnd = hostNameTerminator.location == NSNotFound ? stringLength : hostNameTerminator.location;
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
NameLookupBuilder.java 160 final int stringLength = name.length();
196 } while (position < 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);
  /libcore/luni/src/main/java/java/math/
BigInteger.java     [all...]
  /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();

Completed in 1409 milliseconds

1 2