Lines Matching defs:overloaded_method
18 int overloaded_method() {}
19 int overloaded_method(char c) {}
20 int overloaded_method(char c, int i, ...) {}
29 s.overloaded_method();
30 s.overloaded_method('a');
31 s.overloaded_method('a', 1);
40 // AST: | |-CXXMethodDecl {{.*}} overloaded_method 'int (){{.*}}'
41 // AST: | |-CXXMethodDecl {{.*}} overloaded_method 'int (char){{.*}}'
43 // AST: | `-CXXMethodDecl {{.*}} overloaded_method 'int (char, int, ...)'
51 // SYMBOL-NEXT: int overloaded_method();
52 // SYMBOL-NEXT: int overloaded_method(char);
53 // SYMBOL-NEXT: int overloaded_method(char, int, ...);