HomeSort by relevance Sort by last modified time
    Searched full:overloaded (Results 51 - 75 of 1574) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/Target/
TargetIntrinsicInfo.h 39 /// The Tys and numTys parameters are for intrinsics with overloaded types
40 /// (e.g., those using iAny or fAny). For a declaration for an overloaded
42 /// and must provide exactly one type for each overloaded type in the
58 /// Returns true if the intrinsic can be overloaded.
62 /// and return it. The Tys and numTys are for intrinsics with overloaded
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/Target/
TargetIntrinsicInfo.h 39 /// The Tys and numTys parameters are for intrinsics with overloaded types
40 /// (e.g., those using iAny or fAny). For a declaration for an overloaded
42 /// and must provide exactly one type for each overloaded type in the
58 /// Returns true if the intrinsic can be overloaded.
62 /// and return it. The Tys and numTys are for intrinsics with overloaded
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/Target/
TargetIntrinsicInfo.h 39 /// The Tys and numTys parameters are for intrinsics with overloaded types
40 /// (e.g., those using iAny or fAny). For a declaration for an overloaded
42 /// and must provide exactly one type for each overloaded type in the
58 /// Returns true if the intrinsic can be overloaded.
62 /// and return it. The Tys and numTys are for intrinsics with overloaded
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/Target/
TargetIntrinsicInfo.h 39 /// The Tys and numTys parameters are for intrinsics with overloaded types
40 /// (e.g., those using iAny or fAny). For a declaration for an overloaded
42 /// and must provide exactly one type for each overloaded type in the
58 /// Returns true if the intrinsic can be overloaded.
62 /// and return it. The Tys and numTys are for intrinsics with overloaded
  /external/google-breakpad/src/testing/test/
gmock-generated-function-mockers_test.cc 238 // Tests mocking functions overloaded on the number of arguments.
249 // Tests mocking functions overloaded on the types of argument.
260 // Tests mocking functions overloaded on the const-ness of this object.
301 // Tests mocking functions overloaded on the const-ness of this object.
447 MOCK_METHOD0(Overloaded, void()); \
448 MOCK_CONST_METHOD1(Overloaded, int(int n)); \
449 MOCK_METHOD2(Overloaded, bool(bool f, int n))
463 EXPECT_CALL(mock, Overloaded());
464 EXPECT_CALL(mock, Overloaded(1)).WillOnce(Return(2));
465 EXPECT_CALL(mock, Overloaded(true, 1)).WillOnce(Return(true))
    [all...]
  /external/googletest/googlemock/test/
gmock-generated-function-mockers_test.cc 263 // Tests mocking functions overloaded on the number of arguments.
274 // Tests mocking functions overloaded on the types of argument.
285 // Tests mocking functions overloaded on the const-ness of this object.
337 // Tests mocking functions overloaded on the const-ness of this object.
508 MOCK_METHOD0(Overloaded, void()); \
509 MOCK_CONST_METHOD1(Overloaded, int(int n)); \
510 MOCK_METHOD2(Overloaded, bool(bool f, int n))
524 EXPECT_CALL(mock, Overloaded());
525 EXPECT_CALL(mock, Overloaded(1)).WillOnce(Return(2));
526 EXPECT_CALL(mock, Overloaded(true, 1)).WillOnce(Return(true))
    [all...]
  /external/v8/testing/gmock/test/
gmock-generated-function-mockers_test.cc 261 // Tests mocking functions overloaded on the number of arguments.
272 // Tests mocking functions overloaded on the types of argument.
283 // Tests mocking functions overloaded on the const-ness of this object.
335 // Tests mocking functions overloaded on the const-ness of this object.
506 MOCK_METHOD0(Overloaded, void()); \
507 MOCK_CONST_METHOD1(Overloaded, int(int n)); \
508 MOCK_METHOD2(Overloaded, bool(bool f, int n))
522 EXPECT_CALL(mock, Overloaded());
523 EXPECT_CALL(mock, Overloaded(1)).WillOnce(Return(2));
524 EXPECT_CALL(mock, Overloaded(true, 1)).WillOnce(Return(true))
    [all...]
  /external/clang/test/SemaCXX/
