OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:firstChar
(Results
1 - 25
of
46
) sorted by null
1
2
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
UserBigramSuggestHelper.java
61
WordComposer
firstChar
= createWordComposer(Character.toString(typed));
62
mSuggest.getSuggestions(
firstChar
, previous, mKeyboard.getProximityInfo());
65
mUserBigram.getBigrams(
firstChar
, previous, mSuggest);
SuggestHelper.java
133
WordComposer
firstChar
= createWordComposer(Character.toString(typed.charAt(0)));
134
mSuggest.getSuggestions(
firstChar
, previous, mKeyboard.getProximityInfo());
/external/doclava/src/com/google/doclava/
KeywordEntry.java
34
public char
firstChar
() {
/external/webkit/Source/WebCore/svg/
SVGAngle.cpp
79
const UChar
firstChar
= *ptr;
94
if (
firstChar
== 'd' && secondChar == 'e' && thirdChar == 'g')
96
if (
firstChar
== 'r' && secondChar == 'a' && thirdChar == 'd')
106
if (
firstChar
== 'g' && secondChar == 'r' && thirdChar == 'a' && fourthChar == 'd')
SVGLength.cpp
95
const UChar
firstChar
= *ptr;
98
return
firstChar
== '%' ? LengthTypePercentage : LengthTypeUnknown;
105
if (
firstChar
== 'e' && secondChar == 'm')
107
if (
firstChar
== 'e' && secondChar == 'x')
109
if (
firstChar
== 'p' && secondChar == 'x')
111
if (
firstChar
== 'c' && secondChar == 'm')
113
if (
firstChar
== 'm' && secondChar == 'm')
115
if (
firstChar
== 'i' && secondChar == 'n')
117
if (
firstChar
== 'p' && secondChar == 't')
119
if (
firstChar
== 'p' && secondChar == 'c'
[
all
...]
SVGFontElement.cpp
110
UChar
firstChar
= unicodeString[0];
113
if (
firstChar
>= it->first &&
firstChar
<= it->second)
/external/webkit/Source/WebCore/rendering/mathml/
RenderMathMLOperator.cpp
135
UChar
firstChar
= m_operator;
147
if (!stretchDisabled && !
firstChar
) {
149
for (unsigned int i = 0; !
firstChar
&& i < opText.length(); i++) {
151
firstChar
= opText[i];
164
if (!stretchDisabled &&
firstChar
) {
167
if (stretchyCharacters[index].character ==
firstChar
) {
/external/webkit/Source/WebCore/platform/android/
PopupMenuAndroid.cpp
116
uint16_t*
firstChar
= &(itemName[1]);
117
memcpy((void*)
firstChar
, text.characters(), sizeof(UChar)*length);
/external/apache-harmony/support/src/test/java/tests/support/
Support_Configuration.java
224
boolean
firstChar
= true;
274
if (
firstChar
) {
291
firstChar
= true;
327
firstChar
= false;
/external/icu4c/layout/
KhmerReordering.h
105
LEUnicode
firstChar
; // for Khmer this will become x1780
TibetanReordering.h
124
LEUnicode
firstChar
; // for Tibetan this will become xOF00
KhmerReordering.cpp
113
if (ch <
firstChar
|| ch > lastChar) {
117
return classTable[ch -
firstChar
];
/packages/inputmethods/LatinIME/native/src/
proximity_info.cpp
234
const int
firstChar
= currentChars[0];
239
if (
firstChar
== baseLowerC ||
firstChar
== c) {
248
if (Dictionary::toBaseLowerCase(
firstChar
) == baseLowerC)
/external/nist-sip/java/gov/nist/javax/sip/parser/
StringMsgParser.java
185
char
firstChar
= currentLine.charAt(0);
186
if (
firstChar
== '\t' ||
firstChar
== ' ') {
296
char
firstChar
= currentLine.charAt(0);
297
if (
firstChar
== '\t' ||
firstChar
== ' ') {
/external/v8/tools/
logreader.js
103
var
firstChar
= frame.charAt(0);
104
if (
firstChar
== '+' ||
firstChar
== '-') {
109
} else if (
firstChar
!= 'o') {
/dalvik/dexgen/src/com/android/dexgen/rop/type/
Type.java
331
char
firstChar
;
333
firstChar
= descriptor.charAt(0);
342
if (
firstChar
== '[') {
357
if ((
firstChar
!= 'L') ||
/dalvik/dx/src/com/android/dx/rop/type/
Type.java
303
char
firstChar
;
305
firstChar
= descriptor.charAt(0);
314
if (
firstChar
== '[') {
329
if ((
firstChar
!= 'L') ||
/libcore/support/src/test/java/tests/support/
Support_Configuration.java
318
boolean
firstChar
= true;
368
if (
firstChar
) {
385
firstChar
= true;
421
firstChar
= false;
/libcore/luni/src/main/java/java/lang/
StringToReal.java
214
char
firstChar
= name.charAt(i);
215
if (
firstChar
== '-') {
219
} else if (
firstChar
== '+') {
AbstractStringBuilder.java
704
char
firstChar
= subString.charAt(0);
709
if (value[i] ==
firstChar
) {
771
char
firstChar
= subString.charAt(0);
776
if (value[i] ==
firstChar
) {
String.java
[
all
...]
/libcore/luni/src/main/java/java/util/
Properties.java
284
boolean
firstChar
= true;
349
if (
firstChar
) {
371
firstChar
= true;
415
firstChar
= false;
/frameworks/base/tools/aapt/
StringPool.cpp
122
span.span.
firstChar
= start;
318
span->
firstChar
= htodl(ent.spans[i].span.
firstChar
);
/external/webkit/Tools/Scripts/
VCSUtils.pm
[
all
...]
/external/tagsoup/src/org/ccil/cowan/tagsoup/
HTMLScanner.java
326
int
firstChar
= r.read(); // Remove any leading BOM
327
if (
firstChar
!= '\uFEFF') unread(r,
firstChar
);
Completed in 1239 milliseconds
1
2