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

1 2 3 4

  /external/chromium/third_party/icu/source/common/
chariter.cpp 22 : textLength(0), pos(0), begin(0), end(0) {
26 : textLength(length), pos(0), begin(0), end(length) {
27 if(textLength < 0) {
28 textLength = end = 0;
33 : textLength(length), pos(position), begin(0), end(length) {
34 if(textLength < 0) {
35 textLength = end = 0;
45 : textLength(length), pos(position), begin(textBegin), end(textEnd) {
46 if(textLength < 0) {
47 textLength = 0
    [all...]
ubrk.cpp 34 int32_t textLength,
80 ubrk_setText(uBI, text, textLength, status);
97 int32_t textLength,
114 ubrk_setText(uBI, text, textLength, status);
166 int32_t textLength,
171 utext_openUChars(&ut, text, textLength, status);
  /external/icu4c/common/
chariter.cpp 22 : textLength(0), pos(0), begin(0), end(0) {
26 : textLength(length), pos(0), begin(0), end(length) {
27 if(textLength < 0) {
28 textLength = end = 0;
33 : textLength(length), pos(position), begin(0), end(length) {
34 if(textLength < 0) {
35 textLength = end = 0;
45 : textLength(length), pos(position), begin(textBegin), end(textEnd) {
46 if(textLength < 0) {
47 textLength = 0
    [all...]
ubrk.cpp 34 int32_t textLength,
80 ubrk_setText(uBI, text, textLength, status);
97 int32_t textLength,
114 ubrk_setText(uBI, text, textLength, status);
166 int32_t textLength,
171 utext_openUChars(&ut, text, textLength, status);
  /external/chromium/third_party/icu/source/i18n/
search.cpp 35 m_search_->textLength = other.m_search_->textLength;
142 m_search_->textLength = m_text_.length();
172 m_search_->textLength == that.m_search_->textLength &&
175 m_search_->textLength * sizeof(UChar)) == 0));
204 setOffset(m_search_->textLength, status);
205 return handlePrev(m_search_->textLength, status);
226 int32_t textlength = m_search_->textLength; local
    [all...]
usrchimp.h 26 int32_t textLength; // exact length
43 int32_t textLength; // exact length
utrans.cpp 437 int32_t* textLength,
450 int32_t textLen = (textLength == NULL || *textLength < 0)
451 ? u_strlen(text) : *textLength;
460 if(textLength != NULL) {
461 *textLength = textLen;
468 int32_t* textLength,
480 int32_t textLen = (textLength == NULL || *textLength < 0)
481 ? u_strlen(text) : *textLength;
    [all...]
  /external/webkit/WebCore/platform/text/
TextStream.cpp 86 size_t textLength = m_text.size();
87 m_text.grow(textLength + stringLength);
89 m_text[textLength + i] = string[i];
  /external/chromium/third_party/icu/public/common/unicode/
urep.h 102 * @param textLength the number of UChars at text, or -1 if text
110 int32_t textLength);
ubrk.h 206 * @param textLength The number of characters in text, or -1 if null-terminated.
216 int32_t textLength,
226 * @param textLength The number of characters in text, or -1 if null-terminated.
238 int32_t textLength,
284 * @param textLength The length of the text
291 int32_t textLength,
chariter.h 659 int32_t textLength;
712 return textLength;
  /external/icu4c/common/unicode/
urep.h 102 * @param textLength the number of UChars at text, or -1 if text
110 int32_t textLength);
ubrk.h 207 * @param textLength The number of characters in text, or -1 if null-terminated.
217 int32_t textLength,
227 * @param textLength The number of characters in text, or -1 if null-terminated.
239 int32_t textLength,
304 * @param textLength The length of the text
311 int32_t textLength,
chariter.h 659 int32_t textLength;
712 return textLength;
  /external/icu4c/i18n/
search.cpp 36 m_search_->textLength = other.m_search_->textLength;
159 m_search_->textLength = m_text_.length();
190 m_search_->textLength == that.m_search_->textLength &&
193 m_search_->textLength * sizeof(UChar)) == 0));
222 setOffset(m_search_->textLength, status);
223 return handlePrev(m_search_->textLength, status);
244 int32_t textlength = m_search_->textLength; local
    [all...]
usrchimp.h 27 int32_t textLength; // exact length
45 int32_t textLength; // exact length
utrans.cpp 437 int32_t* textLength,
450 int32_t textLen = (textLength == NULL || *textLength < 0)
451 ? u_strlen(text) : *textLength;
460 if(textLength != NULL) {
461 *textLength = textLen;
468 int32_t* textLength,
480 int32_t textLen = (textLength == NULL || *textLength < 0)
481 ? u_strlen(text) : *textLength;
    [all...]
  /external/webkit/WebCore/icu/unicode/
ucoleitr.h 105 * @param textLength The number of characters in text, or -1 if null-terminated
113 int32_t textLength,
199 * @param textLength The length of text, or -1 if null-terminated.
207 int32_t textLength,
ubrk.h 307 * @param textLength The number of characters in text, or -1 if null-terminated.
317 int32_t textLength,
327 * @param textLength The number of characters in text, or -1 if null-terminated.
339 int32_t textLength,
385 * @param textLength The length of the text
392 int32_t textLength,
  /external/webkit/WebCore/rendering/
RenderSVGInlineText.cpp 71 rects.append(computeRepaintRectForRange(0, 0, textLength()));
76 quads.append(computeRepaintQuadForRange(0, 0, textLength()));
96 endPos = textLength();
100 endPos = textLength();
152 if (!textBox || textLength() == 0)
  /external/webkit/WebCore/svg/
SVGTextContentElement.h 67 DECLARE_ANIMATED_PROPERTY(SVGTextContentElement, SVGNames::textLengthAttr, SVGLength, TextLength, textLength)
SVGTextContentElement.idl 38 readonly attribute SVGAnimatedLength textLength;
  /external/chromium/third_party/icu/public/i18n/unicode/
ucoleitr.h 113 * @param textLength The number of characters in text, or -1 if null-terminated
121 int32_t textLength,
261 * @param textLength The length of text, or -1 if null-terminated.
269 int32_t textLength,
  /external/icu4c/i18n/unicode/
ucoleitr.h 113 * @param textLength The number of characters in text, or -1 if null-terminated
121 int32_t textLength,
261 * @param textLength The length of text, or -1 if null-terminated.
269 int32_t textLength,
  /external/webkit/WebCore/html/
HTMLTextAreaElement.idl 40 readonly attribute unsigned long textLength;

Completed in 471 milliseconds

1 2 3 4