Searched defs:stringLength (Results 1 - 24 of 24) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DTextBreakIterator.cpp29 unsigned stringLength = string.length(); local
31 if (!stringLength)
36 return stringLength;
40 return stringLength;
50 unsigned stringLength = string.length(); local
52 if (!stringLength)
57 return std::min(stringLength, numGraphemeClusters);
61 return std::min(stringLength, numGraphemeClusters);
65 return stringLength;
/external/chromium_org/third_party/WebKit/Source/platform/fonts/mac/
H A DComplexTextController.cpp203 int stringLength = complexTextRun.stringLength(); local
204 TextBreakIterator* cursorPositionIterator = cursorMovementIterator(complexTextRun.characters(), stringLength);
219 clusterEnd = stringLength;
H A DComplexTextController.h77 static PassRefPtr<ComplexTextRun> create(CTRunRef ctRun, const SimpleFontData* fontData, const UChar* characters, unsigned stringLocation, size_t stringLength, CFRange runRange) argument
79 return adoptRef(new ComplexTextRun(ctRun, fontData, characters, stringLocation, stringLength, runRange));
82 static PassRefPtr<ComplexTextRun> create(const SimpleFontData* fontData, const UChar* characters, unsigned stringLocation, size_t stringLength, bool ltr) argument
84 return adoptRef(new ComplexTextRun(fontData, characters, stringLocation, stringLength, ltr));
91 size_t stringLength() const { return m_stringLength; } function in class:WebCore::ComplexTextController::ComplexTextRun
103 ComplexTextRun(CTRunRef, const SimpleFontData*, const UChar* characters, unsigned stringLocation, size_t stringLength, CFRange runRange);
104 ComplexTextRun(const SimpleFontData*, const UChar* characters, unsigned stringLocation, size_t stringLength, bool ltr);
/external/chromium_org/third_party/angle/src/libGLESv2/
H A DShader.cpp73 int stringLength; local
77 stringLength = length[i];
81 stringLength = (int)strlen(string[i]);
84 strncpy(code, string[i], stringLength);
85 code += stringLength;
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dusettest.c273 int32_t stringLength = 0; local
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; local
425 stringLength = (int32_t)(p - stringStart - 1);
426 strncpy(strCopy, stringStart, stringLength);
427 strCopy[stringLength]
[all...]
/external/icu4c/test/cintltst/
H A Dusettest.c273 int32_t stringLength = 0; local
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; local
425 stringLength = (int32_t)(p - stringStart - 1);
426 strncpy(strCopy, stringStart, stringLength);
427 strCopy[stringLength]
[all...]
/external/icu4c/test/intltest/
H A Dbytestrietest.cpp682 int32_t stringLength= (i&1) ? -1 : strlen(data[i].s); local
684 if( !USTRINGTRIE_HAS_VALUE(result=trie.next(data[i].s, stringLength)) ||
697 stringLength=strlen(data[i].s);
699 for(int32_t j=0; j<stringLength; ++j) {
767 int32_t stringLength=strlen(expectedString); local
768 int32_t partialLength=stringLength/3;
794 stringLength-partialLength)) ||
802 stringLength-partialLength)) ||
822 int32_t stringLength=strlen(expectedString); local
823 if(!trie.next(expectedString, stringLength/
[all...]
H A Ducharstrietest.cpp861 int32_t stringLength= (i&1) ? -1 : expectedString.length(); local
864 result=trie.next(expectedString.getTerminatedBuffer(), stringLength)) ||
877 stringLength=expectedString.length();
879 for(int32_t j=0; j<stringLength; ++j) {
939 int32_t stringLength=expectedString.length(); local
940 int32_t partialLength=stringLength/3;
966 stringLength-partialLength)) ||
974 stringLength-partialLength)) ||
994 int32_t stringLength=expectedString.length(); local
995 if(!trie.next(expectedString.getTerminatedBuffer(), stringLength/
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSTokenizer-in.cpp1511 unsigned stringLength = string.length(); local
1512 unsigned length = stringLength + m_parsedTextPrefixLength + m_parsedTextSuffixLength + 1;
1515 if (!stringLength || string.is8Bit()) {
1520 if (stringLength)
1521 memcpy(m_dataStart8.get() + m_parsedTextPrefixLength, string.characters8(), stringLength * sizeof(LChar));
1523 unsigned start = m_parsedTextPrefixLength + stringLength;
1542 ASSERT(stringLength);
1543 memcpy(m_dataStart16.get() + m_parsedTextPrefixLength, string.characters16(), stringLength * sizeof(UChar));
1545 unsigned start = m_parsedTextPrefixLength + stringLength;
/external/chromium_org/third_party/icu/source/i18n/
H A Dbmsearch.cpp60 int32_t stringLength();
274 int32_t Target::stringLength() function in class:Target
662 int32_t tlen = target->stringLength();
/external/harfbuzz/src/
H A Dharfbuzz-arabic.c886 static void shapedString(const HB_UChar16 *uc, hb_uint32 stringLength, hb_uint32 from, hb_uint32 len, HB_UChar16 *shapeBuffer, int *shapedLength, argument
899 assert(stringLength >= from + len);
911 if (f + l < stringLength)
942 const HB_UChar16 pch = nextChar(uc, stringLength, pos);
1062 if (f + l + item->item.pos < item->stringLength) {
1131 shapedString(item->string, item->stringLength, item->item.pos, item->item.length, shapedChars, &slen,
H A Dharfbuzz-shaper.cpp655 void HB_GetCharAttributes(const HB_UChar16 *string, hb_uint32 stringLength, argument
659 calcLineBreaks(string, stringLength, attributes);
687 void HB_GetWordBoundaries(const HB_UChar16 *string, hb_uint32 stringLength, argument
691 if (stringLength == 0)
695 for (hb_uint32 i = 1; i < stringLength; ++i) {
709 while (lookahead < stringLength) {
761 void HB_GetSentenceBoundaries(const HB_UChar16 *string, hb_uint32 stringLength, argument
765 if (stringLength == 0)
769 for (hb_uint32 i = 1; i < stringLength; ++i) {
778 while (lookahead < stringLength) {
[all...]
H A Dharfbuzz-shaper.h150 void HB_GetCharAttributes(const HB_UChar16 *string, hb_uint32 stringLength,
155 void HB_GetWordBoundaries(const HB_UChar16 *string, hb_uint32 stringLength,
160 void HB_GetSentenceBoundaries(const HB_UChar16 *string, hb_uint32 stringLength,
269 hb_uint32 stringLength; /* input: the length of the input in 16-bit words */ member in struct:HB_ShaperItem_
/external/harfbuzz_ng/src/hb-old/
H A Dharfbuzz-arabic.c886 static void shapedString(const HB_UChar16 *uc, hb_uint32 stringLength, hb_uint32 from, hb_uint32 len, HB_UChar16 *shapeBuffer, int *shapedLength, argument
899 assert(stringLength >= from + len);
911 if (f + l < stringLength)
942 const HB_UChar16 pch = nextChar(uc, stringLength, pos);
1062 if (f + l + item->item.pos < item->stringLength) {
1131 shapedString(item->string, item->stringLength, item->item.pos, item->item.length, shapedChars, &slen,
H A Dharfbuzz-shaper.h238 hb_uint32 stringLength; /* input: the length of the input in 16-bit words */ member in struct:HB_ShaperItem_
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorCSSAgent.cpp582 static size_t vendorPrefixLowerCase(const CharType* string, size_t stringLength, char (&buffer)[bufferLength]) argument
589 for (size_t i = 0; i < stringLength - 1; i++) {
/external/chromium_org/third_party/freetype/include/freetype/internal/
H A Dtttypes.h194 /* stringLength :: The length of the string in bytes. */
207 FT_UShort stringLength; member in struct:TT_NameEntryRec_
/external/chromium_org/third_party/skia/src/ports/
H A DSkFontHost_win_dw.cpp1154 UINT32 stringLength; variable
1155 HRBM(fStrings->GetStringLength(fIndex, &stringLength), "Could not get string length.");
1156 stringLength += 1;
1158 SkSMallocWCHAR wString(stringLength);
1159 HRBM(fStrings->GetString(fIndex, wString.get(), stringLength), "Could not get string.");
/external/freetype/include/freetype/internal/
H A Dtttypes.h194 /* stringLength :: The length of the string in bytes. */
207 FT_UShort stringLength; member in struct:TT_NameEntryRec_
/external/skia/src/ports/
H A DSkFontHost_win_dw.cpp1154 UINT32 stringLength; variable
1155 HRBM(fStrings->GetStringLength(fIndex, &stringLength), "Could not get string length.");
1156 stringLength += 1;
1158 SkSMallocWCHAR wString(stringLength);
1159 HRBM(fStrings->GetString(fIndex, wString.get(), stringLength), "Could not get string.");
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
H A DSerializedScriptValue.cpp298 int stringLength = string->Length(); local
300 ASSERT(stringLength >= 0 && utf8Length >= 0);
307 if (stringLength == utf8Length)
/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ...
/external/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 3015 milliseconds