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

12

/external/v8/tools/
H A Dlogreader.js103 var firstChar = frame.charAt(0);
104 if (firstChar == '+' || firstChar == '-') {
109 } else if (firstChar != 'o') {
/external/doclava/src/com/google/doclava/
H A DKeywordEntry.java34 public char firstChar() { method in class:KeywordEntry
/external/webkit/Source/WebCore/svg/
H A DSVGAngle.cpp79 const UChar firstChar = *ptr; local
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')
H A DSVGLength.cpp95 const UChar firstChar = *ptr; local
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
[all...]
H A DSVGFontElement.cpp110 UChar firstChar = unicodeString[0]; local
113 if (firstChar >= it->first && firstChar <= it->second)
/external/webkit/Source/WebCore/rendering/mathml/
H A DRenderMathMLOperator.cpp135 UChar firstChar = m_operator; local
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/
H A DPopupMenuAndroid.cpp119 uint16_t* firstChar = &(itemName[1]); local
120 memcpy((void*)firstChar, text.characters(), sizeof(UChar)*length);
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_Configuration.java224 boolean firstChar = true;
274 if (firstChar) {
291 firstChar = true;
327 firstChar = false;
/external/icu4c/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];
H A DIndicReordering.h93 LEUnicode firstChar; member in struct:IndicClassTable
H A DIndicClassTables.cpp430 if (ch < firstChar || ch > lastChar) {
434 return classTable[ch - firstChar];
/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/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/webkit/Source/WebKit/android/content/
H A DPhoneEmailDetector.cpp348 UChar firstChar = *chars; local
349 if (firstChar == '.' || firstChar == '@') // mailbox can't start with period or be empty
/external/webkit/Tools/Scripts/
H A DVCSUtils.pm1427 my $firstChar = substr($line, 0, 1);
1430 } elsif ($firstChar eq " " or $firstChar eq "+") {
1456 my $firstChar = substr($lines[$i], 0, 1);
1457 if ($firstChar eq " ") {
1459 } elsif ($firstChar eq "@") {
/external/tagsoup/src/org/ccil/cowan/tagsoup/
H A DHTMLScanner.java326 int firstChar = r.read(); // Remove any leading BOM
327 if (firstChar != '\uFEFF') unread(r, firstChar);
/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);
/external/icu4c/layoutex/
H A DParagraphLayout.cpp1037 le_int32 firstChar = (run == firstRun)? runStart : fStyleRunInfo[run].runBase; local
1040 appendRun(line, run, firstChar, lastChar);
1047 void ParagraphLayout::appendRun(ParagraphLayout::Line *line, le_int32 run, le_int32 firstChar, le_int32 lastChar) argument
1052 // Get the glyph indices for all the characters between firstChar and lastChar,
1059 for (ch = firstChar; ch <= lastChar; ch += 1) {
/external/icu4c/layoutex/layout/
H A DParagraphLayout.h576 void appendRun(Line *line, le_int32 run, le_int32 firstChar, le_int32 lastChar);
/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DUniscribeHelper.cpp412 int firstChar = m_runs[i].iCharPos; local
414 int localOffset = charOffset - firstChar;
/external/skia/src/pdf/
H A DSkPDFFont.cpp1290 int firstChar = 0;
1302 firstChar = startIndex + widthRangeEntry->fStartId;
1310 insertInt("FirstChar", firstChar);
1311 insertInt("LastChar", firstChar + widthArray->size() - 1);
/external/icu4c/common/
H A Duniset.cpp651 // firstChar is the leftmost char to match in the
654 UChar firstChar = text.charAt(offset);
672 if (forward && c > firstChar) break;
673 if (c != firstChar) continue;

Completed in 2128 milliseconds

12