Searched refs:firstChar (Results 1 - 25 of 74) sorted by relevance

123

/external/guava/guava/src/com/google/common/primitives/
H A DParseRequest.java40 char firstChar = stringValue.charAt(0);
44 } else if (firstChar == '#') {
47 } else if (firstChar == '0' && stringValue.length() > 1) {
/external/v8/tools/
H A Dlogreader.js152 var firstChar = frame.charAt(0);
153 if (firstChar == '+' || firstChar == '-') {
158 } else if (firstChar != 'o') {
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
H A DMethodUtil.java90 int firstChar = paramType.charAt(0);
91 if (firstChar == 'J' || firstChar == 'D') {
/external/doclava/src/com/google/doclava/
H A DKeywordEntry.java34 public char firstChar() { method in class:KeywordEntry
/external/icu/android_icu4j/src/main/java/android/icu/lang/
H A DCharSequences.java140 char firstChar = string.charAt(0);
144 int result = firstChar - codePoint;
152 int result = firstChar - lead;
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/lang/
H A DCharSequences.java138 char firstChar = string.charAt(0);
142 int result = firstChar - codePoint;
150 int result = firstChar - lead;
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_Configuration.java225 boolean firstChar = true;
275 if (firstChar) {
292 firstChar = true;
328 firstChar = false;
/external/icu/icu4c/source/layout/
H A DKhmerReordering.h105 LEUnicode firstChar; // for Khmer this will become x1780 member in struct:KhmerClassTable
H A DTibetanReordering.h124 LEUnicode firstChar; // for Tibetan this will become xOF00 member in struct:TibetanClassTable
H A DKhmerReordering.cpp113 if (ch < firstChar || ch > lastChar) {
117 return classTable[ch - firstChar];
H A DTibetanReordering.cpp115 if (ch < firstChar || ch > lastChar) {
119 return classTable[ch - firstChar];
/external/libgdx/gdx/src/com/badlogic/gdx/utils/
H A DPropertiesUtils.java59 boolean firstChar = true;
124 if (firstChar) {
146 firstChar = true;
190 firstChar = false;
/external/v8/tools/sodium/
H A Dsodium.js173 var firstChar = 0;
177 processLine(source, firstChar, x);
178 firstChar = x + 1;
181 if (firstChar != size - 1) {
182 processLine(source, firstChar, size - 1);
/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DStringMsgParser.java185 char firstChar = currentLine.charAt(0);
186 if (firstChar == '\t' || firstChar == ' ') {
296 char firstChar = currentLine.charAt(0);
297 if (firstChar == '\t' || firstChar == ' ') {
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowTime.java473 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/dexmaker/src/dx/java/com/android/dx/rop/type/
H A DType.java303 char firstChar;
305 firstChar = descriptor.charAt(0);
314 if (firstChar == '[') {
329 if ((firstChar != 'L') ||
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/loader/
H A DObjLoader.java108 char firstChar;
126 } else if ((firstChar = tokens[0].toLowerCase().charAt(0)) == '#') {
128 } else if (firstChar == 'v') {
141 } else if (firstChar == 'f') {
165 } else if (firstChar == 'o' || firstChar == 'g') {
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/writer/
H A DClassName.java206 char firstChar = part.charAt(0);
207 if (Ascii.isLowerCase(firstChar)) {
212 } else if (Ascii.isUpperCase(firstChar)) {
/external/tagsoup/templates/org/ccil/cowan/tagsoup/
H A DHTMLScanner.java172 int firstChar = r.read(); // Remove any leading BOM
173 if (firstChar != '\uFEFF') unread(r, firstChar);
/external/icu/icu4c/source/test/intltest/
H A Ducdtest.cpp458 UChar32 firstChar = sample.char32At(0); local
461 (int32_t)charScript, (int32_t)uscript_getScript(firstChar, errorCode));
462 assertEquals("RTL vs. set", (UBool)rtl.contains(firstChar), (UBool)uscript_isRightToLeft(sc));
463 assertEquals("cased vs. set", (UBool)cased.contains(firstChar), (UBool)uscript_isCased(sc));
/external/tagsoup/src/org/ccil/cowan/tagsoup/
H A DHTMLScanner.java393 int firstChar = r.read(); // Remove any leading BOM
394 if (firstChar != '\uFEFF') unread(r, firstChar);
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DNFRule.java290 char firstChar = descriptor.charAt(0);
292 if (firstChar >= '0' && firstChar <= '9' && lastChar != 'x') {
371 if (firstChar == '0' && lastChar == 'x') {
375 else if (firstChar == 'x' && lastChar == 'x') {
379 else if (firstChar == 'x' && lastChar == '0') {
/external/icu/icu4c/source/i18n/
H A Dnfrule.cpp270 UChar firstChar = descriptor.charAt(0);
272 if (firstChar >= gZero && firstChar <= gNine && lastChar != gX) {
367 if (firstChar == gZero && lastChar == gX) {
371 else if (firstChar == gX && lastChar == gX) {
375 else if (firstChar == gX && lastChar == gZero) {
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DNFRule.java289 char firstChar = descriptor.charAt(0);
291 if (firstChar >= '0' && firstChar <= '9' && lastChar != 'x') {
370 if (firstChar == '0' && lastChar == 'x') {
374 else if (firstChar == 'x' && lastChar == 'x') {
378 else if (firstChar == 'x' && lastChar == '0') {
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
H A DJUnitCodeGen.java338 String firstChar = String.valueOf(ruleName.charAt(0));
339 return firstChar.toUpperCase()+ruleName.substring(1);

Completed in 1711 milliseconds

123