Searched defs:Language (Results 1 - 19 of 19) sorted by relevance

/external/lldb/include/lldb/Core/
H A DLanguage.h1 //===-- Language.h ----------------------------------------------*- C++ -*-===//
18 /// @class Language Language.h "lldb/Core/Language.h"
26 class Language class in namespace:lldb_private
32 Language(lldb::LanguageType language = lldb::eLanguageTypeUnknown);
40 ~Language();
113 Stream& operator << (Stream& s, const Language& language);
/external/chromium_org/third_party/libaddressinput/src/cpp/src/
H A Dlanguage.h27 struct Language { struct in namespace:i18n::addressinput
28 explicit Language(const std::string& language_tag);
29 ~Language();
43 Language ChooseBestAddressLanguage(const Rule& address_region_rule,
44 const Language& ui_language);
H A Dlanguage.cc28 Language::Language(const std::string& language_tag) : tag(language_tag), function in class:i18n::addressinput::Language
56 Language::~Language() {}
58 Language ChooseBestAddressLanguage(const Rule& address_region_rule,
59 const Language& ui_language) {
64 std::vector<Language> available_languages;
69 available_languages.push_back(Language(*language_tag_it));
81 Language latin_script_language(
87 for (std::vector<Language>
[all...]
/external/lldb/source/Core/
H A DLanguage.cpp1 //===-- Language.cpp --------------------------------------------*- C++ -*-===//
11 #include "lldb/Core/Language.h"
54 Language::Language(LanguageType language) : function in class:Language
59 Language::~Language()
64 Language::GetLanguage() const
70 Language::Clear ()
76 Language::SetLanguage(LanguageType language)
82 Language
[all...]
/external/lldb/include/lldb/Expression/
H A DClangExpression.h82 Language () function in class:lldb_private::ClangExpression
H A DClangUserExpression.h241 Language () function in class:lldb_private::ClangUserExpression
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderQuote.cpp76 struct Language { struct in namespace:blink
84 bool operator<(const Language& b) const { return strcmp(lang, b.lang) < 0; }
88 Language languages[] = {
245 Language* languagesEnd = languages + WTF_ARRAY_LENGTH(languages);
247 Language key = { lowercaseLang.data(), 0, 0, 0, 0, 0 };
248 Language* match = std::lower_bound(languages, languagesEnd, key);
/external/clang/unittests/AST/
H A DMatchVerifier.h28 enum Language { Lang_C, Lang_C89, Lang_CXX, Lang_CXX11, Lang_OpenCL }; enum in namespace:clang::ast_matchers
44 Language L) {
53 Language L);
79 std::vector<std::string>& Args, Language L) {
/external/clang/unittests/Tooling/
H A DTestVisitor.h42 enum Language { enum in class:clang::TestVisitor
52 bool runOver(StringRef Code, Language L = Lang_CXX) {
/external/llvm/lib/Support/
H A DDwarf.cpp571 const char *llvm::dwarf::LanguageString(unsigned Language) { argument
572 switch (Language) {
/external/clang/include/clang/Format/
H A DFormat.h57 /// \brief Language, this format style is targeted at.
58 LanguageKind Language; member in struct:clang::format::FormatStyle
391 IndentWidth == R.IndentWidth && Language == R.Language &&
428 FormatStyle getGoogleStyle(FormatStyle::LanguageKind Language);
432 FormatStyle getChromiumStyle(FormatStyle::LanguageKind Language);
455 bool getPredefinedStyle(StringRef Name, FormatStyle::LanguageKind Language,
460 /// Style->Language is used to get the base style, if the \c BasedOnStyle
/external/libvpx/libvpx/third_party/libmkv/
H A DEbmlIDs.h105 Language = 0x22B59C, enumerator in enum:mkv
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
H A Dcmsnamed.c117 // Search for a specific entry in the structure. Language and Country are used.
130 mlu ->Entries[i].Language == LanguageCode) return i;
137 // Add a block of characters to the intended MLU. Language and country are specified.
138 // Only one entry for Language/country pair is allowed.
175 mlu ->Entries[mlu ->UsedEntries].Language = LanguageCode;
221 cmsBool CMSEXPORT cmsMLUsetWide(cmsMLU* mlu, const char Language[3], const char Country[3], const wchar_t* WideString) argument
223 cmsUInt16Number Lang = _cmsAdjustEndianess16(*(cmsUInt16Number*) Language);
294 // the Language. If none is found, first entry is used instead.
313 if (v -> Language == LanguageCode) {
319 if (UsedLanguageCode != NULL) *UsedLanguageCode = v ->Language;
[all...]
H A Dlcms2_internal.h647 cmsUInt16Number Language; member in struct:__anon28718
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/core/
H A Dcmap_table.cc343 int32_t CMapTable::CMapFormat0::Language() { function in class:sfntly::CMapTable::CMapFormat0
462 int32_t CMapTable::CMapFormat2::Language() { function in class:sfntly::CMapTable::CMapFormat2
651 int32_t CMapTable::CMapFormat4::Language(ReadableFontData* data) { function in class:sfntly::CMapTable::CMapFormat4
780 int32_t CMapTable::CMapFormat4::Language() { function in class:sfntly::CMapTable::CMapFormat4
781 return Language(data_);
/external/sfntly/cpp/src/sfntly/table/core/
H A Dcmap_table.cc343 int32_t CMapTable::CMapFormat0::Language() { function in class:sfntly::CMapTable::CMapFormat0
462 int32_t CMapTable::CMapFormat2::Language() { function in class:sfntly::CMapTable::CMapFormat2
651 int32_t CMapTable::CMapFormat4::Language(ReadableFontData* data) { function in class:sfntly::CMapTable::CMapFormat4
780 int32_t CMapTable::CMapFormat4::Language() { function in class:sfntly::CMapTable::CMapFormat4
781 return Language(data_);
/external/chromium_org/third_party/cld/languages/proto/
H A Dlanguages.pb.h8 enum Language { enum
173 // valid Language enum. It is only used to
/external/clang/lib/Format/
H A DFormat.cpp131 IO.mapOptional("Language", Style.Language);
140 if (getPredefinedStyle(StyleName, Style.Language, &PredefinedStyle) &&
150 FormatStyle::LanguageKind OldLanguage = Style.Language;
151 FormatStyle::LanguageKind Language = local
152 ((FormatStyle *)IO.getContext())->Language;
153 if (!getPredefinedStyle(BasedOnStyle, Language, &Style)) {
157 Style.Language = OldLanguage;
251 // If the first element has no Language specified, it will be treated as the
262 if (Seq.size() > 0 && Seq[0].Language
365 getGoogleStyle(FormatStyle::LanguageKind Language) argument
400 getChromiumStyle(FormatStyle::LanguageKind Language) argument
462 getPredefinedStyle(StringRef Name, FormatStyle::LanguageKind Language, FormatStyle *Style) argument
488 FormatStyle::LanguageKind Language = Style->Language; local
1665 getLanguageName(FormatStyle::LanguageKind Language) argument
[all...]
/external/clang/lib/Sema/
H A DSemaDeclCXX.cpp11254 LinkageSpecDecl::LanguageIDs Language; local
11256 Language = LinkageSpecDecl::lang_c;
11258 Language = LinkageSpecDecl::lang_cxx;
11268 LangStr->getExprLoc(), Language,

Completed in 2169 milliseconds