OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isLetter
(Results
1 - 25
of
83
) sorted by null
1
2
3
4
/development/apps/CustomLocale/src/com/android/customlocale2/
CustomLocaleReceiver.java
63
is_ok = Character.
isLetter
(locale.charAt(0)) &&
64
Character.
isLetter
(locale.charAt(1));
68
Character.
isLetter
(locale.charAt(3)) &&
69
Character.
isLetter
(locale.charAt(4));
/external/clang/unittests/Basic/
CharInfoTest.cpp
202
TEST(CharInfoTest,
isLetter
) {
203
EXPECT_FALSE(
isLetter
('0'));
204
EXPECT_FALSE(
isLetter
('9'));
206
EXPECT_TRUE(
isLetter
('a'));
207
EXPECT_TRUE(
isLetter
('A'));
209
EXPECT_TRUE(
isLetter
('z'));
210
EXPECT_TRUE(
isLetter
('Z'));
212
EXPECT_FALSE(
isLetter
('.'));
213
EXPECT_FALSE(
isLetter
('_'));
215
EXPECT_FALSE(
isLetter
('/'));
[
all
...]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
CapsModeUtils.java
233
if (Character.
isLetter
(c)) {
242
if (Character.
isLetter
(c)) {
251
if (Character.
isLetter
(c)) {
258
if (Character.
isLetter
(c)) {
StringUtils.java
186
if (Character.
isLetter
(text.codePointAt(index))) {
203
} else if (Character.
isLetter
(codePoint)) {
221
if (Character.
isLetter
(codePoint) && !Character.isUpperCase(codePoint)) {
234
if (Character.
isLetter
(codePoint) && !Character.isLowerCase(codePoint)) {
273
if (Character.
isLetter
(codePoint)) {
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
FmExtractLettersMethod.java
39
if (Character.
isLetter
(c)) {
/packages/apps/Settings/src/com/android/settings/quicklaunch/
ShortcutPreference.java
146
if (Character.isDigit(mShortcut) && Character.
isLetter
(other)) return 1;
147
else if (Character.isDigit(other) && Character.
isLetter
(mShortcut)) return -1;
/external/apache-http/src/org/apache/commons/codec/language/
RefinedSoundex.java
143
if (!Character.
isLetter
(c)) {
SoundexUtils.java
47
if (Character.
isLetter
(str.charAt(i))) {
/external/clang/lib/AST/
CommentLexer.cpp
20
return
isLetter
(C);
169
return
isLetter
(C);
215
return
isLetter
(C);
/external/clang/lib/Analysis/
CocoaConventions.cpp
109
if (ch == 'c' && it != start &&
isLetter
(*(it - 1)))
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
ContactsBinaryDictionary.java
204
if (Character.
isLetter
(name.codePointAt(i))) {
239
|| Character.
isLetter
(cp))) {
313
if (Character.
isLetter
(name.codePointAt(i))) {
RichInputConnection.java
[
all
...]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
RubyTarget.java
158
if ( Character.
isLetter
( cur ) ) {
178
if ( Character.
isLetter
( next ) ) {
268
if ( Character.
isLetter
( cur ) ) at_edge = false;
/external/ant-glob/src/org/apache/tools/ant/util/
FileUtils.java
137
return (Character.
isLetter
(c) && colon == 1
/external/clang/include/clang/Basic/
CharInfo.h
112
LLVM_READONLY static inline bool
isLetter
(unsigned char c) {
/packages/apps/Browser/src/com/android/browser/
UrlUtils.java
144
if (!Character.
isLetter
(ch)) {
/libcore/benchmarks/src/benchmarks/regression/
CharacterBenchmark.java
176
Character.
isLetter
(chars[ch]);
182
Character.
isLetter
((int) chars[ch]);
/external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
SystemIDResolver.java
177
&& Character.
isLetter
(systemId.charAt(0))
/external/apache-xml/src/main/java/org/apache/xml/utils/
SystemIDResolver.java
170
&& Character.
isLetter
(systemId.charAt(0))
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
Keyboard.java
147
return canAssumeNativeHasProximityCharsInfoOfAllKeys || Character.
isLetter
(code);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/research/
Statistics.java
172
if (Character.
isLetter
(codePoint)) {
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
AndroidWordLevelSpellCheckerSession.java
142
// excluded from
isLetter
anyway.
143
return codePoint <= 0x2AF && Character.
isLetter
(codePoint);
148
return codePoint >= 0x400 && codePoint <= 0x52F && Character.
isLetter
(codePoint);
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
CharacterTest.java
[
all
...]
/packages/apps/UnifiedEmail/src/com/android/emailcommon/utility/
TextUtilities.java
389
if (peek == '!' || peek == '-' || peek == '/' || Character.
isLetter
(peek)) {
599
if (peek == '!' || peek == '-' || peek == '/' || Character.
isLetter
(peek)) {
[
all
...]
/frameworks/opt/timezonepicker/src/com/android/timezonepicker/
TimeZoneFilterTypeAdapter.java
279
if (!Character.
isLetter
(string.charAt(i))) {
Completed in 975 milliseconds
1
2
3
4