HomeSort by relevance Sort by last modified time
    Searched refs:Overload (Results 1 - 16 of 16) sorted by null

  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p10.cpp 14 static void Overload(int);
15 void Overload();
16 virtual X0& Overload(float);
20 (void)[&Overload] () {}; // expected-error {{does not name a variable}}
  /external/clang/test/SemaCXX/
lambda-expressions.cpp 9 static void Overload(int);
10 void Overload();
11 virtual C& Overload(float);
20 []{Overload(3);};
21 []{Overload();}; // expected-error {{'this' cannot be implicitly captured in this context}}
22 []{(void)typeid(Overload());};
23 []{(void)typeid(Overload(.5f));};// expected-error {{'this' cannot be implicitly captured in this context}}
  /external/clang/lib/Serialization/
ASTCommon.cpp 53 case BuiltinType::Overload: ID = PREDEF_TYPE_OVERLOAD_ID; break;
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.type.simple/
p5-cxx0x.cpp 100 namespace Overload {
  /external/clang/lib/AST/
NSAPI.cpp 303 case BuiltinType::Overload:
TypeLoc.cpp 157 // Overload resolution does the real work for us.
234 case BuiltinType::Overload:
Type.cpp     [all...]
ASTContext.cpp 457 InitBuiltinType(OverloadTy, BuiltinType::Overload);
    [all...]
  /external/clang/lib/Sema/
SemaCast.cpp 130 /// Check for and handle non-overload placeholder expressions.
132 if (!isPlaceholder() || isPlaceholder(BuiltinType::Overload))
348 case OR_Success: llvm_unreachable("successful failed overload");
687 if (ValueKind == VK_RValue && !isPlaceholder(BuiltinType::Overload))
735 if (claimPlaceholder(BuiltinType::Overload)) {
749 !isPlaceholder(BuiltinType::Overload)) {
    [all...]
SemaExpr.cpp     [all...]
SemaCodeComplete.cpp 15 #include "clang/Sema/Overload.h"
589 case BuiltinType::Overload:
    [all...]
SemaOverload.cpp 537 /// to the form used in overload-candidate information.
752 // We can't handle overloaded expressions here because overload
754 if (placeholder->getKind() == BuiltinType::Overload) return false;
790 // overload of the declarations in Old. This routine returns false if
812 // When we process #3, Old is an overload set containing #1 and #2. We
870 // We can overload with these, which can show up when doing
874 // We can always overload with tags by hiding them.
877 // overload; if it doesn't, we'll have to diagnose during
907 // Is the function New an overload of the function Old?
    [all...]
  /external/clang/tools/libclang/
CXType.cpp 55 BTCASE(Overload);
393 TKIND(Overload);
  /external/chromium/chrome/common/net/
url_fetcher_unittest.cc 177 // Version of URLFetcherTest that tests overload protection.
192 // Version of URLFetcherTest that tests overload protection, when responses
372 // Now running Overload test.
379 // it takes more than 1 second due to the overload protection settings.
571 TEST_F(URLFetcherProtectTest, Overload) {
  /external/clang/include/clang/AST/
Type.h     [all...]
ExprCXX.h     [all...]

Completed in 5580 milliseconds