Home
last modified time | relevance | path

Searched refs:ALL_LANGUAGES (Results 1 – 5 of 5) sorted by relevance

/external/clang/include/clang/Basic/
DBuiltins.def735 LIBBUILTIN(abort, "v", "fr", "stdlib.h", ALL_LANGUAGES)
736 LIBBUILTIN(calloc, "v*zz", "f", "stdlib.h", ALL_LANGUAGES)
737 LIBBUILTIN(exit, "vi", "fr", "stdlib.h", ALL_LANGUAGES)
738 LIBBUILTIN(_Exit, "vi", "fr", "stdlib.h", ALL_LANGUAGES)
739 LIBBUILTIN(malloc, "v*z", "f", "stdlib.h", ALL_LANGUAGES)
740 LIBBUILTIN(realloc, "v*v*z", "f", "stdlib.h", ALL_LANGUAGES)
742 LIBBUILTIN(memcpy, "v*v*vC*z", "f", "string.h", ALL_LANGUAGES)
743 LIBBUILTIN(memcmp, "ivC*vC*z", "f", "string.h", ALL_LANGUAGES)
744 LIBBUILTIN(memmove, "v*v*vC*z", "f", "string.h", ALL_LANGUAGES)
745 LIBBUILTIN(strcpy, "c*c*cC*", "f", "string.h", ALL_LANGUAGES)
[all …]
DBuiltins.h40 ALL_LANGUAGES = C_LANG | CXX_LANG | OBJC_LANG, // builtin for all languages. enumerator
41 ALL_GNU_LANGUAGES = ALL_LANGUAGES | GNU_LANG, // builtin requires GNU mode.
42 ALL_MS_LANGUAGES = ALL_LANGUAGES | MS_LANG // builtin requires MS mode.
/external/clang/lib/Basic/
DBuiltins.cpp22 { "not a builtin function", nullptr, nullptr, nullptr, ALL_LANGUAGES,nullptr},
24 { #ID, TYPE, ATTRS, nullptr, ALL_LANGUAGES, nullptr },
DTargets.cpp1120 { #ID, TYPE, ATTRS, nullptr, ALL_LANGUAGES, nullptr },
1122 { #ID, TYPE, ATTRS, HEADER, ALL_LANGUAGES, nullptr },
1870 { #ID, TYPE, ATTRS, nullptr, ALL_LANGUAGES, nullptr },
1872 { #ID, TYPE, ATTRS, HEADER, ALL_LANGUAGES, nullptr },
2135 { #ID, TYPE, ATTRS, nullptr, ALL_LANGUAGES, nullptr },
2137 { #ID, TYPE, ATTRS, nullptr, ALL_LANGUAGES, FEATURE },
2251 { #ID, TYPE, ATTRS, nullptr, ALL_LANGUAGES, nullptr },
2253 { #ID, TYPE, ATTRS, HEADER, ALL_LANGUAGES, nullptr },
2255 { #ID, TYPE, ATTRS, nullptr, ALL_LANGUAGES, FEATURE },
5458 { #ID, TYPE, ATTRS, nullptr, ALL_LANGUAGES, nullptr },
[all …]
/external/cldr/tools/java/org/unicode/cldr/util/
DAttributeValueValidity.java427 result = value.equals("all") ? LocaleMatcher.ALL_LANGUAGES : LocaleMatcher.REGULAR; in getMatcherPattern2()
702 public static LocaleMatcher ALL_LANGUAGES = new LocaleMatcher("$_language"); field in AttributeValueValidity.LocaleMatcher