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

1 2 3 4

  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTextAreaElement.h 48 int textLength() const { return value().length(); }
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGTextContentElement.h 62 SVGAnimatedLength* textLength() { return m_textLength.get(); }
  /external/chromium_org/third_party/icu/source/common/unicode/
chariter.h 659 int32_t textLength;
712 return textLength;
  /external/icu/icu4c/source/common/unicode/
chariter.h 665 int32_t textLength;
718 return textLength;
  /packages/apps/ContactsCommon/src/com/android/contacts/common/format/
FormatUtils.java 146 int textLength = text.length();
149 if (prefixLength == 0 || textLength < prefixLength) {
154 while (i < textLength) {
156 while (i < textLength && !Character.isLetterOrDigit(text.charAt(i))) {
160 if (i + prefixLength > textLength) {
176 while (i < textLength && Character.isLetterOrDigit(text.charAt(i))) {
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorStyleTextEditor.cpp 133 int textLength = m_styleText.length();
134 for (i = replaceRangeEnd; i < textLength && isSpaceOrNewline(m_styleText[i]); ++i) {
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderText.h 84 unsigned textLength() const { return m_text.length(); } // non virtual implementation of length()
170 // will use the more efficient textLength() instead, while
172 virtual unsigned length() const OVERRIDE FINAL { return textLength(); }
214 ASSERT_WITH_SECURITY_IMPLICATION(i < textLength());
220 if (i >= textLength())
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGTextLayoutAttributesBuilder.cpp 89 atCharacter += text->textLength();
93 unsigned textLength = text->textLength();
94 for (unsigned textPosition = 0; textPosition < textLength; ++textPosition) {
SVGTextMetricsBuilder.cpp 46 unsigned textLength() const { return static_cast<unsigned>(m_run.charactersLength()); }
50 return U16_IS_LEAD(m_run[textPosition]) && textPosition + 1 < textLength() && U16_IS_TRAIL(m_run[textPosition + 1]);
77 , m_run(SVGTextMetrics::constructTextRun(text, 0, text->textLength()))
201 unsigned textLength = calculator.textLength();
204 for (; textPosition < textLength; textPosition += currentMetrics.length()) {
  /external/chromium_org/third_party/eyesfree/src/android/java/src/com/googlecode/eyesfree/braille/selfbraille/
WriteData.java 134 int textLength = mText.length();
135 if (selectionStart > textLength || selectionEnd > textLength) {
  /frameworks/base/core/java/android/view/
AccessibilityIterators.java 267 final int textLength = mText.length();
268 if (textLength <= 0) {
271 if (offset >= textLength) {
278 while (start < textLength && mText.charAt(start) == '\n'
282 if (start >= textLength) {
286 while (end < textLength && !isEndBoundary(end)) {
294 final int textLength = mText.length();
295 if (textLength <= 0) {
302 if (end > textLength) {
303 end = textLength;
    [all...]
  /external/chromium_org/third_party/icu/source/common/
usc_impl.c 43 int32_t textLength;
252 scriptRun->textLength = length;
263 if (scriptRun == NULL || scriptRun->scriptLimit >= scriptRun->textLength) {
270 for (scriptRun->scriptStart = scriptRun->scriptLimit; scriptRun->scriptLimit < scriptRun->textLength; scriptRun->scriptLimit += 1) {
280 if (high >= 0xD800 && high <= 0xDBFF && scriptRun->scriptLimit < scriptRun->textLength - 1) {
  /external/chromium_org/third_party/icu/source/i18n/
usrchimp.h 27 int32_t textLength; // exact length
45 int32_t textLength; // exact length
  /external/chromium_org/third_party/icu/source/io/
ustdio.c 128 int32_t textLength;
182 textLength = f->fTranslit->length;
184 pos.contextLimit = textLength;
186 pos.limit = textLength;
190 &textLength,
205 textLength = f->fTranslit->length;
210 &textLength,
  /external/chromium_org/third_party/icu/source/test/letest/
gendata.cpp 41 le_int32 textLength;
  /external/icu/icu4c/source/common/
usc_impl.c 43 int32_t textLength;
252 scriptRun->textLength = length;
263 if (scriptRun == NULL || scriptRun->scriptLimit >= scriptRun->textLength) {
270 for (scriptRun->scriptStart = scriptRun->scriptLimit; scriptRun->scriptLimit < scriptRun->textLength; scriptRun->scriptLimit += 1) {
280 if (high >= 0xD800 && high <= 0xDBFF && scriptRun->scriptLimit < scriptRun->textLength - 1) {
  /external/icu/icu4c/source/i18n/
choicfmt.cpp 311 int32_t textLength = text.length();
313 for (int32_t j = 0; j < textLength; ++j) {
  /external/icu/icu4c/source/io/
ustdio.c 128 int32_t textLength;
182 textLength = f->fTranslit->length;
184 pos.contextLimit = textLength;
186 pos.limit = textLength;
190 &textLength,
205 textLength = f->fTranslit->length;
210 &textLength,
  /external/icu/icu4c/source/test/letest/
gendata.cpp 43 le_int32 textLength;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
ValueParser.java 231 int textLength = rawValue[valueIndex + 1] & 0xff;
252 TextAttribute attr = new TextAttribute(start, textLength,
  /packages/apps/Calculator/src/com/android/calculator2/
CalculatorEditText.java 133 final int textLength = text.length();
134 if (getSelectionStart() != textLength || getSelectionEnd() != textLength) {
136 setSelection(textLength);
  /cts/tests/tests/accessibilityservice/src/android/accessibilityservice/cts/
AccessibilityTextTraversalTest.java     [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
CCMBlockCipher.java 383 int textLength = getAssociatedTextLength();
384 if (textLength < ((1 << 16) - (1 << 8)))
386 cMac.update((byte)(textLength >> 8));
387 cMac.update((byte)textLength);
395 cMac.update((byte)(textLength >> 24));
396 cMac.update((byte)(textLength >> 16));
397 cMac.update((byte)(textLength >> 8));
398 cMac.update((byte)textLength);
412 extra = (extra + textLength) % 16;
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/
AdapterInputConnection.java 403 int textLength = mEditable.length();
404 if (start < 0 || end < 0 || start > textLength || end > textLength) return true;
426 int textLength = mEditable.length();
431 if (a > textLength) a = textLength;
432 if (b > textLength) b = textLength;
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
TextFieldInputType.cpp 432 unsigned textLength = eventText.length();
433 while (textLength > 0 && isASCIILineBreak(eventText[textLength - 1]))
434 textLength--;
435 eventText.truncate(textLength);

Completed in 1524 milliseconds

1 2 3 4