pass-object-size.cpp 26 int (*C)(void *) = &OvlFoo; //expected-error{{address of overloaded function 'OvlFoo' does not match required type 'int (void *)'}} expected-note@6{{candidate address cannot be taken because parameter 1 has pass_object_size attribute}} expected-note@7{{candidate function has different number of parameters (expected 1 but has 2)}}
27 int (*D)(void *) = OvlFoo; //expected-error{{address of overloaded function 'OvlFoo' does not match required type 'int (void *)'}} expected-note@6{{candidate address cannot be taken because parameter 1 has pass_object_size attribute}} expected-note@7{{candidate function has different number of parameters (expected 1 but has 2)}}
30 int (*F)(void *) = &Statics::OvlFoo; //expected-error{{address of overloaded function 'OvlFoo' does not match required type 'int (void *)'}} expected-note@11{{candidate address cannot be taken because parameter 1 has pass_object_size attribute}} expected-note@13{{candidate function has type mismatch at 1st parameter (expected 'void *' but has 'double *')}}
33 int (*H)(void *) = &Members::OvlFoo; //expected-error{{address of overloaded function 'OvlFoo' does not match required type 'int (void *)'}} expected-note@18{{candidate address cannot be taken because parameter 1 has pass_object_size attribute}} expected-note@19{{candidate function has different number of parameters (expected 1 but has 2)}}
41 A = &OvlFoo; //expected-error{{assigning to 'int (*)(void *)' from incompatible type '<overloaded function type>'}} expected-note@6{{candidate address cannot be taken because parameter 1 has pass_object_size attribute}} expected-note@7{{candidate function has different number of parameters (expected 1 but has 2)}}
42 A = OvlFoo; //expected-error{{assigning to 'int (*)(void *)' from incompatible type '<overloaded function type>'}} expected-note@6{{candidate address cannot be taken because parameter 1 has pass_object_size attribute}} expected-note@7{{candidate function has different number of parameters (expected 1 but has 2)}}
45 A = &Statics::OvlFoo; //expected-error{{assigning to 'int (*)(void *)' from incompatible type '<overloaded function type>'}} expected-note@11{{candidate address cannot be taken because parameter 1 has pass_object_size attribute}} expected-note@13{{candidate function has type mismatch at 1st parameter (expected 'void *' but has 'double *')}}
49 M = &Members::OvlFoo; //expected-error-re{{assigning to '{{.*}}' from incompatible type '<overloaded function type>'}} expected-note@18{{candidate address cannot be taken because parameter 1 has pass_object_size attribute}} expected-note@19{{candidate function has different number of parameters (expected 1 but has 2)}}
68 int (*A)(void *) = &Foo<void*>; //expected-error{{address of overloaded function 'Foo' does not match required type 'int (void *)'}} expected-note@56{{candidate address cannot be taken because parameter 1 has pass_object_size attribute}}
69 int (Bar<int>::*B)(void *) = &Bar<int>::Foo<double>; //expected-error{{address of overloaded function 'Foo' does not match required type}} expected-note@62{{candidate address cannot be taken (…)
    [all...]
enable_if.cpp 49 void overloaded(int);
50 void overloaded(long);
98 overloaded(x);
194 int (*p)(int) = ovlConflict; // expected-error{{address of overloaded function 'ovlConflict' is ambiguous}} expected-note@191{{candidate function}} expected-note@192{{candidate function}}
195 int (*p2)(int) = &ovlConflict; // expected-error{{address of overloaded function 'ovlConflict' is ambiguous}} expected-note@191{{candidate function}} expected-note@192{{candidate function}}
197 a = ovlConflict; // expected-error{{assigning to 'int (*)(int)' from incompatible type '<overloaded function type>'}} expected-note@191{{candidate function}} expected-note@192{{candidate function}}
198 a = &ovlConflict; // expected-error{{assigning to 'int (*)(int)' from incompatible type '<overloaded function type>'}} expected-note@191{{candidate function}} expected-note@192{{candidate function}}
216 int (*p)(int) = templatedBar<int>; // expected-error{{address of overloaded function 'templatedBar' does not match required type 'int (int)'}} expected-note@214{{candidate function made ineligible by enable_if}}
217 int (*p2)(int) = &templatedBar<int>; // expected-error{{address of overloaded function 'templatedBar' does not match required type 'int (int)'}} expected-note@214{{candidate function made ineligible by enable_if}}
219 a = templatedBar<int>; // expected-error{{assigning to 'int (*)(int)' from incompatible type '<overloaded function type>'}} expected-note@214{{candidate function made ineligible by enable_if}
    [all...]
