Home
last modified time | relevance | path

Searched refs:inputChar (Results 1 – 4 of 4) sorted by relevance

/external/icu4c/common/
Dushape.c1206 UChar inputChar = dest[i]; in shapeUnicode() local
1207 if ( (inputChar >= 0xFB50) && (inputChar <= 0xFBFF)) { in shapeUnicode()
1208 UChar c = convertFBto06 [ (inputChar - 0xFB50) ]; in shapeUnicode()
1211 } else if ( (inputChar >= 0xFE70) && (inputChar <= 0xFEFC)) { in shapeUnicode()
1212 dest[i] = convertFEto06 [ (inputChar - 0xFE70) ] ; in shapeUnicode()
1214 dest[i] = inputChar ; in shapeUnicode()
1369 UChar inputChar = dest[i]; in deShapeUnicode() local
1370 if ( (inputChar >= 0xFB50) && (inputChar <= 0xFBFF)) { /* FBxx Arabic range */ in deShapeUnicode()
1371 UChar c = convertFBto06 [ (inputChar - 0xFB50) ]; in deShapeUnicode()
1374 …} else if( (yehHamzaComposeEnabled == 1) && ((inputChar == HAMZA06_CHAR) || (inputChar == HAMZAFE_… in deShapeUnicode()
[all …]
/external/chromium/third_party/icu/source/common/
Dushape.c1208 UChar inputChar = dest[i]; in shapeUnicode() local
1209 if ( (inputChar >= 0xFB50) && (inputChar <= 0xFBFF)) { in shapeUnicode()
1210 UChar c = convertFBto06 [ (inputChar - 0xFB50) ]; in shapeUnicode()
1213 } else if ( (inputChar >= 0xFE70) && (inputChar <= 0xFEFC)) { in shapeUnicode()
1214 dest[i] = convertFEto06 [ (inputChar - 0xFE70) ] ; in shapeUnicode()
1216 dest[i] = inputChar ; in shapeUnicode()
1371 UChar inputChar = dest[i]; in deShapeUnicode() local
1372 if ( (inputChar >= 0xFB50) && (inputChar <= 0xFBFF)) { /* FBxx Arabic range */ in deShapeUnicode()
1373 UChar c = convertFBto06 [ (inputChar - 0xFB50) ]; in deShapeUnicode()
1376 …} else if( (yehHamzaComposeEnabled == 1) && ((inputChar == HAMZA06_CHAR) || (inputChar == HAMZAFE_… in deShapeUnicode()
[all …]
/external/webkit/WebCore/platform/text/mac/
DShapeArabic.c370 UChar inputChar = dest[i]; in shapeUnicode() local
371 if ( (inputChar >= 0xFE70) && (inputChar <= 0xFEFC)) { in shapeUnicode()
372 dest[i] = convertFEto06 [ (inputChar - 0xFE70) ] ; in shapeUnicode()
/external/webkit/JavaScriptCore/yarr/
DRegexInterpreter.cpp1239 …Interpreter(BytecodePattern* pattern, int* output, const UChar* inputChar, unsigned start, unsigne… in Interpreter() argument
1242 , input(inputChar, start, length) in Interpreter()