Where could I see uninstallation directives for a plugin?

WordPress uses two methods to unistall plugin:

  1. uninstall.php file in plugin’s root folder. If file exists, it is executed and second method is not used.
  2. A function registered by plugin via register_uninstall_hook(). You should search it in plugin’s php files.