Searched refs:C11 (Results 1 - 25 of 32) sorted by relevance

12

/external/clang/include/clang/Frontend/
H A DLangStandard.h24 C11 = (1 << 3), enumerator in enum:clang::frontend::LangFeatures
66 /// isC11 - Language is a superset of C11.
67 bool isC11() const { return Flags & frontend::C11; }
/external/clang/lib/Lex/
H A DPPMacroExpansion.cpp846 // C11 features
847 .Case("c_alignas", LangOpts.C11)
848 .Case("c_atomic", LangOpts.C11)
849 .Case("c_generic_selections", LangOpts.C11)
850 .Case("c_static_assert", LangOpts.C11)
942 // C11 features supported by other languages as extensions.
H A DLexer.cpp1363 if (LangOpts.CPlusPlus11 || LangOpts.C11)
1373 if (LangOpts.CPlusPlus11 || LangOpts.C11)
2855 case 'u': // Identifier (uber) or C11/C++11 UTF-8 or UTF-16 string literal
2859 if (LangOpts.CPlusPlus11 || LangOpts.C11) {
2908 case 'U': // Identifier (Uber) or C11/C++11 UTF-32 string literal
2912 if (LangOpts.CPlusPlus11 || LangOpts.C11) {
/external/clang/lib/Basic/
H A DIdentifierTable.cpp137 else if (LangOpts.C11 && (Flags & KEYC11)) AddResult = 2;
H A DTargets.cpp526 if (Opts.C99 || Opts.C11)
3303 if ((Opts.C99 || Opts.C11) && !Opts.Freestanding)
/external/icu4c/tools/gensprep/
H A DfilterRFC3454.pl43 "--C11" => \$c11,
647 --C11 Generate data for table C.1.1
/external/icu4c/data/sprep/
H A Drfc3530cs.txt140 0C11; ; UNASSIGNED
H A Drfc3530mixp.txt141 0C11; ; UNASSIGNED
H A Drfc3920res.txt141 0C11; ; UNASSIGNED
H A Drfc4011.txt140 0C11; ; UNASSIGNED
H A Drfc4013.txt141 0C11; ; UNASSIGNED
H A Drfc4505.txt140 0C11; ; UNASSIGNED
H A Drfc4518.txt140 0C11; ; UNASSIGNED
H A Drfc3491.txt141 0C11; ; UNASSIGNED
H A Drfc3530csci.txt140 0C11; ; UNASSIGNED
H A Drfc3722.txt13 # options: --sourcedir=. --destdir=out --src-filename=rfc3454.txt --dest-filename=rfc3722.txt --A1 --B1 --B2 -C11 --C12 --C21 --C22 --C3 --C4 --C5 --C6 --C7 --C8 --C9 --iscsi --normalize --check-bidi
141 0C11; ; UNASSIGNED
454 # options: --sourcedir=. --destdir=out --src-filename=rfc3454.txt --dest-filename=rfc3722.txt --A1 --B1 --B2 -C11 --C12 --C21 --C22 --C3 --C4 --C5 --C6 --C7 --C8 --C9 --iscsi --normalize --check-bidi
H A Drfc3920node.txt13 # options: --sourcedir=. --destdir=out --src-filename=rfc3454.txt --dest-filename=rfc3920node.txt --A1 --B1 --B2 -C11 --C12 --C21 --C22 --C3 --C4 --C5 --C6 --C7 --C8 --C9 -xmpp-node --normalize --check-bidi
141 0C11; ; UNASSIGNED
454 # options: --sourcedir=. --destdir=out --src-filename=rfc3454.txt --dest-filename=rfc3920node.txt --A1 --B1 --B2 -C11 --C12 --C21 --C22 --C3 --C4 --C5 --C6 --C7 --C8 --C9 -xmpp-node --normalize --check-bidi
H A Drfc4518ci.txt140 0C11; ; UNASSIGNED
/external/icu4c/test/testdata/
H A Dnfs4_cs_prep_cs.txt132 0C11; ; UNASSIGNED
H A Dnfs4_mixed_prep_p.txt132 0C11; ; UNASSIGNED
/external/clang/lib/Parse/
H A DParseExpr.cpp471 /// [C11] '_Alignof' '(' type-name ')'
491 /// [C11] generic-selection
878 case tok::kw__Generic: // primary-expression: generic-selection [C11 6.5.1]
934 if (!getLangOpts().C11)
1538 /// [C11] '_Alignof' '(' type-name ')'
1616 /// [C11] '_Alignof' '(' type-name ')'
2193 /// ParseGenericSelectionExpression - Parse a C11 generic-selection
2194 /// [C11 6.5.1.1].
2210 if (!getLangOpts().C11)
2219 // C11 6.
[all...]
H A DParseDecl.cpp1225 /// [C++11/C11] static_assert-declaration
1923 // implicit int as an extension in C99 and C11. Allegedly, MS also
2100 /// [C11] type-id
2101 /// [C11] constant-expression
2126 /// [C11] '_Alignas' '(' type-id ')'
2127 /// [C11] '_Alignas' '(' constant-expression ')'
2164 /// [C11] alignment-specifier declaration-specifiers[opt]
2664 if (!getLangOpts().C11)
2671 if (!getLangOpts().C11)
3817 // C11 _Atomi
[all...]
H A DParseDeclCXX.cpp602 /// ParseStaticAssertDeclaration - Parse C++0x or C11 static_assert-declaration.
607 /// [C11] static_assert-declaration:
614 if (Tok.is(tok::kw__Static_assert) && !getLangOpts().C11)
/external/clang/lib/Frontend/
H A DInitPreprocessor.cpp298 if (LangOpts.C11)
357 // Define macros for the C11 / C++11 memory orderings
H A DCompilerInvocation.cpp974 Opts.C11 = Std.isC11();

Completed in 288 milliseconds

12