warn-overloaded-virtual.cpp 9 void foo(float); // expected-warning {{hides overloaded virtual functions}}
21 virtual void foo(int); // expected-warning {{hides overloaded virtual functions}}
138 // expected-warning@-1{{hides overloaded virtual functions}}
builtin-ptrtomember-ambig.cpp 21 int i = c->*pmf; // expected-error {{use of overloaded operator '->*' is ambiguous}} \
builtin-ptrtomember-overload-1.cpp 43 int i = c1->*pmf; // expected-error {{use of overloaded operator '->*' is ambiguous}} \
cxx0x-initializer-scalars.cpp 77 one overloaded(int);
78 two overloaded(double);
80 static_assert(sizeof(overloaded({0})) == sizeof(one), "bad overload"); // expected-warning {{braces around scalar init}}
81 static_assert(sizeof(overloaded({0.0})) == sizeof(two), "bad overload"); // expected-warning {{braces around scalar init}}
cxx0x-noexcept-expression.cpp 7 bool b = noexcept(f); // expected-error {{reference to overloaded function could not be resolved; did you mean to call it with no arguments?}}
statements.cpp 30 // expected-error@+1{{overloaded function could not be resolved}}
  /external/clang/test/Index/
code-completion.cpp 27 float& overloaded(int i, long second);
28 double& overloaded(float f, int second);
29 int& overloaded(Z z, int second);
33 overloaded(Z(), 0);
61 // CHECK-OVERLOAD: OverloadCandidate:{ResultType int &}{Text overloaded}{LeftParen (}{Placeholder Z z}{Comma , }{CurrentParameter int second}{RightParen )}
62 // CHECK-OVERLOAD: OverloadCandidate:{ResultType float &}{Text overloaded}{LeftParen (}{Placeholder int i}{Comma , }{CurrentParameter long second}{RightParen )}
63 // CHECK-OVERLOAD: OverloadCandidate:{ResultType double &}{Text overloaded}{LeftParen (}{Placeholder float f}{Comma , }{CurrentParameter int second}{RightParen )}
  /external/clang/test/CXX/over/over.over/
p2-resolve-single-template-id.cpp 38 two; // expected-error{{reference to overloaded function could not be resolved; did you mean to call it with no arguments?}}
40 twoT<int>; // expected-error {{reference to overloaded function could not be resolved; did you mean to call it?}}
47 two; // expected-error{{reference to overloaded function could not be resolved; did you mean to call it with no arguments?}}
49 twoT<int>; // expected-error {{reference to overloaded function could not be resolved; did you mean to call it?}}
84 { static_cast<void>(two); } // expected-error {{address of overloaded function 'two' cannot be static_cast to type 'void'}}
85 { (void)(two); } // expected-error {{address of overloaded function 'two' cannot be cast to type 'void'}}
155 if (S::h<int>) return; // expected-error {{reference to overloaded function could not be resolved; did you mean to call it?}}
159 if (s.h<int>) return; // expected-error {{reference to overloaded function could not be resolved; did you mean to call it?}}
161 if (&s.h<int>) return; // expected-error {{reference to overloaded function could not be resolved; did you mean to call it?}}
  /external/valgrind/massif/tests/
