| /src/external/gpl3/gcc/dist/gcc/c/ |
| c-aux-info.cc | 30 ansi, enumerator in enum:formals_style 102 we are currently aiming for is non-ansi, then we just return a pair 111 if (style != ansi) 122 this_type = gen_type ("", TREE_VALUE (formal_type), ansi); 131 /* If we got to here, then we are trying to generate an ANSI style formal 134 New style prototyped ANSI formal parameter lists should in theory always 211 if (*formal_list && ((style == ansi) || (style == k_and_r_names))) 220 if (style == ansi) 227 if ((style == ansi) || (style == k_and_r_names)) 351 data_type = concat (data_type, gen_decl (chain_p, 0, ansi), [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/c/ |
| c-aux-info.cc | 30 ansi, enumerator in enum:formals_style 102 we are currently aiming for is non-ansi, then we just return a pair 111 if (style != ansi) 122 this_type = gen_type ("", TREE_VALUE (formal_type), ansi); 131 /* If we got to here, then we are trying to generate an ANSI style formal 134 New style prototyped ANSI formal parameter lists should in theory always 211 if (*formal_list && ((style == ansi) || (style == k_and_r_names))) 220 if (style == ansi) 227 if ((style == ansi) || (style == k_and_r_names)) 351 data_type = concat (data_type, gen_decl (chain_p, 0, ansi), [all...] |
| /src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/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...] |