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

1 2 3 4

  /external/doclava/src/com/google/doclava/
KeywordEntry.java 34 public char firstChar() {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
PrevWordsInfoUtils.java 65 final char firstChar = wordFollowingTheNthPrevWord.charAt(0);
66 if (spacingAndPunctuations.isWordConnector(firstChar)) {
  /external/chromium_org/content/shell/renderer/test_runner/
MockSpellCheck.cpp 59 base::string16::iterator firstChar = find_if(stringText.begin(), stringText.end(), isASCIIAlpha);
60 if (firstChar == stringText.end())
62 int wordOffset = distance(stringText.begin(), firstChar);
89 wordLength = distance(firstChar, lastChar);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
MethodUtil.java 83 int firstChar = paramType.charAt(0);
84 if (firstChar == 'J' || firstChar == 'D') {
  /external/icu/icu4c/source/layout/
KhmerReordering.h 105 LEUnicode firstChar; // for Khmer this will become x1780
TibetanReordering.h 124 LEUnicode firstChar; // for Tibetan this will become xOF00
IndicReordering.h 95 LEUnicode firstChar;
  /libcore/luni/src/main/java/java/lang/
StringToReal.java 233 char firstChar = name.charAt(i);
234 if (firstChar == '-') {
238 } else if (firstChar == '+') {
Integer.java 361 char firstChar = string.charAt(0);
362 int firstDigitIndex = (firstChar == '-' || firstChar == '+') ? 1 : 0;
367 return parse(string, firstDigitIndex, radix, firstChar == '-');
Long.java 347 char firstChar = string.charAt(0);
348 int firstDigitIndex = (firstChar == '-' || firstChar == '+') ? 1 : 0;
353 return parse(string, firstDigitIndex, radix, firstChar == '-');
AbstractStringBuilder.java 695 char firstChar = subString.charAt(0);
700 if (value[i] == firstChar) {
762 char firstChar = subString.charAt(0);
767 if (value[i] == firstChar) {
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAngle.cpp 161 const CharType firstChar = *ptr++;
163 if (isHTMLSpace<CharType>(firstChar)) {
168 if (firstChar == 'd' && secondChar == 'e' && thirdChar == 'g') {
170 } else if (firstChar == 'r' && secondChar == 'a' && thirdChar == 'd') {
174 if (firstChar == 'g' && secondChar == 'r' && thirdChar == 'a' && fourthChar == 'd')
176 else if (firstChar == 't' && secondChar == 'u' && thirdChar == 'r' && fourthChar == 'n')
SVGLength.cpp 77 const CharType firstChar = *ptr++;
79 if (firstChar == '%') {
81 } else if (isHTMLSpace<CharType>(firstChar)) {
86 if (firstChar == 'p') {
93 } else if (firstChar == 'e') {
98 } else if (firstChar == 'c' && secondChar == 'm') {
100 } else if (firstChar == 'm' && secondChar == 'm') {
102 } else if (firstChar == 'i' && secondChar == 'n') {
104 } else if (isHTMLSpace<CharType>(firstChar) && isHTMLSpace<CharType>(secondChar)) {
  /external/icu/icu4c/source/test/intltest/
ucdtest.cpp 477 UChar32 firstChar = sample.char32At(0);
480 (int32_t)charScript, (int32_t)uscript_getScript(firstChar, errorCode));
481 assertEquals("RTL vs. set", (UBool)rtl.contains(firstChar), (UBool)uscript_isRightToLeft(sc));
482 assertEquals("cased vs. set", (UBool)cased.contains(firstChar), (UBool)uscript_isCased(sc));
  /packages/apps/UnifiedEmail/src/com/android/mail/photomanager/
LetterTileProvider.java 91 final char firstChar = display.charAt(0);
107 if (isEnglishLetterOrDigit(firstChar)) {
108 mFirstChar[0] = Character.toUpperCase(firstChar);
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
JUnitCodeGen.java 338 String firstChar = String.valueOf(ruleName.charAt(0));
339 return firstChar.toUpperCase()+ruleName.substring(1);
  /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/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowTime.java 473 char firstChar = pattern.charAt(index);
478 if (firstChar == 'O' || firstChar == 'E') {
482 buf.append(quote("%" + firstChar, oldInside));
485 String command = translate.getProperty(String.valueOf(firstChar));
489 buf.append(quote("%" + firstChar, oldInside));
  /external/tagsoup/templates/org/ccil/cowan/tagsoup/
HTMLScanner.java 172 int firstChar = r.read(); // Remove any leading BOM
173 if (firstChar != '\uFEFF') unread(r, firstChar);
  /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 302 char firstChar;
304 firstChar = descriptor.charAt(0);
313 if (firstChar == '[') {
328 if ((firstChar != 'L') ||
  /external/dexmaker/src/dx/java/com/android/dx/rop/type/
Type.java 303 char firstChar;
305 firstChar = descriptor.charAt(0);
314 if (firstChar == '[') {
329 if ((firstChar != 'L') ||
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
SmsNumberUtils.java 300 char firstChar = number.charAt(0);
301 if (firstChar >= '2' && firstChar <= '9') {
  /packages/apps/UnifiedEmail/src/com/android/mail/bitmap/
ContactDrawable.java 179 final char firstChar = displayName.charAt(0);
180 if (isEnglishLetterOrDigit(firstChar)) {
182 sFirstChar[0] = Character.toUpperCase(firstChar);
  /external/icu/icu4c/source/layoutex/
ParagraphLayout.cpp 1040 le_int32 firstChar = (run == firstRun)? runStart : fStyleRunInfo[run].runBase;
1043 appendRun(line, run, firstChar, lastChar);
1050 void ParagraphLayout::appendRun(ParagraphLayout::Line *line, le_int32 run, le_int32 firstChar, le_int32 lastChar)
1055 // Get the glyph indices for all the characters between firstChar and lastChar,
1062 for (ch = firstChar; ch <= lastChar; ch += 1) {
    [all...]

Completed in 910 milliseconds

1 2 3 4