HomeSort by: relevance | last modified time | path
    Searched defs:Language (Results 1 - 13 of 13) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/Testing/
TestClangConfig.h 25 TestLanguage Language;
30 bool isC() const { return Language == Lang_C89 || Language == Lang_C99; }
32 bool isC99OrLater() const { return Language == Lang_C99; }
35 return Language == Lang_CXX03 || Language == Lang_CXX11 ||
36 Language == Lang_CXX14 || Language == Lang_CXX17 ||
37 Language == Lang_CXX20;
41 return Language == Lang_CXX11 || Language == Lang_CXX14 |
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
LangStandard.h 17 /// The language for the input, used to select and validate the language
19 enum class Language : uint8_t {
61 /// LangStandard - Information about the properties of a particular language
74 clang::Language Language;
83 /// Get the language that this standard describes.
84 clang::Language getLanguage() const { return Language; }
86 /// Language supports '//' comments
    [all...]
CodeGenOptions.h 129 Language, // Not specified, use language standard.
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/GSYM/
DwarfTransformer.cpp 31 uint64_t Language = 0;
41 Language = dwarf::toUnsigned(Die.find(dwarf::DW_AT_language), 0);
131 uint64_t Language,
145 if (!(Language == dwarf::DW_LANG_C_plus_plus ||
146 Language == dwarf::DW_LANG_C_plus_plus_03 ||
147 Language == dwarf::DW_LANG_C_plus_plus_11 ||
148 Language == dwarf::DW_LANG_C_plus_plus_14 ||
149 Language == dwarf::DW_LANG_ObjC_plus_plus ||
152 Language == dwarf::DW_LANG_C))
231 if (auto NameIndex = getQualifiedNameIndex(Die, CUI.Language, Gsym)
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/DWARFLinker/
DWARFLinkerCompileUnit.h 305 uint16_t Language = 0;
  /src/external/apache2/llvm/dist/llvm/include/llvm/Object/
WindowsResource.h 87 support::ulittle16_t Language;
108 uint16_t getLanguage() const { return Suffix->Language; }
  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
WebAssemblyAsmPrinter.cpp 12 /// language.
345 StringRef Language = dwarf::LanguageString(CU->getSourceLanguage());
346 Language.consume_front("DW_LANG_");
347 if (SeenLanguages.insert(Language).second)
348 Languages.emplace_back(Language.str(), "");
372 for (auto &Producers : {std::make_pair("language", &Languages),
  /src/external/apache2/llvm/dist/clang/lib/Format/
Format.cpp 465 // When reading, read the language first, we need it for getPredefinedStyle.
466 IO.mapOptional("Language", Style.Language);
475 if (getPredefinedStyle(StyleName, Style.Language, &PredefinedStyle) &&
485 FormatStyle::LanguageKind OldLanguage = Style.Language;
486 FormatStyle::LanguageKind Language =
487 ((FormatStyle *)IO.getContext())->Language;
488 if (!getPredefinedStyle(BasedOnStyle, Language, &Style)) {
492 Style.Language = OldLanguage;
747 IO.mapOptional("Language", Format.Language)
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
AMDGPUMetadata.h 383 constexpr char Language[] = "Language";
402 /// Language. Optional.
404 /// Language version. Optional.
  /src/external/apache2/llvm/dist/clang/include/clang/Format/
Format.h 874 /// instead of identifiers. This can be useful for language extensions or
2424 /// When stored in a configuration file, specifies the language, that the
2426 /// syntax features specific to the language.
2449 bool isCpp() const { return Language == LK_Cpp || Language == LK_ObjC; }
2450 bool isCSharp() const { return Language == LK_CSharp; }
2452 /// Language, this format style is targeted at.
2453 LanguageKind Language;
2662 /// The language of this raw string.
2663 LanguageKind Language;
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
DwarfUnit.cpp 633 // A runtime language of 0 actually means C/C++ and that any
815 // Add prototype flag if we're dealing with a C language and the function has
817 uint16_t Language = getLanguage();
819 (Language == dwarf::DW_LANG_C89 || Language == dwarf::DW_LANG_C99 ||
820 Language == dwarf::DW_LANG_ObjC))
981 // No harm in adding the runtime language to the declaration.
1202 // language.
1203 uint16_t Language = getLanguage();
1205 (Language == dwarf::DW_LANG_C89 || Language == dwarf::DW_LANG_C99 |
    [all...]
  /src/sys/external/bsd/acpica/dist/include/
actbl3.h 91 * "Bitfields are great and easy to read, but unfortunately the C language
159 UINT8 Language;
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseDecl.cpp 1257 /// 'language' '=' <string>
1271 Ident_language = PP.getIdentifierInfo("language");
1276 ExprResult Language;
1282 // Parse the language/defined_in/generated_declaration keywords
1324 << /*language | source container*/ (Keyword != Ident_language);
1335 Language = ParseStringLiteralExpression();
1354 ArgsUnion Args[] = {Language.get(), DefinedInExpr.get(),
2572 // language doesn't "officially" support implicit int -- we support
4544 // Other language modes supporting enumerations with fixed underlying types

Completed in 34 milliseconds