Home | History | Annotate | Download | only in src

Lines Matching refs:textLength

309     uint32_t textLength,
313 , mTextLength(textLength)
355 OUT uint32_t* textLength)
360 *textLength = 0;
364 *textLength = mTextLength - textPosition;
371 OUT uint32_t* textLength)
377 *textLength = 0;
381 *textLength = textPosition;
390 uint32_t* textLength,
398 OUT uint32_t* textLength,
403 *textLength = mTextLength - textPosition;
412 uint32_t textLength,
417 while (textLength > 0)
419 Run *run = FetchNextRun(&textLength);
428 uint32_t textLength,
432 uint32_t textLength,
438 uint32_t textLength,
442 Run *FetchNextRun(IN OUT uint32_t* textLength)
451 if (*textLength < mCurrentRun->mTextLength)
453 SplitCurrentRun (mCurrentRun->mTextStart + *textLength);
460 *textLength -= origRun->mTextLength;
618 uint32_t textLength = buffer->len;
620 TextAnalysis analysis(textString, textLength, NULL, readingDirection);
637 uint32_t maxGlyphCount = 3 * textLength / 2 + 16;
664 const uint32_t featureRangeLengths[] = { textLength };
666 uint16_t* clusterMap = (uint16_t*) malloc (textLength * sizeof (uint16_t));
668 malloc (textLength * sizeof (DWRITE_SHAPING_TEXT_PROPERTIES));
674 hr = analyzer->GetGlyphs (textString, textLength, fontFace, false,
720 clusterMap, textProperties, textLength, glyphIndices,
742 runHead->mScript, textLength, glyphCount, textString, clusterMap,
776 uint16_t* modifiedClusterMap = (uint16_t*) malloc (textLength * sizeof (uint16_t));
784 textLength, glyphCount, maxGlyphCount, clusterMap, glyphIndices,