Home
last modified time | relevance | path

Searched refs:overloaded_method (Results 1 – 2 of 2) sorted by relevance

/llvm-project/lldb/test/Shell/SymbolFile/NativePDB/
H A Dast-methods.cpp18 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...]
H A Dfind-functions.cpp41 int overloaded_method() { in overloaded_method() function
42 return 4 + overloaded_method('a') + overloaded_method('a', 1); in overloaded_method()
45 virtual int overloaded_method(char c) { in overloaded_method() function
49 static int overloaded_method(char c, int i, ...) { in overloaded_method() function
66 Struct::static_method() + s.virtual_method() + s.overloaded_method(); in main()