OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:textLength
(Results
1 - 25
of
60
) sorted by null
1
2
3
/external/chromium/webkit/glue/
regular_expression_unittest.cc
19
const int
textLength
;
29
int matchedLength = matches[i].
textLength
;
31
WebString(matches[i].text, matches[i].
textLength
), 0, &matchedLength));
/external/chromium_org/third_party/icu/source/common/unicode/
chariter.h
659
int32_t
textLength
;
712
return
textLength
;
/external/icu4c/common/unicode/
chariter.h
665
int32_t
textLength
;
718
return
textLength
;
/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.cpp
39
// Define custom animated property '
textLength
'.
59
REGISTER_LOCAL_ANIMATED_PROPERTY(
textLength
)
93
PassRefPtr<SVGAnimatedLength> SVGTextContentElement::
textLength
()
113
return SVGTextQuery(renderer()).
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
156
int
textLength
= m_styleText.length();
157
for (i = replaceRangeEnd; i <
textLength
&& isSpaceOrNewline(m_styleText[i]); ++i) {
/external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderText.h
82
unsigned
textLength
() const { return m_text.length(); } // non virtual implementation of length()
169
// will use the more efficient
textLength
() instead, while
171
virtual unsigned length() const OVERRIDE FINAL { return
textLength
(); }
213
ASSERT_WITH_SECURITY_IMPLICATION(i <
textLength
());
219
if (i >=
textLength
())
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGTextLayoutAttributesBuilder.cpp
88
atCharacter += text->
textLength
();
92
unsigned
textLength
= text->
textLength
();
93
for (unsigned textPosition = 0; textPosition <
textLength
; ++textPosition) {
/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
269
final int
textLength
= mText.length();
270
if (
textLength
<= 0) {
273
if (offset >=
textLength
) {
280
while (start <
textLength
&& mText.charAt(start) == '\n'
284
if (start >=
textLength
) {
288
while (end <
textLength
&& !isEndBoundary(end)) {
296
final int
textLength
= mText.length();
297
if (
textLength
<= 0) {
304
if (end >
textLength
) {
305
end =
textLength
;
[
all
...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
CCMBlockCipher.java
321
int
textLength
= getAssociatedTextLength();
322
if (
textLength
< ((1 << 16) - (1 << 8)))
324
cMac.update((byte)(
textLength
>> 8));
325
cMac.update((byte)
textLength
);
333
cMac.update((byte)(
textLength
>> 24));
334
cMac.update((byte)(
textLength
>> 16));
335
cMac.update((byte)(
textLength
>> 8));
336
cMac.update((byte)
textLength
);
351
extra = (extra +
textLength
) % 16;
/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/icu4c/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/icu4c/i18n/
choicfmt.cpp
311
int32_t
textLength
= text.length();
313
for (int32_t j = 0; j <
textLength
; ++j) {
usrchimp.h
27
int32_t
textLength
; // exact length
45
int32_t
textLength
; // exact length
/external/icu4c/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/icu4c/test/letest/
gendata.cpp
41
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
,
/cts/tests/tests/accessibilityservice/src/android/accessibilityservice/cts/
AccessibilityTextTraversalTest.java
[
all
...]
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/
AdapterInputConnection.java
384
int
textLength
= getEditable().length();
385
if (start < 0 || end < 0 || start >
textLength
|| end >
textLength
) return true;
407
int
textLength
= getEditable().length();
412
if (a >
textLength
) a =
textLength
;
413
if (b >
textLength
) b =
textLength
;
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
TextFieldInputType.cpp
456
unsigned
textLength
= eventText.length();
457
while (
textLength
> 0 && isASCIILineBreak(eventText[
textLength
- 1]))
458
textLength
--;
459
eventText.truncate(
textLength
);
Completed in 3964 milliseconds
1
2
3