OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:textStr
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/third_party/icu/source/common/
schriter.cpp
32
StringCharacterIterator::StringCharacterIterator(const UnicodeString&
textStr
)
33
: UCharCharacterIterator(
textStr
.getBuffer(),
textStr
.length()),
34
text(
textStr
)
40
StringCharacterIterator::StringCharacterIterator(const UnicodeString&
textStr
,
42
: UCharCharacterIterator(
textStr
.getBuffer(),
textStr
.length(), textPos),
43
text(
textStr
)
49
StringCharacterIterator::StringCharacterIterator(const UnicodeString&
textStr
,
53
: UCharCharacterIterator(
textStr
.getBuffer(), textStr.length(), textBegin, textEnd, textPos)
[
all
...]
/external/icu/icu4c/source/common/
schriter.cpp
32
StringCharacterIterator::StringCharacterIterator(const UnicodeString&
textStr
)
33
: UCharCharacterIterator(
textStr
.getBuffer(),
textStr
.length()),
34
text(
textStr
)
40
StringCharacterIterator::StringCharacterIterator(const UnicodeString&
textStr
,
42
: UCharCharacterIterator(
textStr
.getBuffer(),
textStr
.length(), textPos),
43
text(
textStr
)
49
StringCharacterIterator::StringCharacterIterator(const UnicodeString&
textStr
,
53
: UCharCharacterIterator(
textStr
.getBuffer(), textStr.length(), textBegin, textEnd, textPos)
[
all
...]
/external/chromium_org/third_party/icu/source/common/unicode/
schriter.h
46
* Create an iterator over the UnicodeString referred to by "
textStr
".
49
* @param
textStr
The unicode string used to create an iterator
52
StringCharacterIterator(const UnicodeString&
textStr
);
55
* Create an iterator over the UnicodeString referred to by "
textStr
".
59
* @param
textStr
The unicode string used to create an iterator
63
StringCharacterIterator(const UnicodeString&
textStr
,
67
* Create an iterator over the UnicodeString referred to by "
textStr
".
76
* @param
textStr
The unicode string used to create the StringCharacterIterator
82
StringCharacterIterator(const UnicodeString&
textStr
,
/external/icu/icu4c/source/common/unicode/
schriter.h
46
* Create an iterator over the UnicodeString referred to by "
textStr
".
49
* @param
textStr
The unicode string used to create an iterator
52
StringCharacterIterator(const UnicodeString&
textStr
);
55
* Create an iterator over the UnicodeString referred to by "
textStr
".
59
* @param
textStr
The unicode string used to create an iterator
63
StringCharacterIterator(const UnicodeString&
textStr
,
67
* Create an iterator over the UnicodeString referred to by "
textStr
".
76
* @param
textStr
The unicode string used to create the StringCharacterIterator
82
StringCharacterIterator(const UnicodeString&
textStr
,
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/
ImeAdapter.java
425
String
textStr
= text.toString();
426
int keyCode = shouldSendKeyEventWithKeyCode(
textStr
);
433
KeyEvent keyEvent = getTypedKeyEventGuess(mLastComposeText,
textStr
);
438
} else if (!
textStr
.equals(mLastComposeText)) {
478
nativeCommitText(mNativeImeAdapterAndroid,
textStr
);
479
textStr
= null;
481
nativeSetComposingText(mNativeImeAdapterAndroid, text,
textStr
, newCursorPosition);
492
mLastComposeText =
textStr
;
724
String
textStr
, int newCursorPosition);
726
private native void nativeCommitText(long nativeImeAdapterAndroid, String
textStr
);
[
all
...]
/external/chromium_org/third_party/icu/source/test/intltest/
citrtest.cpp
27
SCharacterIterator(const UnicodeString&
textStr
){
28
text =
textStr
;
30
textLength =
textStr
.length();
[
all
...]
/external/icu/icu4c/source/test/intltest/
citrtest.cpp
27
SCharacterIterator(const UnicodeString&
textStr
){
28
text =
textStr
;
30
textLength =
textStr
.length();
[
all
...]
Completed in 498 milliseconds