HomeSort by relevance Sort by last modified time
    Searched refs:C99 (Results 1 - 25 of 36) sorted by null

1 2

  /external/clang/test/Sema/
implicit-builtin-decl.c 26 expected-warning {{implicit declaration of function 'fprintf' is invalid in C99}}
implicit-decl.c 13 expected-error {{implicit declaration of function '_CFCalendarDecomposeAbsoluteTimeV' is invalid in C99}}
16 printg("Hello, World!\n"); // expected-error{{implicit declaration of function 'printg' is invalid in C99}} \
30 formatd("Hello, World!\n"); // expected-error{{implicit declaration of function 'formatd' is invalid in C99}} \
  /external/clang/include/clang/Frontend/
LangStandard.h 23 C99 = (1 << 2),
63 /// isC99 - Language is a superset of C99.
64 bool isC99() const { return Flags & frontend::C99; }
  /external/dhcpcd/mk/
cc.mk 6 # Default to using the C99 standard
7 CSTD?= c99
  /external/clang/lib/Lex/
LiteralSupport.cpp 250 // Check UCN constraints (C99 6.4.3p2) [C++11 lex.charset p2]
280 if (!Features.CPlusPlus && !Features.C99 && Diags)
412 /// integer-constant: [C99 6.4.4.1]
460 /// floating-constant: [C99 6.4.4.2]
    [all...]
