/** * test_parameter_missing_colon: * @param1: (allow-none) first parameter * * Forgotten colon above will result in a warning. **/ test_parameter_missing_colon param1 allow-none first parameter Forgotten colon above will result in a warning. 3: Warning: Test: missing ":" at column 25: * @param1: (allow-none) first parameter ^ /** * test_parameter_missing_colon: * @param1: (allow-none): first parameter * * Forgotten colon above will result in a warning. */ /** * test_unexpected_parameter: * * Parameters should go before the comment block description. * * @param1: first parameter * Returns: something **/ test_unexpected_parameter param1 first parameter Parameters should go before the comment block description. returns something 6: Warning: Test: "@param1" parameter unexpected at this location: * @param1: first parameter ^ 7: Warning: Test: "Returns:" tag unexpected at this location: * Returns: something ^ /** * test_unexpected_parameter: * @param1: first parameter * * Parameters should go before the comment block description. * * Returns: something */ /** * test_multiple_parameters: * @param1: first parameter * @param1: first parameter again **/ test_multiple_parameters param1 first parameter again 4: Error: Test: multiple "@param1" parameters for identifier "test_multiple_parameters": * @param1: first parameter again ^ /** * test_multiple_parameters: * @param1: first parameter again */ /** * test_multiline_annotations_on_parameter: * @param1: (allow-none) * (transfer full): first parameter * * Annotations spanning multiple lines are not valid **/ test_multiline_annotations_on_parameter param1 allow-none (transfer full): first parameter Annotations spanning multiple lines are not valid 4: Error: Test: ignoring invalid multiline annotation continuation: * (transfer full): first parameter ^ /** * test_multiline_annotations_on_parameter: * @param1: (allow-none): * (transfer full): first parameter * * Annotations spanning multiple lines are not valid */ /** * test_multiline_annotations_on_parameter: * @param1: (allow-none): first parameter having a second line which looks * (like an annotation), but isn't. This should not result in a warning. * * Annotations spanning multiple lines are not valid **/ test_multiline_annotations_on_parameter param1 allow-none first parameter having a second line which looks (like an annotation), but isn't. This should not result in a warning. Annotations spanning multiple lines are not valid /** * test_multiline_annotations_on_parameter: * @param1: (allow-none): first parameter having a second line which looks * (like an annotation), but isn't. This should not result in a warning. * * Annotations spanning multiple lines are not valid */ /** * anjuta_async_notify_get_error: * * @self: An #AnjutaAsyncNotify object * @error: Return location for the error set by the called interface to which * this object was passed. If no error is set, @error is set to NULL. * * Gets the error set on @self. */ anjuta_async_notify_get_error self An #AnjutaAsyncNotify object error Return location for the error set by the called interface to which this object was passed. If no error is set, @error is set to NULL. Gets the error set on @self. 4: Warning: Test: "@self" parameter unexpected at this location: * @self: An #AnjutaAsyncNotify object ^ /** * anjuta_async_notify_get_error: * @self: An #AnjutaAsyncNotify object * @error: Return location for the error set by the called interface to which * this object was passed. If no error is set, @error is set to NULL. * * Gets the error set on @self. */ /** * GtkPrintOperation::done * @operation: the #GtkPrintOperation on which the signal was emitted * @result: the result of the print operation * * Emitted when the print operation run has finished doing * everything required for printing. * * @result gives you information about what happened during the run. * If @result is %GTK_PRINT_OPERATION_RESULT_ERROR then you can call * gtk_print_operation_get_error() for more information. * * If you enabled print status tracking then * gtk_print_operation_is_finished() may still return %FALSE * after #GtkPrintOperation::done was emitted. * * Since: 2.10 */ GtkPrintOperation::done operation the #GtkPrintOperation on which the signal was emitted result the result of the print operation Emitted when the print operation run has finished doing everything required for printing. @result gives you information about what happened during the run. If @result is %GTK_PRINT_OPERATION_RESULT_ERROR then you can call gtk_print_operation_get_error() for more information. If you enabled print status tracking then gtk_print_operation_is_finished() may still return %FALSE after #GtkPrintOperation::done was emitted. since 2.10 /** * GtkPrintOperation::done: * @operation: the #GtkPrintOperation on which the signal was emitted * @result: the result of the print operation * * Emitted when the print operation run has finished doing * everything required for printing. * * @result gives you information about what happened during the run. * If @result is %GTK_PRINT_OPERATION_RESULT_ERROR then you can call * gtk_print_operation_get_error() for more information. * * If you enabled print status tracking then * gtk_print_operation_is_finished() may still return %FALSE * after #GtkPrintOperation::done was emitted. * * Since: 2.10 */ /** * TrackerDirectoryFlags: * @TRACKER_DIRECTORY_FLAG_NONE: No flags. * @TRACKER_DIRECTORY_FLAG_RECURSE: Should recurse in the directory. * @TRACKER_DIRECTORY_FLAG_CHECK_MTIME: Should check mtimes of items in the directory. * @TRACKER_DIRECTORY_FLAG_MONITOR: Should setup monitors in the items found in the directory. * @TRACKER_DIRECTORY_FLAG_IGNORE: Should ignore the directory contents. * @TRACKER_DIRECTORY_FLAG_PRESERVE: Should preserve items in the directory even if the directory gets removed. * * Flags used when adding a new directory to be indexed in the #TrackerIndexingTree. */ TrackerDirectoryFlags TRACKER_DIRECTORY_FLAG_NONE No flags. TRACKER_DIRECTORY_FLAG_RECURSE Should recurse in the directory. TRACKER_DIRECTORY_FLAG_CHECK_MTIME Should check mtimes of items in the directory. TRACKER_DIRECTORY_FLAG_MONITOR Should setup monitors in the items found in the directory. TRACKER_DIRECTORY_FLAG_IGNORE Should ignore the directory contents. TRACKER_DIRECTORY_FLAG_PRESERVE Should preserve items in the directory even if the directory gets removed. Flags used when adding a new directory to be indexed in the #TrackerIndexingTree. /** * TrackerDirectoryFlags: * @TRACKER_DIRECTORY_FLAG_NONE: No flags. * @TRACKER_DIRECTORY_FLAG_RECURSE: Should recurse in the directory. * @TRACKER_DIRECTORY_FLAG_CHECK_MTIME: Should check mtimes of items in the directory. * @TRACKER_DIRECTORY_FLAG_MONITOR: Should setup monitors in the items found in the directory. * @TRACKER_DIRECTORY_FLAG_IGNORE: Should ignore the directory contents. * @TRACKER_DIRECTORY_FLAG_PRESERVE: Should preserve items in the directory even if the directory gets removed. * * Flags used when adding a new directory to be indexed in the #TrackerIndexingTree. */