Home | History | Annotate | Download | only in gm

Lines Matching refs:ErrorType

22     enum ErrorType {
39 * Returns the name of the given ErrorType.
41 static const char *getErrorTypeName(ErrorType type) {
64 * Fills in "type" with the ErrorType associated with name "name".
67 static bool getErrorTypeByName(const char name[], ErrorType *type) {
69 ErrorType thisType = static_cast<ErrorType>(typeInt);
85 ErrorCombination(const ErrorType type) : fBitfield(1 << type) {}
95 * Adds this ErrorType to this ErrorCombination.
97 void add(const ErrorType type) {
109 * Returns true iff this ErrorCombination includes this ErrorType.
111 bool includes(const ErrorType type) const {
119 * @param separator text with which to separate ErrorType names
124 ErrorType type = static_cast<ErrorType>(typeInt);