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

1 2

  /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')
SVGFontElement.cpp 110 UChar firstChar = unicodeString[0];
113 if (firstChar >= it->first && firstChar <= it->second)
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...]
  /external/webkit/Source/WebCore/platform/android/
PopupMenuAndroid.cpp 119 uint16_t* firstChar = &(itemName[1]);
120 memcpy((void*)firstChar, text.characters(), sizeof(UChar)*length);
  /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
IndicReordering.h 93 LEUnicode firstChar;
  /external/webkit/Source/WebKit/android/content/
PhoneEmailDetector.cpp 348 UChar firstChar = *chars;
349 if (firstChar == '.' || firstChar == '@') // mailbox can't start with period or be empty
  /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...]
  /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/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/webkit/Source/WebCore/platform/graphics/chromium/
UniscribeHelper.cpp 412 int firstChar = m_runs[i].iCharPos;
414 int localOffset = charOffset - firstChar;
    [all...]
  /packages/inputmethods/LatinIME/native/jni/src/
proximity_info.cpp 397 const int firstChar = currentChars[0];
402 if (firstChar == baseLowerC || firstChar == c) {
411 if (toBaseLowerCase(firstChar) == baseLowerC)
  /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') ||
  /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') ||
  /sdk/anttasks/src/com/android/ant/
AaptExecTask.java 111 char firstChar = name.charAt(0);
113 if (firstChar == '.' || (firstChar == '_' && file.isDirectory()) ||
  /dalvik/vm/reflect/
Annotation.cpp 592 char firstChar = methodReturn->descriptor[1];
593 if (firstChar == 'L' || firstChar == '[') {
597 dstElemClass = dvmFindPrimitiveClass(firstChar);
    [all...]
  /external/icu4c/layoutex/
ParagraphLayout.cpp 1037 le_int32 firstChar = (run == firstRun)? runStart : fStyleRunInfo[run].runBase;
1040 appendRun(line, run, firstChar, lastChar);
1047 void ParagraphLayout::appendRun(ParagraphLayout::Line *line, le_int32 run, le_int32 firstChar, le_int32 lastChar)
1052 // Get the glyph indices for all the characters between firstChar and lastChar,
1059 for (ch = firstChar; ch <= lastChar; ch += 1) {
    [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);
  /libcore/luni/src/main/java/java/util/
Formatter.java     [all...]

Completed in 934 milliseconds

1 2