Home
last modified time | relevance | path

Searched full:language (Results 1 – 25 of 2510) sorted by relevance

12345678910>>...101

/openbsd-src/gnu/usr.bin/perl/cpan/Sys-Syslog/win32/
H A DPerlLog.mc21 Language = English
24 Language = French
30 Language = English
33 Language = French
39 Language = English
42 Language = French
48 Language = English
51 Language = French
57 Language = English
60 Language = French
[all …]
/openbsd-src/gnu/llvm/lldb/source/Target/
H A DLanguage.cpp1 //===-- Language.cpp ------------------------------------------------------===//
13 #include "lldb/Target/Language.h"
27 typedef std::unique_ptr<Language> LanguageUP;
53 Language *Language::FindPlugin(lldb::LanguageType language) { in FindPlugin() argument
56 auto iter = map.find(language), end = map.end(); in FindPlugin()
60 Language *language_ptr = nullptr; in FindPlugin()
67 language_ptr = create_callback(language); in FindPlugin()
70 map[language] = std::unique_ptr<Language>(language_ptr); in FindPlugin()
78 Language *Language::FindPlugin(llvm::StringRef file_path) { in FindPlugin()
79 Language *result = nullptr; in FindPlugin()
[all …]
H A DLanguageRuntime.cpp13 #include "lldb/Target/Language.h"
22 lldb::LanguageType language, in ExceptionSearchFilter() argument
24 : SearchFilter(target_sp, FilterTy::Exception), m_language(language), in ExceptionSearchFilter()
104 ExceptionBreakpointResolver(lldb::LanguageType language, bool catch_bp, in ExceptionBreakpointResolver() argument
107 m_language(language), m_catch_bp(catch_bp), m_throw_bp(throw_bp) {} in ExceptionBreakpointResolver()
129 Language *language_plugin = Language::FindPlugin(m_language); in GetDescription()
134 Language::GetDefaultExceptionResolverDescription(m_catch_bp, m_throw_bp, in GetDescription()
203 lldb::LanguageType language) { in FindPlugin() argument
210 if (LanguageRuntime *runtime = create_callback(process, language)) in FindPlugin()
219 LanguageRuntime::GetExceptionPrecondition(LanguageType language, in GetExceptionPrecondition() argument
[all …]
/openbsd-src/gnu/llvm/clang/include/clang/Testing/
H A DTestClangConfig.h25 TestLanguage Language; member
30 bool isC() const { return Language == Lang_C89 || Language == Lang_C99; } in isC()
32 bool isC99OrLater() const { return Language == Lang_C99; } in isC99OrLater()
35 return Language == Lang_CXX03 || Language == Lang_CXX11 || in isCXX()
36 Language == Lang_CXX14 || Language == Lang_CXX17 || in isCXX()
37 Language == Lang_CXX20; in isCXX()
41 return Language == Lang_CXX11 || Language == Lang_CXX14 || in isCXX11OrLater()
42 Language == Lang_CXX17 || Language == Lang_CXX20; in isCXX11OrLater()
46 return Language == Lang_CXX14 || Language == Lang_CXX17 || in isCXX14OrLater()
47 Language == Lang_CXX20; in isCXX14OrLater()
[all …]
/openbsd-src/gnu/llvm/clang/lib/Frontend/
H A DFrontendOptions.cpp17 .Cases("ast", "pcm", InputKind(Language::Unknown, InputKind::Precompiled)) in getInputKindForExtension()
18 .Case("c", Language::C) in getInputKindForExtension()
19 .Cases("S", "s", Language::Asm) in getInputKindForExtension()
20 .Case("i", InputKind(Language::C).getPreprocessed()) in getInputKindForExtension()
21 .Case("ii", InputKind(Language::CXX).getPreprocessed()) in getInputKindForExtension()
22 .Case("cui", InputKind(Language::CUDA).getPreprocessed()) in getInputKindForExtension()
23 .Case("m", Language::ObjC) in getInputKindForExtension()
24 .Case("mi", InputKind(Language::ObjC).getPreprocessed()) in getInputKindForExtension()
25 .Cases("mm", "M", Language::ObjCXX) in getInputKindForExtension()
26 .Case("mii", InputKind(Language::ObjCXX).getPreprocessed()) in getInputKindForExtension()
[all …]
/openbsd-src/gnu/llvm/lldb/source/Symbol/
H A DTypeSystem.cpp13 #include "lldb/Target/Language.h"
34 void LanguageSet::Insert(LanguageType language) { bitvector.set(language); } in Insert() argument
41 static TypeSystemSP CreateInstanceHelper(lldb::LanguageType language, in CreateInstanceHelper() argument
47 if (auto type_system_sp = create_callback(language, module, target)) in CreateInstanceHelper()
54 lldb::TypeSystemSP TypeSystem::CreateInstance(lldb::LanguageType language, in CreateInstance() argument
56 return CreateInstanceHelper(language, module, nullptr); in CreateInstance()
59 lldb::TypeSystemSP TypeSystem::CreateInstance(lldb::LanguageType language, in CreateInstance() argument
61 return CreateInstanceHelper(language, nullptr, target); in CreateInstance()
235 lldb::LanguageType language, in GetTypeSystemForLanguage() argument
243 collection::iterator pos = m_map.find(language); in GetTypeSystemForLanguage()
[all …]
/openbsd-src/gnu/llvm/clang/include/clang/Basic/
H A DLangStandard.h21 /// The language for the input, used to select and validate the language
23 enum class Language : uint8_t { enum
66 /// LangStandard - Information about the properties of a particular language
79 clang::Language Language; member
88 /// Get the language that this standard describes.
89 clang::Language getLanguage() const { return Language; } in getLanguage()
91 /// Language supports '//' comments.
94 /// isC99 - Language is a superset of C99.
97 /// isC11 - Language is a superset of C11.
100 /// isC17 - Language is a superset of C17.
[all …]
/openbsd-src/gnu/llvm/lldb/include/lldb/Target/
H A DLanguage.h1 //===-- Language.h ---------------------------------------------------*- C++
29 class Language : public PluginInterface {
58 class Result : public Language::TypeScavenger::Result {
85 // filter by language + maybe some sugar tweaking
147 ~Language() override;
149 static Language *FindPlugin(lldb::LanguageType language);
151 /// Returns the Language associated with the given file path or a nullptr
152 /// if there is no known language.
153 static Language *FindPlugin(llvm::StringRef file_path);
155 static Language *FindPlugin(lldb::LanguageType language,
[all …]
/openbsd-src/gnu/llvm/clang/lib/Basic/
H A DLangStandards.cpp1 //===--- LangStandards.cpp - Language Standard Definitions ----------------===//
17 static const LangStandard Lang_##id = {name, desc, features, Language::lang};
28 llvm_unreachable("Invalid language kind!"); in getLangStandardForKind()
47 LangStandard::Kind clang::getDefaultLanguageStandard(clang::Language Lang, in getDefaultLanguageStandard()
50 case Language::Unknown: in getDefaultLanguageStandard()
51 case Language::LLVM_IR: in getDefaultLanguageStandard()
53 case Language::OpenCL: in getDefaultLanguageStandard()
55 case Language::OpenCLCXX: in getDefaultLanguageStandard()
57 case Language::CUDA: in getDefaultLanguageStandard()
59 case Language::Asm: in getDefaultLanguageStandard()
[all …]
/openbsd-src/gnu/usr.bin/binutils/gdb/
H A Dlanguage.c1 /* Multiple source language support for GDB.
31 return data out of a "language-specific" struct pointer that is set
32 whenever the working language changes. That would be a lot faster. */
43 #include "language.h"
111 on the default language at startup, and then again based on the
112 language of the first source file. */
121 /* The current language and language_mode (see language.h) */
126 /* The language that the user expects to be typing in (the language
127 of main(), or the last language we notified them about, or C). */
138 /* The "set language/type/range" commands all put stuff in these
[all …]
H A Dlanguage.h1 /* Source-language-related definitions for GDB.
48 range_mode_auto: range_check set automatically to default of language.
69 type_mode_auto: type_check set automatically to default of language
120 /* Per architecture (OS/ABI) language information. */
140 /* Structure tying together assorted information about a language. */
144 /* Name of the language */
148 /* its symtab language-enum (defs.h) */
150 enum language la_language;
204 /* Print a type using syntax appropriate for this language. */
209 /* Print a value using syntax appropriate for this language. */
[all …]
/openbsd-src/gnu/llvm/llvm/docs/tutorial/MyFirstLanguageFrontend/
H A Dindex.rst2 My First Language Frontend with LLVM Tutorial
22 Welcome to the "My First Language Frontend with LLVM" tutorial. Here we
23 run through the implementation of a simple language, showing
28 This tutorial introduces the simple "Kaleidoscope" language, building it
30 over time. This lets us cover a range of language design and LLVM-specific
47 - `Chapter #1: Kaleidoscope language and Lexer <LangImpl01.html>`_ -
50 is also the first part of building a parser for a language, and we
63 - `Chapter #5: Extending the Language: Control Flow <LangImpl05.html>`_ - With
64 the basic language up and running, we show how to extend
68 - `Chapter #6: Extending the Language: User-defined Operators
[all …]
H A DLangImpl10.rst11 Welcome to the final chapter of the "`Implementing a language with
13 grown our little Kaleidoscope language from being a useless toy, to
22 Our little language supports a couple of interesting features: it
42 of type double. This gives the language a very nice elegance, because
55 - **standard runtime** - Our current language allows the user to access
57 and "putchard". As you extend the language to add higher-level
59 lowered to calls into a language-supplied runtime. For example, if
60 you add hash tables to the language, it would probably make sense to
77 features that you can add to the language.
80 specific language. However, there are many other domains that can use
[all …]
/openbsd-src/gnu/usr.bin/perl/dist/Locale-Maketext/lib/Locale/
H A DMaketext.pod14 my $lh = MyProgram::L10N->get_handle() || die "What language?";
47 for all the "language classes" for your project
52 A language class is
56 language.
58 An object belonging to a language class is called a "language
66 # make a language handle from among the classes available,
68 die "Couldn't make a language handle??" unless $lh;
71 entries in whatever lexicon(s) belong to the language handle
76 ...emits the right text for this language. If the object
91 Methods to do with constructing language handles.
[all …]
/openbsd-src/usr.bin/file/magdir/
H A Dprinter45 # HP Printer Job Language
46 0 string \033%-12345X@PJL HP Printer Job Language data
47 # HP Printer Job Language
50 # Every driver puts the language at some random position, with random case
51 # (LANGUAGE and Language)
52 # For example the LaserJet 5L driver puts the "PJL ENTER LANGUAGE" in line 10
55 0 string \033%-12345X@PJL HP Printer Job Language data
60 #>15 string \ ENTER\ LANGUAGE\ =
63 # HP Printer Control Language, Daniel Quinlan (quinlan@yggdrasil.com)
80 # this only works if "language xxx" is first item in Imagen header.
[all …]
/openbsd-src/gnu/usr.bin/binutils/gdb/testsuite/gdb.cp/
H A Dmisc.exp34 # Deduce language of main()
40 # See what language gdb thinks main() is, prior to reading full symbols.
42 send_gdb "show language\n"
44 -re ".* source language is \"auto; currently c\[+\]+\".*$gdb_prompt $" {
45 pass "deduced language is C++, before full symbols"
48 fail "source language not correct for C++ (psymtabs only)"
52 fail "can't show language (timeout)"
59 # See if our idea of the language has changed.
61 send_gdb "show language\n"
63 -re ".* source language is \"auto; currently c\[+\]+\".*$gdb_prompt $" {
[all …]
/openbsd-src/gnu/llvm/lldb/source/Breakpoint/
H A DBreakpointResolverName.cpp18 #include "lldb/Target/Language.h"
29 LanguageType language, Breakpoint::MatchType type, lldb::addr_t offset, in BreakpointResolverName() argument
32 m_match_type(type), m_language(language), m_skip_prologue(skip_prologue) { in BreakpointResolverName()
49 FunctionNameType name_type_mask, LanguageType language, lldb::addr_t offset, in BreakpointResolverName() argument
52 m_match_type(Breakpoint::Exact), m_language(language), in BreakpointResolverName()
62 LanguageType language, in BreakpointResolverName() argument
66 m_match_type(Breakpoint::Exact), m_language(language), in BreakpointResolverName()
75 lldb::LanguageType language, in BreakpointResolverName() argument
80 m_match_type(Breakpoint::Regexp), m_language(language), in BreakpointResolverName()
94 LanguageType language = eLanguageTypeUnknown; in CreateFromStructuredData() local
[all …]
/openbsd-src/gnu/usr.bin/binutils/gdb/testsuite/gdb.base/
H A Dlangs.exp99 gdb_test "show language" "currently $lang\".*" \
100 "show language at csub in langs.exp"
115 gdb_test "show language" "currently $lang.*" \
116 "show language at foo in langs.exp"
121 gdb_test "show language" "currently $lang.*" \
122 "show language at cppsub_ in langs.exp"
128 gdb_test "show language" "currently $lang.*" \
129 "show language at fsub in langs.exp"
136 gdb_test "show language" "currently $lang\".*" \
137 "show language at langs0__2do in langs.exp"
[all …]
/openbsd-src/gnu/usr.bin/binutils/gdb/testsuite/gdb.objc/
H A Dbasicclass.exp36 # Deduce language of main()
42 # See what language gdb thinks main() is, prior to reading full symbols.
44 send_gdb "show language\n"
46 -re ".* source language is \"auto; currently objective-c\".*$gdb_prompt $" {
47 pass "deduced language is Objective-C, before full symbols"
50 fail "source language not correct for Objective-C (psymtabs only)"
54 fail "can't show language (timeout)"
61 # See if our idea of the language has changed.
63 send_gdb "show language\n"
65 -re ".* source language is \"auto; currently objective-c\".*$gdb_prompt $" {
[all …]
/openbsd-src/gnu/llvm/llvm/utils/vscode/llvm/
H A Dvsc-extension-quickstart.md6 * `package.json` - this is the manifest file in which you declare your language support and define …
8 * `language-configuration.json` - this is the language configuration, defining the tokens that are …
12 * Make sure the language configuration settings in `language-configuration.json` are accurate.
14 * Create a new file with a file name suffix matching your language.
15 * Verify that syntax highlighting works and that the language configuration settings are working.
22 ## Add more language features
/openbsd-src/gnu/llvm/lldb/source/Commands/
H A DCommandObjectScript.cpp35 language = (lldb::ScriptLanguage)OptionArgParser::ToOptionEnum( in SetOptionValue()
39 error.SetErrorStringWithFormat("unrecognized value for language '%s'", in SetOptionValue()
51 language = lldb::eScriptLanguageNone; in OptionParsingStarting()
64 "script [--language <scripting-language> --] [<script-code>]") {} in CommandObjectScript()
70 // Try parsing the language option but when the command contains a raw part in DoExecute()
79 lldb::ScriptLanguage language = in DoExecute() local
80 (m_options.language == lldb::eScriptLanguageNone) in DoExecute()
82 : m_options.language; in DoExecute()
84 if (language == lldb::eScriptLanguageNone) { in DoExecute()
91 GetDebugger().GetScriptInterpreter(true, language); in DoExecute()
/openbsd-src/gnu/usr.bin/perl/dist/I18N-LangTags/lib/I18N/
H A DLangTags.pm29 I18N::LangTags - functions for dealing with RFC3066-style language tags
53 Language tags are a formalism, described in RFC 3066 (obsoleting
54 1766), for declaring what language form (language and possibly
57 This library provides functions for common tasks involving language
61 of how to correctly use language tags.
71 Returns true iff $lang1 is a formally valid language tag.
78 (That's American Sign Language)
99 ## Changes in the language tagging standards may have to be reflected here.
122 Returns a list of whatever looks like formally valid language tags
140 ## Changes in the language tagging standards may have to be reflected here.
[all …]
/openbsd-src/gnu/llvm/lldb/source/Interpreter/
H A DOptionValueLanguage.cpp12 #include "lldb/Target/Language.h"
28 strm.PutCString(Language::GetNameForLanguageType(m_current_value)); in DumpValue()
33 return Language::GetNameForLanguageType(m_current_value); in ToJSON()
47 LanguageSet languages_for_types = Language::GetLanguagesSupportingTypeSystems(); in SetValueFromString()
49 Language::GetLanguageTypeFromString(lang_name.GetStringRef()); in SetValueFromString()
55 error_strm.Printf("invalid language type '%s', ", value.str().c_str()); in SetValueFromString()
58 auto language = (LanguageType)bit; in SetValueFromString() local
60 Language::GetNameForLanguageType(language)); in SetValueFromString()
/openbsd-src/gnu/llvm/lldb/tools/lldb-vscode/
H A Dpackage.json48 "language": "lldb.disassembly", string
55 "language": "ada" string
58 "language": "arm" string
61 "language": "asm" string
64 "language": "c" string
67 "language": "cpp" string
70 "language": "crystal" string
73 "language": "d" string
76 "language": "fortan" string
79 "language": "fortran-modern" string
[all …]
/openbsd-src/gnu/llvm/llvm/docs/HistoricalNotes/
H A D2001-01-31-UniversalIRIdea.txt7 customizable runtime system that can be used to implement language-specific
14 perhaps a garbage collection library). Each language vm would select the
15 runtime features needed for that language, extending or customizing them as
18 could be provided by LLVM and should be sufficient for any language,
19 simplifying the language compiler. (This would also help interoperability
22 reusable by different languages, with minor extensions. The language
23 compiler could then focus on language-specific analyses and optimizations.
36 structure LLVM to support one or more language VMs.

12345678910>>...101