PPDirectives.cpp 178 // Error if defining "defined": C99 6.10.8/4, C++ [cpp.predefined]p4.
182 // Warn if undefining "__LINE__" and other builtins, per C99 6.10.8/4
217 // Add a fixit in GNU/C99/C++ mode. Don't offer a fixit for strict-C89,
222 if ((LangOpts.GNUMode || LangOpts.C99 || LangOpts.CPlusPlus) &&
402 DiscardUntilEndOfDirective(); // C99 6.10p4.
671 // C99 6.10.3p8.
674 // C99 6.10.3p11: Is this preprocessor directive in macro invocation? e.g.:
723 // C99 6.10.1 - Conditional Inclusion.
737 // C99 6.10.2 - Source File Inclusion.
745 // C99 6.10.3 - Macro Replacement
    [all...]
PPExpressions.cpp 235 // 'long long' is a C99 or C++11 feature.
236 if (!PP.getLangOpts().C99 && Literal.isLongLong) {
368 // C99 6.5.3.3p3: The sign of the result matches the sign of the operand.
388 // C99 6.5.3.3p4: The sign of the result matches the sign of the operand.
400 // C99 6.5.3.3p5: The sign of the result is 'int', aka it is signed.
536 // Usual arithmetic conversions (C99 6.3.1.8p1): result is unsigned if
633 Res.setIsUnsigned(false); // C99 6.5.8p6, result is always int (signed)
637 Res.setIsUnsigned(false); // C99 6.5.8p6, result is always int (signed)
641 Res.setIsUnsigned(false); // C99 6.5.8p6, result is always int (signed)
645 Res.setIsUnsigned(false); // C99 6.5.8p6, result is always int (signed
    [all...]
TokenLexer.cpp 140 // __VA_ARGS__ is empty, but not in strict C99 mode where there are no
141 // named arguments, where it remains. In all other modes, including C99
144 if (PP.getLangOpts().C99 && !PP.getLangOpts().GNUMode
160 // then removal of the comma should produce a placemarker token (in C99
263 // C99 6.10.3.1p1.
370 // If an empty argument is on the LHS or RHS of a paste, the standard (C99
396 // disabled when using -std=c99.
    [all...]
Lexer.cpp     [all...]
PPMacroExpansion.cpp 182 // examine enclosing ones (C99 5.1.1.2p4). Otherwise walk up the
242 // C99 6.10.3p10: If the preprocessing token immediately after the macro
561 // C99 6.10.3p11: Keep track of the number of l_parens we have seen. Note
615 // C99 6.10.3.4p2.
646 // Empty arguments are standard in C99 and C++0x, and are supported as an
648 if (ArgTokens.size() == ArgTokenStart && !LangOpts.C99)
    [all...]
  /frameworks/compile/slang/
slang.cpp 108 // Language option (define the language feature for compiler such as C99)
158 LangOpts.C99 = 1;
  /external/clang/lib/Parse/
ParseStmt.cpp 41 // C99 6.8: Statements and Blocks.
142 if (Next.is(tok::colon)) { // C99 6.8.1: labeled-statement
200 case tok::kw_case: // C99 6.8.1: labeled-statement
202 case tok::kw_default: // C99 6.8.1: labeled-statement
205 case tok::l_brace: // C99 6.8.2: compound-statement
207 case tok::semi: { // C99 6.8.3p3: expression[opt] ';'
212 case tok::kw_if: // C99 6.8.4.1: if-statement
214 case tok::kw_switch: // C99 6.8.4.2: switch-statement
217 case tok::kw_while: // C99 6.8.5.1: while-statement
219 case tok::kw_do: // C99 6.8.5.2: do-statemen
    [all...]
ParseExpr.cpp 13 /// Expressions in C99 basically consist of a bunch of binary operators with
16 /// In the C99 grammar, these unary operators bind tightest and are represented
37 /// Note: we diverge from the C99 grammar when parsing the assignment-expression
38 /// production. C99 specifies that the LHS of an assignment operator should be
52 /// multiplicative-expression: [C99 6.5.5]
59 /// additive-expression: [C99 6.5.6]
64 /// shift-expression: [C99 6.5.7]
69 /// relational-expression: [C99 6.5.8]
76 /// equality-expression: [C99 6.5.9]
81 /// AND-expression: [C99 6.5.10
    [all...]
  /external/clang/lib/Analysis/
PrintfFormatString.cpp 11 // strings for fprintf() are described in C99 7.19.6.1.
174 // C99: 7.19.6.1 (section 8).
498 // Handle size_t, ptrdiff_t, etc. that have dedicated length modifiers in C99.
499 if (isa<TypedefType>(QT) && (LangOpt.C99 || LangOpt.CPlusPlus11))
558 // appearing in the C99 standard (ISO/IEC 9899:1999 (E) 7.19.6.1)
ScanfFormatString.cpp 11 // strings for fscanf() are described in C99 7.19.6.2.
447 // Handle size_t, ptrdiff_t, etc. that have dedicated length modifiers in C99.
448 if (isa<TypedefType>(PT) && (LangOpt.C99 || LangOpt.CPlusPlus11))
FormatString.cpp 207 if (IsScanf && !LO.C99 && !LO.CPlusPlus11) {
783 // Not C99, but common in Unix.
  /external/clang/lib/Basic/
IdentifierTable.cpp 116 /// The C90/C99/CPP/CPP0x flags are set to 3 if the token is a keyword in a
127 else if (LangOpts.C99 && (Flags & KEYC99)) AddResult = 2;
Targets.cpp 45 // If in GNU mode (e.g. -std=gnu99 but not -std=c99) define the raw identifier
508 // Solaris headers require _XOPEN_SOURCE to be set to 600 for C99 and
510 // ensure that you are not using C99 with an old version of X/Open or C89
512 if (Opts.C99 || Opts.C11)
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/
configure.ac 272 [/* C99 says: define this to get the PRI... macros from stdint.h */
  /external/clang/lib/Sema/
SemaCodeComplete.cpp 515 // Filter out names reserved for the implementation (C99 7.1.3,
    [all...]
DeclSpec.cpp 734 // Duplicates are permitted in C99, but are not permitted in C++. However,
739 if (Lang.C99)
    [all...]
SemaType.cpp 804 // C99 and C++ require a type specifier. For example, C99 6.7.2p2 says:
832 // 'long long' is a C99 or C++11 feature.
833 if (!S.getLangOpts().C99) {
851 // 'long long' is a C99 or C++11 feature.
852 if (!S.getLangOpts().C99) {
    [all...]
SemaLookup.cpp     [all...]
SemaStmt.cpp 47 // C99 6.8.3p2: The expression in an expression statement is evaluated as a
301 if (!getLangOpts().C99 && !getLangOpts().CPlusPlus) {
352 // C99 6.8.4.2p3: The expression shall be an integer constant.
639 // C99 6.8.4.2p5 - Integer promotions are performed on the controlling expr.
770 // We already verified that the expression has a i-c-e value (C99
    [all...]
  /external/clang/lib/Frontend/
InitPreprocessor.cpp 300 else if (LangOpts.C99)
616 // Macros to control C99 numerics and <float.h>
    [all...]

Completed in 1603 milliseconds

1 2