Home
last modified time | relevance | path

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

/external/icu4c/common/
Dushape.c795 UChar inputChar = dest[i]; in shapeUnicode() local
796 if ( (inputChar >= 0xFB50) && (inputChar <= 0xFBFF)) { in shapeUnicode()
797 UChar c = convertFBto06 [ (inputChar - 0xFB50) ]; in shapeUnicode()
800 } else if ( (inputChar >= 0xFE70) && (inputChar <= 0xFEFC)) { in shapeUnicode()
801 dest[i] = convertFEto06 [ (inputChar - 0xFE70) ] ; in shapeUnicode()
803 dest[i] = inputChar ; in shapeUnicode()
927 UChar inputChar = dest[i]; in deShapeUnicode() local
928 if ( (inputChar >= 0xFB50) && (inputChar <= 0xFBFF)) { /* FBxx Arabic range */ in deShapeUnicode()
929 UChar c = convertFBto06 [ (inputChar - 0xFB50) ]; in deShapeUnicode()
932 } else if (( inputChar >= 0xFE70) && (inputChar <= 0xFEF4 )) { /* FExx Arabic range */ 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()