Searched refs:overloaded_method (Results 1 – 2 of 2) sorted by relevance
18 int overloaded_method() {} in overloaded_method() function 19 int overloaded_method(char c) {} in overloaded_method() function 20 int overloaded_method(char c, int i, ...) {} in overloaded_method() function 29 s.overloaded_method(); in main() 30 s.overloaded_method('a'); in main() 31 s.overloaded_method('a', 1); in main() 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();[all...]
41 int overloaded_method() { in overloaded_method() function42 return 4 + overloaded_method('a') + overloaded_method('a', 1); in overloaded_method()45 virtual int overloaded_method(char c) { in overloaded_method() function49 static int overloaded_method(char c, int i, ...) { in overloaded_method() function66 Struct::static_method() + s.virtual_method() + s.overloaded_method(); in main()