HomeSort by: relevance | last modified time | path
    Searched defs:ansi (Results 1 - 3 of 3) sorted by relevancy

  /xsrc/external/mit/MesaLib/dist/src/gtest/src/
gtest.cc 873 // Creates a UTF-16 wide string from the given ANSI string, allocating
877 LPCWSTR String::AnsiToUtf16(const char* ansi) {
878 if (!ansi) return nullptr;
879 const int length = strlen(ansi);
881 MultiByteToWideChar(CP_ACP, 0, ansi, length, nullptr, 0);
883 MultiByteToWideChar(CP_ACP, 0, ansi, length,
889 // Creates an ANSI string from the given wide string, allocating
891 // value using delete[]. Returns the ANSI string, or NULL if the
897 char* ansi = new char[ansi_length + 1]; local
898 WideCharToMultiByte(CP_ACP, 0, utf16_str, -1, ansi, ansi_length, nullptr
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gtest/src/
gtest.cc 854 // Creates a UTF-16 wide string from the given ANSI string, allocating
858 LPCWSTR String::AnsiToUtf16(const char* ansi) {
859 if (!ansi) return NULL;
860 const int length = strlen(ansi);
862 MultiByteToWideChar(CP_ACP, 0, ansi, length,
865 MultiByteToWideChar(CP_ACP, 0, ansi, length,
871 // Creates an ANSI string from the given wide string, allocating
873 // value using delete[]. Returns the ANSI string, or NULL if the
880 char* ansi = new char[ansi_length + 1]; local
882 ansi, ansi_length, NULL, NULL)
    [all...]
  /xsrc/external/mit/xterm/dist/
ptyx.h 351 * ANSI emulation, special character codes
455 } ANSI;
857 /* You must have ANSI/ISO colors to support AIX colors */
863 /* You must have ANSI/ISO colors to support PC colors */
869 /* You must have ANSI/ISO colors to be able to print them */
875 /* You must have ANSI/ISO colors to support 256 colors */
881 /* You must have ANSI/ISO colors to support 88 colors */
1086 ,srm_DECANM = 2 /* ANSI Mode */
2441 ColorRes Acolors[MAXCOLORS]; /* ANSI color emulation */
3475 ColorRes ansi[1] member in struct:__anon12193
    [all...]

Completed in 19 milliseconds