Searched refs:language (Results 1 - 25 of 109) sorted by relevance

12345

/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/Core/
H A DLanguage.h19 /// @brief Encapsulates the programming language for an lldb object.
23 /// The enumeration values used when describing the programming language
30 /// Construct with optional language enumeration.
32 Language(lldb::LanguageType language = lldb::eLanguageTypeUnknown);
43 /// Get the language value as a NULL termianted C string.
46 /// The C string representation of the language. The returned
48 /// strings. NULL can be returned when the language is set to
62 /// Dump the language value to the stream \a s.
65 /// The stream to which to dump the language description.
71 /// Get accessor for the language
[all...]
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Core/
H A DLanguage.cpp54 Language::Language(LanguageType language) : argument
55 m_language (language)
76 Language::SetLanguage(LanguageType language) argument
78 m_language = language;
139 s->Printf("Language(language = 0x%4.4x)", m_language);
146 lldb_private::operator << (Stream& s, const Language& language) argument
148 language.Dump(&s);
/freebsd-10.1-release/usr.sbin/kbdmap/
H A DLanguages.phrases24 9. Chose your keyboard language
/freebsd-10.1-release/usr.bin/vgrind/
H A Dextern.h53 extern const char *language; /* the language indicator */
/freebsd-10.1-release/contrib/libreadline/
H A Dnls.c207 char *cp, *language, *result; local
209 cp = language = name;
215 /* This does not make sense: language has to be specified. As
218 if (language == cp)
220 *lenp = strlen (language);
221 result = language;
245 *lenp = strlen (language);
246 result = language;
/freebsd-10.1-release/crypto/openssl/crypto/x509v3/
H A Dv3_pci.c77 ASN1_OBJECT **language, ASN1_INTEGER **pathlen,
82 if (strcmp(val->name, "language") == 0) {
83 if (*language) {
89 if (!(*language = OBJ_txt2obj(val->value, 0))) {
231 ASN1_OBJECT *language = NULL; local
258 &language, &pathlen, &policy);
264 if (!process_pci_value(cnf, &language, &pathlen, &policy)) {
272 if (!language) {
277 i = OBJ_obj2nid(language);
290 pci->proxyPolicy->policyLanguage = language;
76 process_pci_value(CONF_VALUE *val, ASN1_OBJECT **language, ASN1_INTEGER **pathlen, ASN1_OCTET_STRING **policy) argument
[all...]
/freebsd-10.1-release/contrib/gdb/gdb/
H A Dtracepoint.h76 enum language language; member in struct:tracepoint
H A Dbuildsym.c41 #include "language.h" /* For "local_hex_string" */
577 /* Default the source language to whatever can be deduced from the
579 file with a ".h" extension), then inherit whatever language the
582 language. Also, when symtabs are allocated we try to deduce a
583 language then as well, but it is too late for us to use that
588 subfile->language = deduce_language_from_filename (subfile->name);
589 if (subfile->language == language_unknown &&
592 subfile->language = subfile->next->language;
600 language o
[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
110 /* Information for doing language dependent formatting of printed values. */
116 the language. */
141 /* Structure tying together assorted information about a language. */
145 /* Name of the language */
149 /* its symtab language-enum (defs.h) */
151 enum language la_language;
194 /* Print a type using syntax appropriate for this language
[all...]
H A Dsymtab.h83 multilanguage environment, some language specific information may need to
123 /* Since one and only one language can apply, wrap the language specific
137 /* Record the source code language that applies to this symbol.
138 This is used to select one of the fields from the language specific
141 ENUM_BITFIELD(language) language : 8; member in struct:general_symbol_info
173 #define SYMBOL_LANGUAGE(symbol) (symbol)->ginfo.language
180 /* Initializes the language dependent portion of a symbol
181 depending upon the language fo
826 enum language language; member in struct:symtab
[all...]
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
144 static char *language; variable
[all...]
H A Dbuildsym.h70 enum language language; member in struct:subfile
H A Dsymfile.h160 enum language, struct objfile *);
167 enum language,
H A Dbreakpoint.h328 enum language language;
327 enum language language; member in struct:breakpoint
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/Target/
H A DLanguageRuntime.h36 FindPlugin (Process *process, lldb::LanguageType language);
83 lldb::LanguageType language,
92 GetNameForLanguageType (lldb::LanguageType language);
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Target/
H A DLanguageRuntime.cpp22 lldb::LanguageType language) :
24 m_language (language),
111 ExceptionBreakpointResolver (lldb::LanguageType language, argument
115 m_language (language),
229 LanguageRuntime::FindPlugin (Process *process, lldb::LanguageType language) argument
238 language_runtime_ap.reset (create_callback(process, language));
264 lldb::LanguageType language,
269 BreakpointResolverSP resolver_sp(new ExceptionBreakpointResolver(language, catch_bp, throw_bp));
270 SearchFilterSP filter_sp(new ExceptionSearchFilter(target.shared_from_this(), language));
329 LanguageRuntime::GetNameForLanguageType (LanguageType language) argument
21 ExceptionSearchFilter(const lldb::TargetSP &target_sp, lldb::LanguageType language) argument
263 CreateExceptionBreakpoint(Target &target, lldb::LanguageType language, bool catch_bp, bool throw_bp, bool is_internal) argument
[all...]
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DCompileUnit.h43 /// Construct with a module, path, UID and language.
47 /// \a uid, and the source language type.
65 /// @param[in] language
66 /// A language enumeration type that describes the main language
71 CompileUnit(const lldb::ModuleSP &module_sp, void *user_data, const char *pathname, lldb::user_id_t uid, lldb::LanguageType language);
74 /// Construct with a module, file spec, UID and language.
78 /// \a uid, and the source language type.
97 /// @param[in] language
98 /// A language enumeratio
149 SetLanguage(lldb::LanguageType language) argument
[all...]
/freebsd-10.1-release/contrib/binutils/binutils/
H A Dresres.c118 rc_uint_type language; local
145 language = -1;
148 (const rc_res_id *) NULL, &language, 1);
154 language = -1;
158 &language, 1);
198 resinfo.language = windres_get_16 (wrbfd, l.language, 2);
212 res_add_resource (r, &type, &name, resinfo.language, 0);
220 const rc_res_id *type, const rc_res_id *name, rc_uint_type *language,
244 /* If we're at level 3, then this key represents a language
219 write_res_directory(windres_bfd *wrbfd, rc_uint_type off, const rc_res_directory *rd, const rc_res_id *type, const rc_res_id *name, rc_uint_type *language, int level) argument
635 res_add_resource(rc_res_resource *r, const rc_res_id *type, const rc_res_id *id, rc_uint_type language, int dupok) argument
[all...]
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Interpreter/
H A DScriptInterpreter.cpp67 ScriptInterpreter::LanguageToString (lldb::ScriptLanguage language) argument
71 switch (language)
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Symbol/
H A DCompileUnit.cpp20 CompileUnit::CompileUnit (const lldb::ModuleSP &module_sp, void *user_data, const char *pathname, const lldb::user_id_t cu_sym_id, lldb::LanguageType language) : argument
25 m_language (language),
32 if (language != eLanguageTypeUnknown)
37 CompileUnit::CompileUnit (const lldb::ModuleSP &module_sp, void *user_data, const FileSpec &fspec, const lldb::user_id_t cu_sym_id, lldb::LanguageType language) : argument
42 m_language (language),
49 if (language != eLanguageTypeUnknown)
88 Language language(m_language);
89 *s << "id = " << (const UserID&)*this << ", file = \"" << (const FileSpec&)*this << "\", language = \"" << language << '"';
105 << ", language
[all...]
/freebsd-10.1-release/contrib/gperf/src/
H A Doptions.h147 /* Sets the output language, if not already set. */
148 void set_language (const char *language);
237 /* The output language. */
H A Doptions.cc122 " -L, --language=LANGUAGE-NAME\n"
123 " Generates code in the specified language. Languages\n"
561 /* Sets the output language, if not already set. */
563 Options::set_language (const char *language) argument
567 _language = language;
569 if (!strcmp (language, "KR-C"))
571 else if (!strcmp (language, "C"))
573 else if (!strcmp (language, "ANSI-C"))
575 else if (!strcmp (language, "C++"))
579 fprintf (stderr, "unsupported language optio
[all...]
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/
H A DItaniumABILanguageRuntime.h53 CreateInstance (Process *process, lldb::LanguageType language);
/freebsd-10.1-release/cddl/contrib/dtracetoolkit/Include/
H A Dtest.ksh18 * See the License for the specific language governing permissions
/freebsd-10.1-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/
H A Derr.chillbadarg.ksh10 * See the License for the specific language governing permissions

Completed in 355 milliseconds

12345