Searched refs:encoding (Results 76 - 96 of 96) sorted by relevance

1234

/haiku/src/apps/terminal/
H A DTermParse.cpp14 //! Escape sequence parse and character encoding.
320 TermParse::_GuessGroundTable(int encoding) argument
322 switch (encoding) {
382 // default encoding system is UTF8
460 int encoding = currentEncoding == B_JIS_CONVERSION local
463 convert_to_utf8(encoding, cbuf, &srcLen,
H A DTermView.h101 void SetEncoding(int encoding);
H A DTermWindow.cpp451 int encoding = M_UTF8;
454 encoding = charset.GetConversionID();
457 if (encoding == B_UTF16_CONVERSION || encoding == B_UNICODE_CONVERSION)
466 message->AddInt32("op", (int32)encoding);
496 fEncodingMenu = new(std::nothrow) BMenu(B_TRANSLATE("Text encoding"));
H A DTermView.cpp78 { "encoding",
81 "get terminal encoding"},
82 { "encoding",
85 "set terminal encoding"},
240 if (archive->FindInt32("encoding", (int32*)&fEncoding) < B_OK)
361 // set the shell parameters' encoding
462 status = data->AddInt32("encoding", (int32)fEncoding);
756 TermView::SetEncoding(int encoding) argument
758 fEncoding = encoding;
1720 && strcmp("encoding",
[all...]
/haiku/src/kits/debugger/dwarf/
H A DDebugInfoEntry.h124 DECLARE_DEBUG_INFO_ENTRY_ATTR_SETTER(encoding)
H A DDebugInfoEntry.cpp267 DEFINE_DEBUG_INFO_ENTRY_ATTR_SETTER(encoding)
H A DAttributeClasses.cpp91 { ENTRY(encoding), AC_CONSTANT },
/haiku/src/add-ons/kernel/file_systems/fat/
H A Ddir.cpp820 int encoding; local
852 error = generate_short_name((uchar *)name, nlong, len, nshort, &encoding);
865 if (requires_munged_short_name((uchar *)name, nshort, encoding))
874 munge_short_name1(nshort, iter, encoding);
886 munge_short_name2(nshort, encoding);
H A Dencodings.cpp1265 status_t munge_short_name2(uchar nshort[11], int encoding) argument
1275 if (encoding == MS_DOS_CONVERSION)
1277 else if (encoding == SJIS_CONVERSION)
1283 status_t munge_short_name1(uchar nshort[11], int iteration, int encoding) argument
1287 if (encoding == MS_DOS_CONVERSION)
1289 else if (encoding == SJIS_CONVERSION)
1465 uint32 unilen, uchar nshort[11], int *encoding)
1472 ASSERT(encoding != NULL);
1476 *encoding = MS_DOS_CONVERSION;
1481 *encoding
1464 generate_short_name(const uchar *name, const uchar *uni, uint32 unilen, uchar nshort[11], int *encoding) argument
1535 requires_munged_short_name(const uchar *utf8name, const uchar nshort[11], int encoding) argument
[all...]
/haiku/src/kits/interface/
H A DPicturePlayer.cpp400 set_font_encoding(void* _context, uint8 encoding) argument
404 encoding);
1519 const uint32* encoding; local
1521 || !reader.Get(encoding)) {
1525 callbacks.set_font_encoding(userData, *encoding);
H A DPictureDataWriter.cpp794 PictureDataWriter::WriteSetFontEncoding(const int32& encoding) argument
798 Write<int32>(encoding);
H A DFont.cpp674 BFont::SetEncoding(uint8 encoding) argument
676 fEncoding = encoding;
/haiku/src/libs/iconv/
H A Diconv.c78 struct encoding { struct
104 static struct encoding const all_encodings[] = {
224 * or if it's too long, it is not a valid encoding name.
640 * or if it's too long, it is not a valid encoding name.
/haiku/src/apps/cortex/Persistence/Wrappers/
H A DMediaFormatIO.cpp175 const char* const gKey_encoding = "encoding";
180 // encoding
818 switch(f.encoding) {
853 switch(f.encoding) {
1180 f.encoding = media_encoded_audio_format::B_ANY;
1196 f.encoding = media_encoded_video_format::B_ANY;
/haiku/headers/os/interface/
H A DFont.h192 void SetEncoding(uint8 encoding);
/haiku/headers/private/package/hpkg/
H A DReaderImplBase.h150 virtual status_t ReadAttributeValue(uint8 type, uint8 encoding,
/haiku/src/servers/app/
H A DPictureBoundingBoxPlayer.cpp677 set_font_encoding(void* _state, uint8 encoding) argument
683 font.SetEncoding(encoding);
H A DServerPicture.cpp846 set_font_encoding(void* _canvas, uint8 encoding) argument
850 font.SetEncoding(encoding);
/haiku/src/apps/mail/
H A DContent.cpp1741 if (enclosure->encoding)
1742 free(enclosure->encoding);
2026 TTextView::AddAsContent(BEmailMessage *mail, bool wrap, uint32 charset, mail_encoding encoding)
2039 body->SetEncoding(encoding, charset);
/haiku/src/add-ons/media/plugins/ffmpeg/
H A DAVFormatReader.cpp1150 // format->u.encoded_video.encoding
1210 uint32 encoding = format->Encoding(); local
1211 TRACE(" encoding '%.4s'\n", (char*)&encoding);
/haiku/src/tools/html5_remote_desktop/
H A DHaikuRemoteDesktop.js546 this.encoding = 0;
562 this.encoding = remoteMessage.dataView.readUint8();

Completed in 148 milliseconds

1234