OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ErrorCombination
(Results
1 - 2
of
2
) sorted by null
/external/skia/gm/
gm_error.h
82
class
ErrorCombination
{
84
ErrorCombination
() : fBitfield(0) {}
85
ErrorCombination
(const ErrorType type) : fBitfield(1 << type) {}
95
* Adds this ErrorType to this
ErrorCombination
.
102
* Adds all ErrorTypes in "other" to this
ErrorCombination
.
104
void add(const
ErrorCombination
other) {
109
* Returns true iff this
ErrorCombination
includes this ErrorType.
117
*
ErrorCombination
.
136
* Returns a new
ErrorCombination
, which includes the union of all
137
* ErrorTypes in two
ErrorCombination
objects (this and other)
[
all
...]
gmmain.cpp
193
const static
ErrorCombination
kDefaultIgnorableErrorTypes =
ErrorCombination
()
290
static
ErrorCombination
write_bitmap(const SkString& path, const SkBitmap& bitmap) {
300
return
ErrorCombination
(kWritingReferenceImage_ErrorType);
344
void RecordTestResults(const
ErrorCombination
&
errorCombination
,
347
// Things to do regardless of
errorCombination
.
354
if (
errorCombination
.isEmpty()) {
363
if (
errorCombination
.includes(type)) {
435
static
ErrorCombination
write_document(const SkString& path, SkStreamAsset* asset)
[
all
...]
Completed in 261 milliseconds