Lines Matching full:c99
897 // C99 6.2.5p19.
900 // C99 6.2.5p2.
902 // C99 6.2.5p3.
907 // C99 6.2.5p4.
914 // C99 6.2.5p6.
921 // C99 6.2.5p10.
938 // C99 (or C++ using -fno-wchar).
946 else // C99
951 else // C99
979 // C99 6.2.5p11.
2153 // C99 6.7.5.3p7:
2161 // C99 6.7.5.3p8:
3732 /// getSizeType - Return the unique type for "size_t" (C99 7.17), the result
3733 /// of the sizeof operator (C99 6.5.3.4p4). The value is target dependent and
3739 /// getIntMaxType - Return the unique type for "intmax_t" (C99 7.18.1.5).
3744 /// getUIntMaxType - Return the unique type for "uintmax_t" (C99 7.18.1.5).
3771 /// getPointerDiffType - Return the unique type for "ptrdiff_t" (C99 7.17)
3772 /// defined in <stddef.h>. Pointer - pointer requires this (C99 6.5.6p9).
4122 // implements C99 6.7.3p8: "If the specification of an array type includes
4184 /// See C99 6.7.5.3p7 and C99 6.3.2.1p3.
4189 // (C99 6.7.3p8).
4286 /// getIntegerRank - Return an integer conversion rank (C99 6.3.1.1p1). This
4320 /// to C99 6.3.1.1p2, bullet 2 (and GCC extensions).
4353 /// promote to: C99 6.3.1.1p2, assuming that Promotable is a promotable
4416 /// C99 6.3.1.8p1. If LHS > RHS, return 1. If LHS == RHS, return 0. If
6836 /// typesAreCompatible - C99 6.7.3p9: For two qualified types to be compatible,
6838 /// C99 6.2.7p1: Two types have compatible types if their types are the
6969 if (lproto && rproto) { // two C99 style function prototypes
7031 // would result from default argument promotions (C99 6.7.5.3p15).
7068 // C99 6.7.2.2p4: Each enumerated type shall be compatible with char,
7828 // GNU or C99 inline semantics. Determine whether this symbol should be
7833 // C99 inline semantics, where the symbol is not externally visible.
7928 // always be deferred. Normal inline functions can be deferred in C99/C++.