Lines Matching refs:api
25 $ git blame api/current.txt -t -e > /tmp/currentblame.txt
168 api = {}
193 api[clazz.fullname] = clazz
205 return api
1002 def examine_api(api):
1006 for key in sorted(api.keys()):
1007 examine_clazz(api[key])
1015 def class_exists(api, test):
1016 return test.fullname in api
1018 def ctor_exists(api, clazz, test):
1023 def all_methods(api, clazz):
1026 methods.extend(all_methods(api, api[clazz.extends]))
1029 def method_exists(api, clazz, test):
1030 methods = all_methods(api, clazz)
1035 def field_exists(api, clazz, test):