Searched refs:encoding_type (Results 1 – 14 of 14) sorted by relevance
| /third_party/node/deps/simdutf/ |
| D | simdutf.h | 492 enum encoding_type { enum 509 std::string to_string(encoding_type bom); 521 encoding_type check_bom(const uint8_t* byte, size_t length); 522 encoding_type check_bom(const char* byte, size_t length); 529 size_t bom_byte_size(encoding_type bom); 874 simdutf_warn_unused simdutf::encoding_type autodetect_encoding(const char * input, size_t length) n… 875 simdutf_really_inline simdutf_warn_unused simdutf::encoding_type autodetect_encoding(const uint8_t … in autodetect_encoding() 1897 virtual encoding_type autodetect_encoding(const char * input, size_t length) const noexcept;
|
| D | simdutf.cpp | 4107 simdutf_warn_unused encoding_type implementation::autodetect_encoding(const char * input, size_t le… in autodetect_encoding() 4110 if(bom_encoding != encoding_type::unspecified) { return bom_encoding; } in autodetect_encoding() 4118 if(validate_utf8(input, length)) { return encoding_type::UTF8; } in autodetect_encoding() 4123 …te_utf16le(reinterpret_cast<const char16_t*>(input), length/2)) { return encoding_type::UTF16_LE; } in autodetect_encoding() 4126 …if(validate_utf32(reinterpret_cast<const char32_t*>(input), length/4)) { return encoding_type::UTF… in autodetect_encoding() 4128 return encoding_type::unspecified; in autodetect_encoding() 4409 return encoding_type::unspecified; in detect_encodings() 4965 simdutf_warn_unused simdutf::encoding_type autodetect_encoding(const char * buf, size_t length) noe… in autodetect_encoding() 4993 std::string to_string(encoding_type bom) { in to_string() 5007 encoding_type check_bom(const uint8_t* byte, size_t length) { in check_bom() [all …]
|
| /third_party/skia/third_party/externals/freetype/src/type1/ |
| D | t1driver.c | 320 retval = sizeof ( type1->encoding_type ); in t1_ps_get_font_value() 322 *((T1_EncodingType *)value) = type1->encoding_type; in t1_ps_get_font_value() 326 if ( type1->encoding_type == T1_ENCODING_TYPE_ARRAY && in t1_ps_get_font_value()
|
| D | t1load.c | 1675 face->type1.encoding_type = T1_ENCODING_TYPE_ARRAY; in parse_encoding() 1686 face->type1.encoding_type = T1_ENCODING_TYPE_STANDARD; in parse_encoding() 1693 face->type1.encoding_type = T1_ENCODING_TYPE_EXPERT; in parse_encoding() 1700 face->type1.encoding_type = T1_ENCODING_TYPE_ISOLATIN1; in parse_encoding() 2670 if ( type1->encoding_type == T1_ENCODING_TYPE_ARRAY ) in T1_Open_Face()
|
| D | t1objs.c | 541 switch ( type1->encoding_type ) in T1_Face_Init()
|
| /third_party/skia/third_party/externals/freetype/include/freetype/internal/ |
| D | t1types.h | 103 T1_EncodingType encoding_type; member
|
| /third_party/skia/third_party/externals/freetype/src/type42/ |
| D | t42parse.c | 496 face->type1.encoding_type = T1_ENCODING_TYPE_ARRAY; in t42_parse_encoding() 506 face->type1.encoding_type = T1_ENCODING_TYPE_STANDARD; in t42_parse_encoding() 510 face->type1.encoding_type = T1_ENCODING_TYPE_EXPERT; in t42_parse_encoding() 514 face->type1.encoding_type = T1_ENCODING_TYPE_ISOLATIN1; in t42_parse_encoding()
|
| D | t42objs.c | 99 if ( type1->encoding_type == T1_ENCODING_TYPE_ARRAY ) in T42_Open_Face() 365 switch ( type1->encoding_type ) in T42_Face_Init()
|
| /third_party/gstreamer/gstplugins_bad/gst/librfb/ |
| D | rfbdecoder.c | 578 guint32 *encoding_type; in rfb_decoder_message_set_encodings() local 584 encoding_type = (guint32 *) (message + 4); in rfb_decoder_message_set_encodings() 587 RFB_SET_UINT32 (encoding_type, GPOINTER_TO_UINT (encodings_list->data)); in rfb_decoder_message_set_encodings() 588 encoding_type++; in rfb_decoder_message_set_encodings()
|
| /third_party/node/src/crypto/ |
| D | crypto_keys.cc | 325 PKEncodingType encoding_type = config.type_.ToChecked(); in WritePrivateKey() local 326 if (encoding_type == kKeyEncodingPKCS1) { in WritePrivateKey() 345 } else if (encoding_type == kKeyEncodingPKCS8) { in WritePrivateKey() 365 CHECK_EQ(encoding_type, kKeyEncodingSEC1); in WritePrivateKey()
|
| /third_party/skia/third_party/externals/expat/expat/ |
| D | CMakeLists.txt | 587 foreach(encoding_type ${encoding_types}) 588 set(target_name ${fuzz_target}_${encoding_type}) 592 PRIVATE ENCODING_FOR_FUZZING=${encoding_type})
|
| /third_party/python/Doc/library/ |
| D | ssl.rst | 488 The function returns a list of (cert_bytes, encoding_type, trust) tuples. 489 The encoding_type specifies the encoding of cert_bytes. It is either 511 The function returns a list of (cert_bytes, encoding_type, trust) tuples. 512 The encoding_type specifies the encoding of cert_bytes. It is either
|
| /third_party/node/deps/ada/ |
| D | ada.cpp | 10427 ada_warn_unused std::string to_string(ada::encoding_type type) { in to_string() 10429 case ada::encoding_type::UTF8: in to_string() 10431 case ada::encoding_type::UTF_16LE: in to_string() 10433 case ada::encoding_type::UTF_16BE: in to_string()
|
| D | ada.h | 1166 enum class encoding_type { enum 1175 ada_warn_unused std::string to_string(encoding_type type);
|