Home
last modified time | relevance | path

Searched refs:Overload (Results 1 – 25 of 82) sorted by relevance

1234

/external/caliper/examples/src/main/java/examples/
DCharacterBenchmark.java31 @Param private Overload overload;
39 public enum Overload { CHAR, INT } enum in CharacterBenchmark
56 if (overload == Overload.CHAR) { in isSpace()
73 if (overload == Overload.CHAR) { in digit()
89 if (overload == Overload.CHAR) { in getNumericValue()
105 if (overload == Overload.CHAR) { in isDigit()
121 if (overload == Overload.CHAR) { in isIdentifierIgnorable()
137 if (overload == Overload.CHAR) { in isJavaIdentifierPart()
153 if (overload == Overload.CHAR) { in isJavaIdentifierStart()
169 if (overload == Overload.CHAR) { in isLetter()
[all …]
/external/llvm-project/libcxx/test/libcxx/utilities/meta/stress_tests/
Dstress_test_variant_overloads_impl.sh.cpp58 struct Overload { struct
71 using Apply = AllOverloads<Overload<Types, _Idx>...>;
83 template <class... Types> struct Overload;
86 struct Overload<> { void operator()() const; }; struct
89 struct Overload<Tp, Types...> : Overload<Types...> { struct
90 using Overload<Types...>::operator();
95 using Overloads = Overload<Types...>;
/external/llvm-project/clang-tools-extra/clang-tidy/misc/
DNewDeleteOverloadsCheck.cpp171 for (const auto *Overload : RP.second) { in onEndOfTranslationUnit() local
174 [&Overload](const FunctionDecl *FD) { in onEndOfTranslationUnit()
175 if (FD == Overload) in onEndOfTranslationUnit()
179 if (FD->getDeclContext() != Overload->getDeclContext()) in onEndOfTranslationUnit()
184 if (!areCorrespondingOverloads(Overload, FD)) in onEndOfTranslationUnit()
194 const auto *MD = dyn_cast<CXXMethodDecl>(Overload); in onEndOfTranslationUnit()
196 Diagnose.push_back(Overload); in onEndOfTranslationUnit()
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
Dp10.cpp14 static void Overload(int);
15 void Overload();
16 virtual X0& Overload(float);
20 (void)[&Overload] () {}; // expected-error {{does not name a variable}} in explicit_capture()
/external/llvm-project/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
Dp10.cpp14 static void Overload(int);
15 void Overload();
16 virtual X0& Overload(float);
20 (void)[&Overload] () {}; // expected-error {{does not name a variable}} in explicit_capture()
/external/clang/test/SemaCXX/
Dlambda-expressions.cpp10 static void Overload(int);
11 void Overload();
12 virtual C& Overload(float);
21 []{Overload(3);}; in ImplicitThisCapture()
22 []{Overload();}; // expected-error {{'this' cannot be implicitly captured in this context}} in ImplicitThisCapture()
23 []{(void)typeid(Overload());}; in ImplicitThisCapture()
24 …[]{(void)typeid(Overload(.5f));};// expected-error {{'this' cannot be implicitly captured in this … in ImplicitThisCapture()
Dtypo-correction-delayed.cpp129 AssertionResult Overload(const char *a);
130 AssertionResult Overload(int a);
135 Overload(resulta); in UseOverload()
/external/llvm-project/clang/utils/TableGen/
DClangOpenCLBuiltinEmitter.cpp506 for (const auto &Overload : SLM.second.Signatures) { in EmitBuiltinTable() local
507 StringRef ExtName = Overload.first->getValueAsDef("Extension")->getName(); in EmitBuiltinTable()
508 OS << " { " << Overload.second << ", " in EmitBuiltinTable()
509 << Overload.first->getValueAsListOfDefs("Signature").size() << ", " in EmitBuiltinTable()
510 << (Overload.first->getValueAsBit("IsPure")) << ", " in EmitBuiltinTable()
511 << (Overload.first->getValueAsBit("IsConst")) << ", " in EmitBuiltinTable()
512 << (Overload.first->getValueAsBit("IsConv")) << ", " in EmitBuiltinTable()
514 << Overload.first->getValueAsDef("MinVersion")->getValueAsInt("ID") in EmitBuiltinTable()
516 << Overload.first->getValueAsDef("MaxVersion")->getValueAsInt("ID") in EmitBuiltinTable()
/external/llvm-project/clang/test/SemaCXX/
Dlambda-expressions.cpp10 static void Overload(int);
11 void Overload();
12 virtual C& Overload(float);
22 []{Overload(3);}; in ImplicitThisCapture()
23 []{Overload();}; // expected-error {{'this' cannot be implicitly captured in this context}} in ImplicitThisCapture()
24 []{(void)typeid(Overload());}; in ImplicitThisCapture()
25 …[]{(void)typeid(Overload(.5f));};// expected-error {{'this' cannot be implicitly captured in this … in ImplicitThisCapture()
Dtypo-correction-delayed.cpp129 AssertionResult Overload(const char *a);
130 AssertionResult Overload(int a);
135 Overload(resulta); in UseOverload()
/external/llvm-project/clang-tools-extra/docs/clang-tidy/checks/
Dmisc-new-delete-overloads.rst18 This check corresponds to CERT C++ Coding Standard rule `DCL54-CPP. Overload allocation and dealloc…
19 <https://www.securecoding.cert.org/confluence/display/cplusplus/DCL54-CPP.+Overload+allocation+and+…
/external/clang/test/SemaObjC/
Dovl-check.m38 // Overload resolution should not emit a diagnostic about needing to add an
55 // Overload resolution should occur silently, select the CFTypeRef overload,
/external/llvm-project/clang/test/SemaObjC/
Dovl-check.m38 // Overload resolution should not emit a diagnostic about needing to add an
55 // Overload resolution should occur silently, select the CFTypeRef overload,
/external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/
Drx-operators.hpp62 template<class Tag, class... AN, class Overload = member_overload<rxu::decay_t<Tag>>>
64 decltype(Overload::member(std::forward<AN>(an)...)) { in observable_member()
65 return Overload::member(std::forward<AN>(an)...); in observable_member()
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.type.simple/
Dp5-cxx0x.cpp112 namespace Overload { namespace
/external/llvm-project/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.type.simple/
Dp5-cxx0x.cpp112 namespace Overload { namespace
/external/clang/include/clang/AST/
DBuiltinTypes.def195 // Overload should be the first placeholder type, or else change
197 PLACEHOLDER_TYPE(Overload, OverloadTy)
/external/clang/include/clang/Basic/
DDiagnosticOptions.def68 Ovl_All) /// Overload candidates to show.
/external/llvm-project/llvm/unittests/Support/DynamicLibrary/
DDynamicLibraryTest.cpp60 TEST(DynamicLibrary, Overload) { in TEST() argument
/external/llvm-project/clang/include/clang/AST/
DBuiltinTypes.def274 // Overload should be the first placeholder type, or else change
276 PLACEHOLDER_TYPE(Overload, OverloadTy)
/external/llvm-project/clang/include/clang/Basic/
DDiagnosticOptions.def71 Ovl_All) /// Overload candidates to show.
/external/clang/test/Index/
Dcomplete-objc-message.m85 @interface Overload interface
94 void test_overload(Overload *ovl) {
138 void test_overload3(Overload *ovl) {
/external/clang/lib/Serialization/
DASTCommon.cpp106 case BuiltinType::Overload: in TypeIdxFromBuiltin()
/external/clang/lib/Sema/
DSemaCast.cpp135 if (!isPlaceholder() || isPlaceholder(BuiltinType::Overload)) in checkNonOverloadPlaceholders()
843 if (ValueKind == VK_RValue && !isPlaceholder(BuiltinType::Overload)) in CheckReinterpretCast()
894 if (claimPlaceholder(BuiltinType::Overload)) { in CheckStaticCast()
908 !isPlaceholder(BuiltinType::Overload)) { in CheckStaticCast()
2188 if (claimPlaceholder(BuiltinType::Overload)) { in CheckCXXCStyleCast()
2209 !isPlaceholder(BuiltinType::Overload)) { in CheckCXXCStyleCast()
/external/llvm-project/clang/test/Index/
Dcomplete-objc-message.m85 @interface Overload interface
94 void test_overload(Overload *ovl) {
138 void test_overload3(Overload *ovl) {

1234