HomeSort by: relevance | last modified time | path
    Searched refs:Language (Results 1 - 25 of 101) sorted by relevancy

1 2 3 4 5

  /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/lib/Frontend/
FrontendOptions.cpp 17 .Cases("ast", "pcm", InputKind(Language::Unknown, InputKind::Precompiled))
18 .Case("c", Language::C)
19 .Cases("S", "s", Language::Asm)
20 .Case("i", InputKind(Language::C).getPreprocessed())
21 .Case("ii", InputKind(Language::CXX).getPreprocessed())
22 .Case("cui", InputKind(Language::CUDA).getPreprocessed())
23 .Case("m", Language::ObjC)
24 .Case("mi", InputKind(Language::ObjC).getPreprocessed())
25 .Cases("mm", "M", Language::ObjCXX)
26 .Case("mii", InputKind(Language::ObjCXX).getPreprocessed()
    [all...]
CompilerInvocation.cpp 540 if ((IK.getLanguage() == Language::OpenCL ||
541 IK.getLanguage() == Language::OpenCLCXX) &&
1535 case CodeGenOptions::FiniteLoopsKind::Language:
1569 // Some codegen options depend on language options. Let's provide the expected
1714 if (IK.getLanguage() != Language::LLVM_IR)
1905 IK.getLanguage() != Language::LLVM_IR)
2533 case Language::C:
2536 case Language::OpenCL:
2539 case Language::OpenCLCXX:
2542 case Language::CUDA
    [all...]
FrontendActions.cpp 542 Out.indent(2) << "Language options:\n";
866 case Language::C:
867 case Language::CXX:
868 case Language::ObjC:
869 case Language::ObjCXX:
870 case Language::OpenCL:
871 case Language::OpenCLCXX:
872 case Language::CUDA:
873 case Language::HIP:
876 case Language::Unknown
    [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...]
  /src/external/apache2/llvm/dist/llvm/utils/vim/ftplugin/
llvm.vim 2 " Language: LLVM Assembly
tablegen.vim 2 " Language: LLVM TableGen
mir.vim 2 " Language: LLVM Machine IR
  /src/external/apache2/llvm/dist/clang/include/clang/Frontend/
FrontendOptions.h 147 Language Lang;
159 constexpr InputKind(Language L = Language::Unknown, Format F = Source,
163 Language getLanguage() const { return static_cast<Language>(Lang); }
168 bool isUnknown() const { return Lang == Language::Unknown && Fmt == Source; }
170 /// Is the language of the input some dialect of Objective-C?
172 return Lang == Language::ObjC || Lang == Language::ObjCXX;
469 /// extension. For example, "c" would return Language::C
    [all...]
  /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/clang/lib/Basic/
LangStandards.cpp 1 //===--- LangStandards.cpp - Language Standard Definitions ----------------===//
15 static const LangStandard Lang_##id = {name, desc, features, Language::lang};
26 llvm_unreachable("Invalid language kind!");
  /src/external/apache2/llvm/dist/clang/lib/Format/
UnwrappedLineParser.cpp 303 !Line->InPPDirective && Style.Language != FormatStyle::LK_JavaScript;
306 if (Style.Language == FormatStyle::LK_TextProto)
320 if (Style.Language == FormatStyle::LK_TextProto &&
414 if (Style.Language == FormatStyle::LK_JavaScript &&
464 if (Style.Language == FormatStyle::LK_JavaScript && PrevTok) {
489 if (Style.Language == FormatStyle::LK_Proto) {
506 (Style.Language == FormatStyle::LK_JavaScript &&
716 bool SkipIndent = (Style.Language == FormatStyle::LK_JavaScript &&
1044 if (Style.Language == FormatStyle::LK_TableGen &&
1076 if (Style.Language == FormatStyle::LK_Java |
    [all...]
TokenAnnotator.cpp 112 if (Style.Language == FormatStyle::LK_Java &&
138 if (Style.Language == FormatStyle::LK_TextProto ||
139 (Style.Language == FormatStyle::LK_Proto && Left->Previous &&
148 Style.Language == FormatStyle::LK_Java) {
154 !Style.isCSharp() && Style.Language != FormatStyle::LK_Proto &&
155 Style.Language != FormatStyle::LK_TextProto))
169 if (Style.Language == FormatStyle::LK_Proto) {
233 } else if (Style.Language == FormatStyle::LK_JavaScript &&
247 } else if (Style.Language == FormatStyle::LK_JavaScript && Left->Previous &&
253 } else if (Style.Language == FormatStyle::LK_JavaScript && Left->Previous &
    [all...]
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...]
ContinuationIndenter.cpp 126 if (Style.Language == FormatStyle::LK_Proto && Current.is(TT_SelectorName))
140 return Style.Language == FormatStyle::LK_TextProto ||
141 (Style.Language == FormatStyle::LK_Proto &&
171 // Returns the canonical delimiter for \p Language, or the empty string if no
175 FormatStyle::LanguageKind Language) {
177 if (Format.Language == Language)
187 CodeStyle.GetLanguageStyle(RawStringFormat.Language);
191 RawStringFormat.Language, &PredefinedStyle)) {
193 PredefinedStyle.Language = RawStringFormat.Language
    [all...]
FormatTokenLexer.cpp 66 if (Style.Language == FormatStyle::LK_JavaScript) {
70 if (Style.Language == FormatStyle::LK_TextProto)
95 if (Style.Language == FormatStyle::LK_JavaScript || Style.isCSharp()) {
140 if (Style.Language == FormatStyle::LK_JavaScript) {
175 if (Style.Language == FormatStyle::LK_Java) {
906 if ((Style.Language == FormatStyle::LK_JavaScript ||
907 Style.Language == FormatStyle::LK_Java) &&
963 if (Style.Language == FormatStyle::LK_Java &&
968 } else if (Style.Language == FormatStyle::LK_JavaScript &&
1039 } else if (Style.Language == FormatStyle::LK_JavaScript &
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/DWARFLinker/
DWARFLinkerCompileUnit.cpp 25 if (!Language) {
27 Language = dwarf::toUnsigned(CU.find(dwarf::DW_AT_language), 0);
29 return Language;
  /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/utils/vim/syntax/
machine-ir.vim 2 " Language: mir
mir.vim 2 " Language: mir
tablegen.vim 2 " Language: TableGen
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Frontend/
ModelInjector.cpp 70 InputKind IK = Language::CXX; // FIXME
  /src/external/apache2/llvm/dist/llvm/utils/vim/indent/
llvm.vim 2 " Language: llvm
  /src/external/gpl2/gettext/dist/gettext-tools/tests/
xgettext-java-2 81 "Language-Team: LANGUAGE <LL@li.org>\n"
  /src/external/apache2/llvm/dist/clang/lib/Tooling/
InterpolatingCompilationDatabase.cpp 31 // Source language is a tricky issue: is it OK to use a .c file's command
32 // for building a .cc file? What language is a .h file in?
34 // - For files whose language is implied by the filename (e.g. .m, .hpp)
35 // we prefer candidates from the same language.
37 // - For .h files, candidates from any c-family language are acceptable.
38 // We use the candidate's language, inserting e.g. -x c++-header.
129 // Language detected from -x or the filename. Never TY_INVALID.
184 // Strip -x, but record the overridden language.
218 // If the filename doesn't determine the language (.h), transfer with -x.
235 // --std flag may only be transferred if the language is the same
    [all...]

Completed in 28 milliseconds

1 2 3 4 5