Home
last modified time | relevance | path

Searched refs:charCode (Results 1 – 25 of 28) sorted by relevance

12

/external/fonttools/Lib/fontTools/
Dunicode.py23 def __getitem__(self, charCode): argument
25 return self.codes[charCode]
31 def __getitem__(self, charCode): argument
39 return unicodedata.name(chr(charCode))
/external/fonttools/Lib/fontTools/ttLib/tables/
D_c_m_a_p.py406 charCode = firstByte
413 cmap[charCode] = gi
418 charCode = charCodeOffset + offsetIndex
424 cmap[charCode] = gi
479 charCode = charCodes[0]
480 if charCode > 255:
490 for charCode, gid in items:
493 firstbyte = charCode >> 8
494 secondByte = charCode & 0x00FF
505 charCode = subHeader.firstCode + index
[all …]
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/charsetdet/mbcs/
DBIG5Tool.java192 System.out.println(i + " " + Integer.toHexString(c.charCode) + " " in processDir()
209 charList.add(new Integer(c.charCode)); in processDir()
238 int charCode; field in BIG5Tool.ChEl
242 charCode = c; in ChEl()
250 return o.charCode == this.charCode; in equals()
256 return charCode; in hashCode()
DEUCTool.java192 System.out.println(i + " " + Integer.toHexString(c.charCode) + " " in processDir()
209 charList.add(new Integer(c.charCode)); in processDir()
238 int charCode; field in EUCTool.ChEl
242 charCode = c; in ChEl()
250 return o.charCode == this.charCode; in equals()
256 return charCode; in hashCode()
/external/jackson-core/src/main/java/com/fasterxml/jackson/core/json/
DJsonGeneratorImpl.java168 public JsonGenerator setHighestNonEscapedChar(int charCode) { in setHighestNonEscapedChar() argument
169 _maximumNonEscapedChar = (charCode < 0) ? 0 : charCode; in setHighestNonEscapedChar()
/external/antlr/runtime/JavaScript/tests/functional/
Drhino-python.prog18 var charCode, data=[];
19 while ((charCode = isr.read()) >= 0) {
20 data.push(String.fromCharCode(charCode));
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/resources/
Dprettify.js390 function encodeEscape(charCode) { argument
391 if (charCode < 0x20) {
392 return (charCode < 0x10 ? '\\x0' : '\\x') + charCode.toString(16);
394 var ch = String.fromCharCode(charCode);
/external/skia/tools/fonts/
DTestTypeface.cpp48 SkGlyphID SkTestFont::glyphForUnichar(SkUnichar charCode) const { in glyphForUnichar()
50 if (fCharCodes[index] == charCode) { in glyphForUnichar()
DTestTypeface.h51 SkGlyphID glyphForUnichar(SkUnichar charCode) const;
/external/skqp/tools/fonts/
DSkTestTypeface.cpp52 SkGlyphID SkTestFont::glyphForUnichar(SkUnichar charCode) const { in glyphForUnichar()
54 if (fCharCodes[index] == charCode) { in glyphForUnichar()
DSkTestTypeface.h50 SkGlyphID glyphForUnichar(SkUnichar charCode) const;
/external/jackson-core/src/main/java/com/fasterxml/jackson/core/util/
DJsonGeneratorDelegate.java170 …ublic JsonGenerator setHighestNonEscapedChar(int charCode) { delegate.setHighestNonEscapedChar(cha… in setHighestNonEscapedChar() argument
/external/pdfium/core/fpdfapi/font/
Dcpdf_cidfont.cpp169 uint32_t charCode = CharCodeFromCID(pEmbedMap, i); in EmbeddedCharcodeFromUnicode() local
170 if (charCode) in EmbeddedCharcodeFromUnicode()
171 return charCode; in EmbeddedCharcodeFromUnicode()
/external/pdfium/core/fpdftext/
Dcpdf_textpage.cpp160 uint32_t GetCharWidth(uint32_t charCode, CPDF_Font* pFont) { in GetCharWidth() argument
161 if (charCode == CPDF_Font::kInvalidCharCode) in GetCharWidth()
164 uint32_t w = pFont->GetCharWidthF(charCode); in GetCharWidth()
169 pFont->AppendChar(&str, charCode); in GetCharWidth()
174 FX_RECT rect = pFont->GetCharBBox(charCode); in GetCharWidth()
/external/skqp/src/ports/
DSkFontHost_FreeType.cpp640 SkUnichar charCode = FT_Get_First_Char(face, &glyphIndex); in getGlyphToUnicodeMap() local
645 dstArray[glyphIndex] = charCode; in getGlyphToUnicodeMap()
647 charCode = FT_Get_Next_Char(face, charCode, &glyphIndex); in getGlyphToUnicodeMap()
/external/skia/src/ports/
DSkFontHost_FreeType.cpp680 SkUnichar charCode = FT_Get_First_Char(face, &glyphIndex); in getGlyphToUnicodeMap() local
685 dstArray[glyphIndex] = charCode; in getGlyphToUnicodeMap()
687 charCode = FT_Get_Next_Char(face, charCode, &glyphIndex); in getGlyphToUnicodeMap()
/external/jackson-core/src/main/java/com/fasterxml/jackson/core/
DJsonGenerator.java542 public JsonGenerator setHighestNonEscapedChar(int charCode) { return this; } in setHighestNonEscapedChar() argument
/external/freetype/src/sfnt/
Dttcmap.c3363 FT_UInt32 charCode ) in tt_cmap14_char_variants() argument
3383 charCode ) ) || in tt_cmap14_char_variants()
3386 charCode ) != 0 ) ) in tt_cmap14_char_variants()
/external/python/httplib2/doc/html/_static/
Djquery.js2746 if ( !event.which && ((event.charCode || event.charCode === 0) ? event.charCode : event.keyCode) )
2747 event.which = event.charCode || event.keyCode;
/external/doclava/res/assets/templates/assets/
Djquery-resizable.min.js19 …lTop||0)-(I.clientTop||0)}if(!H.which&&((H.charCode||H.charCode===0)?H.charCode:H.keyCode)){H.whic…
/external/doclava/res/assets/templates-sdk/assets/js/
Dandroid_3p-bundle.js395 function encodeEscape(charCode) { argument
396 if (charCode < 0x20) {
397 return (charCode < 0x10 ? '\\x0' : '\\x') + charCode.toString(16);
399 var ch = String.fromCharCode(charCode);
2706 …atepicker._get(b,"dateFormat")),d=String.fromCharCode(a.charCode==undefined?a.keyCode:a.charCode);…
/external/slf4j/slf4j-site/src/site/pages/js/
Djquery-min.js3 …Code".split(" "),filter:function(a,b){a.which==null&&(a.which=b.charCode!=null?b.charCode:b.keyCod…
/external/testng/src/main/resources/
Djquery-1.7.1.min.js3 …Code".split(" "),filter:function(a,b){a.which==null&&(a.which=b.charCode!=null?b.charCode:b.keyCod…
/external/python/cpython2/Mac/Modules/ctl/
D_Ctlmodule.c5670 mykeydownproc(ControlHandle control, SInt16 keyCode, SInt16 charCode, SInt16 modifiers) in mykeydownproc() argument
5677 arglist = Py_BuildValue("Ohhh", ctl_obj, keyCode, charCode, modifiers); in mykeydownproc()
/external/angle/third_party/vulkan_memory_allocator/docs/html/
Djquery.js2charCode:!0,key:!0,keyCode:!0,button:!0,buttons:!0,clientX:!0,clientY:!0,offsetX:!0,offsetY:!0,poi… property

12