overloaded-new.post.exp-mips32 2 Command: ./overloaded-new
45 ->33.24% (4,000B) 0x........: operator new(unsigned int) (overloaded-new.cpp:19)
46 | ->33.24% (4,000B) 0x........: main (overloaded-new.cpp:49)
48 ->33.24% (4,000B) 0x........: operator new(unsigned int, std::nothrow_t const&) (overloaded-new.cpp:24)
49 | ->33.24% (4,000B) 0x........: main (overloaded-new.cpp:50)
51 ->16.62% (2,000B) 0x........: operator new[](unsigned int) (overloaded-new.cpp:29)
52 | ->16.62% (2,000B) 0x........: main (overloaded-new.cpp:51)
54 ->16.62% (2,000B) 0x........: operator new[](unsigned int, std::nothrow_t const&) (overloaded-new.cpp:34)
55 ->16.62% (2,000B) 0x........: main (overloaded-new.cpp:52)
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.type.simple/
p4-cxx0x.cpp 27 decltype(f0) f0_a; // expected-error{{reference to overloaded function could not be resolved; did you mean to call it?}}
  /external/clang/test/CXX/expr/expr.unary/expr.unary.op/
p3.cpp 5 // Check that we don't attempt to use an overloaded operator& when
  /external/clang/test/SemaTemplate/
instantiate-subscript.cpp 19 Result &result = t[u]; // expected-error{{no viable overloaded operator[] for type}}
qualified-names-diag.cpp 20 v1 = v2; // expected-error{{no viable overloaded '='}}
  /external/swiftshader/third_party/LLVM/include/llvm/
Intrinsics.h 56 /// overloaded.
66 /// The Tys and numTys parameters are for intrinsics with overloaded types
68 /// overloaded intrinsic, Tys should point to an array of numTys pointers to
69 /// Type, and must provide exactly one type for each overloaded type in the
  /external/swiftshader/third_party/PowerVR_SDK/Tools/
PVRTHash.h 36 @brief Overloaded constructor
48 @brief Overloaded constructor
61 @brief Overloaded constructor
78 @brief Overloaded assignment.
  /external/clang/test/Sema/
enable_if.c 125 void (*p1)(void) = &f2; // expected-error{{initializing 'void (*)(void)' with an expression of incompatible type '<overloaded function type>'}} expected-note@121{{candidate function}} expected-note@122{{candidate function made ineligible by enable_if}} expected-note@123{{candidate function}}
126 void (*p2)(void) = f2; // expected-error{{initializing 'void (*)(void)' with an expression of incompatible type '<overloaded function type>'}} expected-note@121{{candidate function}} expected-note@122{{candidate function made ineligible by enable_if}} expected-note@123{{candidate function}}
127 void *p3 = (void*)&f2; // expected-error{{address of overloaded function 'f2' is ambiguous}} expected-note@121{{candidate function}} expected-note@122{{candidate function made ineligible by enable_if}} expected-note@123{{candidate function}}
128 void *p4 = (void*)f2; // expected-error{{address of overloaded function 'f2' is ambiguous}} expected-note@121{{candidate function}} expected-note@122{{candidate function made ineligible by enable_if}} expected-note@123{{candidate function}}
134 void (*p1)(int) = &f3; // expected-error{{initializing 'void (*)(int)' with an expression of incompatible type '<overloaded function type>'}} expected-note@131{{candidate function made ineligible by enable_if}} expected-note@132{{candidate function made ineligible by enable_if}}
135 void (*p2)(int) = f3; // expected-error{{initializing 'void (*)(int)' with an expression of incompatible type '<overloaded function type>'}} expected-note@131{{candidate function made ineligible by enable_if}} expected-note@132{{candidate function made ineligible by enable_if}}
136 void *p3 = (void*)&f3; // expected-error{{address of overloaded function 'f3' does not match required type 'void'}} expected-note@131{{candidate function made ineligible by enable_if}} expected-note@132{{candidate function made ineligible by enable_if}}
137 void *p4 = (void*)f3; // expected-error{{address of overloaded function 'f3' does not match required type 'void'}} expected-note@131{{candidate function made ineligible by enable_if}} expected-note@132{{candidate function made ineligible by enable_if}}

Completed in 658 milliseconds

1 23 4 5 6 7 8 91011>>