Home | History | Annotate | Download | only in skpdiff

Lines Matching refs:id

51      * @return          An non-negative diff ID on success, a negative integer on failure.
56 * Gets whether a queued diff of the given id has finished
57 * @param id The id of the queued diff to query
60 virtual bool isFinished(int id) = 0;
65 * @param id The id of the diff to query
67 virtual void deleteDiff(int id) = 0;
70 * Gets the results of the queued diff of the given id. The results are only meaningful after
72 * @param id The id of the queued diff to query
74 virtual double getResult(int id) = 0;
77 * Gets the number of points of interest for the diff of the given id. The results are only
79 * @param id The id of the queued diff to query
81 virtual int getPointsOfInterestCount(int id) = 0;
84 * Gets an array of the points of interest for the diff of the given id. The results are only
86 * @param id The id of the queued diff to query
88 virtual SkIPoint* getPointsOfInterest(int id) = 0;