| /xsrc/external/mit/freetype/dist/builds/ansi/ |
| ansi.mk | 2 # FreeType 2 configuration rules for a `normal' pseudo ANSI compiler/system 16 include $(TOP_DIR)/builds/ansi/ansi-def.mk 17 include $(TOP_DIR)/builds/compiler/ansi-cc.mk
|
| ansi-def.mk | 2 # FreeType 2 configuration rules for a `normal' ANSI system 19 BUILD_DIR := $(TOP_DIR)/builds/ansi 20 PLATFORM := ansi 68 # ANSI compliance. 72 # ANSIFLAGS: Put there the flags used to make your compiler ANSI-compliant.
|
| /xsrc/external/mit/freetype/dist/builds/beos/ |
| beos.mk | 15 include $(TOP_DIR)/builds/compiler/ansi-cc.mk
|
| detect.mk | 19 ifeq ($(PLATFORM),ansi)
|
| /xsrc/external/mit/freetype/dist/builds/ |
| detect.mk | 26 # PLATFORM The detected platform. This will default to `ansi' if 41 # Set auto-detection default to `ansi' resp. UNIX-like operating systems. 43 PLATFORM := ansi 72 .PHONY: $(PLATFORMS) ansi 82 PLATFORM := ansi 85 # If the user has explicitly asked for `ansi' on the command line, 88 ifeq ($(findstring ansi,$(MAKECMDGOALS)),) 99 CONFIG_FILE := ansi.mk
|
| /xsrc/external/mit/freetype/dist/builds/compiler/ |
| gcc.mk | 62 # ANSI compliance. 66 # ANSIFLAGS: Put there the flags used to make your compiler ANSI-compliant. 68 ANSIFLAGS := -ansi -pedantic
|
| gcc-dev.mk | 63 # ANSI compliance. 84 # ANSIFLAGS: Put there the flags used to make your compiler ANSI-compliant. 86 ANSIFLAGS := -ansi -pedantic
|
| /xsrc/external/mit/freetype/dist/builds/os2/ |
| detect.mk | 19 ifeq ($(PLATFORM),ansi)
|
| /xsrc/external/mit/freetype/dist/builds/unix/ |
| detect.mk | 17 ifeq ($(PLATFORM),ansi) 30 endif # test PLATFORM ansi
|
| /xsrc/external/mit/freetype/dist/builds/dos/ |
| detect.mk | 19 ifeq ($(PLATFORM),ansi) 69 endif # test PLATFORM ansi
|
| /xsrc/external/mit/freetype/dist/builds/windows/ |
| detect.mk | 19 ifeq ($(PLATFORM),ansi) 64 endif # test PLATFORM ansi
|
| /xsrc/external/mit/xterm/dist/vttests/ |
| palettes.pl | 780 my $ansi = shift; 784 if ($ansi) { 815 my $ansi = shift; 818 my @check = &query_color( $ansi, $color );
|
| /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/ |
| misc.c | 2876 * Allocate a color for the "ANSI" colors. That actually includes colors up 2968 * 16/88/256 "ANSI" colors, followed by special color values for the various 4420 parse_ansi_params(ANSI *params, const char **string) 4463 parse_decdld(ANSI *params, const char *string) 4857 ANSI params; 4983 3, /* ANSI SGR color */ 5331 ANSI reply; 5389 ANSI reply; 5404 case srm_DECANM: /* ANSI/VT52 mode */ 8260 CopyColorSlot(&(palette->ansi[0]), screen->Acolors, MAXCOLORS) [all...] |
| 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...] |
| /xsrc/external/mit/evieext/dist/ |
| configure | 3339 /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has 3343 proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an 3348 /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters 3367 for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ 3977 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 3978 $as_echo_n "checking for ANSI C header files... " >&6; } 4005 # SunOS 4.x string.h does not declare mem*, contrary to ANSI. 4022 # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. 4039 # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi [all...] |
| /xsrc/external/mit/libpthread-stubs/dist/ |
| configure | 1919 /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has 1923 proper ANSI mode. Curiously \x00 != x always comes out true, for an 1928 /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters 4019 for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
|
| /xsrc/external/mit/xf86dga/dist/ |
| configure | 3349 /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has 3353 proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an 3358 /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters 3377 for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ 3987 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 3988 $as_echo_n "checking for ANSI C header files... " >&6; } 4015 # SunOS 4.x string.h does not declare mem*, contrary to ANSI. 4032 # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. 4049 # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi [all...] |
| /xsrc/external/mit/xsetmode/dist/ |
| configure | 2394 echo "$as_me:$LINENO: checking for $CC option to accept ANSI C" >&5 2395 echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6 2430 /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has 2434 proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an 2453 # Don't try gcc -ansi; that turns off useful extensions and 2455 # AIX -qlanglvl=ansi 2460 for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
|
| /xsrc/external/mit/xsetpointer/dist/ |
| configure | 3102 /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has 3106 proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an 3111 /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters 3130 for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \
|
| /xsrc/external/mit/glw/dist/ |
| configure | 3616 /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has 3620 proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an 3625 /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters 3644 for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ 4420 /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has 4424 proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an 4429 /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters 4448 for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ 7317 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 7318 $as_echo_n "checking for ANSI C header files... " >&6; [all...] |
| /xsrc/external/mit/imake/dist/ |
| configure | 2214 /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has 2218 proper ANSI mode. Curiously \x00 != x always comes out true, for an 2223 /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters 4359 for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" 11894 elif test `${RAWCPP} -undef -ansi < conftest.$ac_ext | grep -c 'unix'` -eq 1 ; then 11895 RAWCPPFLAGS="-undef -ansi" 11896 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes, with -ansi" >&5 11897 printf "%s\n" "yes, with -ansi" >&6; }
|
| /xsrc/external/mit/xf86-video-intel-old/dist/ |
| configure | 3852 /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has 3856 proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an 3861 /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters 3880 for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ 6725 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 6726 $as_echo_n "checking for ANSI C header files... " >&6; } 6753 # SunOS 4.x string.h does not declare mem*, contrary to ANSI. 6770 # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. 6787 # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi [all...] |
| /xsrc/external/mit/xinit/dist/ |
| configure | 2205 /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has 2209 proper ANSI mode. Curiously \x00 != x always comes out true, for an 2214 /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters 3623 for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" 11658 elif test `${RAWCPP} -undef -ansi < conftest.$ac_ext | grep -c 'unix'` -eq 1 ; then 11659 RAWCPPFLAGS="-undef -ansi" 11660 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes, with -ansi" >&5 11661 printf "%s\n" "yes, with -ansi" >&6; }
|