静的関数のすべての定義を検索する

// FuncDeclarator [ isStatic() ] [ isDefinition() ]

1   //finds this function
2   static void f() {
3          /*code*/
4   }
5   
6   // and this one
7   static void h() {
8          /*code*/
9   }
10  
11  class C {
12        public:
13        // find this function as well
14        static void m() {
15                      /*code*/
16                        }
17  };