Home
last modified time | relevance | path

Searched refs:ErrorType (Results 1 – 25 of 25) sorted by relevance

/external/compiler-rt/lib/ubsan/
Dubsan_handlers.cc25 bool ignoreReport(SourceLocation SLoc, ReportOptions Opts, ErrorType ET) { in ignoreReport()
48 ErrorType ET; in handleTypeMismatchImpl()
50 ET = ErrorType::NullPointerUse; in handleTypeMismatchImpl()
52 ET = ErrorType::MisalignedPointerUse; in handleTypeMismatchImpl()
54 ET = ErrorType::InsufficientObjectSize; in handleTypeMismatchImpl()
70 case ErrorType::NullPointerUse: in handleTypeMismatchImpl()
74 case ErrorType::MisalignedPointerUse: in handleTypeMismatchImpl()
80 case ErrorType::InsufficientObjectSize: in handleTypeMismatchImpl()
112 ErrorType ET = IsSigned ? ErrorType::SignedIntegerOverflow in handleIntegerOverflowImpl()
113 : ErrorType::UnsignedIntegerOverflow; in handleIntegerOverflowImpl()
[all …]
Dubsan_handlers_cxx.cc47 ErrorType ET = ErrorType::DynamicTypeMismatch; in HandleDynamicTypeCacheMiss()
101 ErrorType ET = ErrorType::CFIBadType; in HandleCFIBadType()
Dubsan_diag.cc46 static const char *ConvertTypeToString(ErrorType Type) { in ConvertTypeToString()
49 case ErrorType::Name: \ in ConvertTypeToString()
57 static const char *ConvertTypeToFlagName(ErrorType Type) { in ConvertTypeToFlagName()
60 case ErrorType::Name: \ in ConvertTypeToFlagName()
68 static void MaybeReportErrorSummary(Location Loc, ErrorType Type) { in MaybeReportErrorSummary()
72 Type = ErrorType::GenericUB; in MaybeReportErrorSummary()
366 ErrorType Type) in ScopedReport()
404 bool __ubsan::IsPCSuppressed(ErrorType ET, uptr PC, const char *Filename) { in IsPCSuppressed()
Dubsan_diag.h222 enum class ErrorType { enum
228 bool ignoreReport(SourceLocation SLoc, ReportOptions Opts, ErrorType ET);
240 ErrorType Type;
243 ScopedReport(ReportOptions Opts, Location SummaryLoc, ErrorType Type);
251 bool IsPCSuppressed(ErrorType ET, uptr PC, const char *Filename);
/external/cldr/tools/java/org/unicode/cldr/test/
DConsoleCheckCLDR.java244 static Counter<ErrorType> subtotalCount = new Counter<ErrorType>(true); // new ErrorCount();
245 static Counter<ErrorType> totalCount = new Counter<ErrorType>(true);
793 for (ErrorType type : subtotalCount.keySet()) { in main()
828 for (ErrorType type : totalCount.keySet()) { in main()
837 long errorCount = totalCount.getCount(ErrorType.error) + fatalErrors.size(); in main()
928 … ErrorFile.addDataToErrorFile(locale, path, null, ErrorType.disputed, Subtype.none); in LocaleVotingData()
987 enum ErrorType { enum in ConsoleCheckCLDR
989 …static EnumSet<ErrorType> unapproved = EnumSet.range(ErrorType.contributed, ErrorType.unconfirmed);
990 static EnumSet<ErrorType> coverage = EnumSet.range(ErrorType.posix, ErrorType.optional);
991 static EnumSet<ErrorType> showInSummary = EnumSet.of(
[all …]
/external/libphonenumber/libphonenumber/src/com/google/i18n/phonenumbers/
DNumberParseException.java28 public enum ErrorType { enum in NumberParseException
56 private ErrorType errorType;
59 public NumberParseException(ErrorType errorType, String message) { in NumberParseException()
68 public ErrorType getErrorType() { in getErrorType()
DPhoneNumberUtil.java2780 throw new NumberParseException(NumberParseException.ErrorType.TOO_SHORT_AFTER_IDD,
2792 throw new NumberParseException(NumberParseException.ErrorType.INVALID_COUNTRY_CODE,
3143 throw new NumberParseException(NumberParseException.ErrorType.NOT_A_NUMBER,
3146 throw new NumberParseException(NumberParseException.ErrorType.TOO_LONG,
3155 throw new NumberParseException(NumberParseException.ErrorType.NOT_A_NUMBER,
3162 throw new NumberParseException(NumberParseException.ErrorType.INVALID_COUNTRY_CODE,
3189 if (e.getErrorType() == NumberParseException.ErrorType.INVALID_COUNTRY_CODE
3196 throw new NumberParseException(NumberParseException.ErrorType.INVALID_COUNTRY_CODE,
3221 throw new NumberParseException(NumberParseException.ErrorType.TOO_SHORT_NSN,
3243 throw new NumberParseException(NumberParseException.ErrorType.TOO_SHORT_NSN,
[all …]
/external/libphonenumber/repackaged/libphonenumber/src/com/android/i18n/phonenumbers/
DNumberParseException.java31 public enum ErrorType { enum in NumberParseException
59 private ErrorType errorType;
62 public NumberParseException(ErrorType errorType, String message) { in NumberParseException()
72 public ErrorType getErrorType() { in getErrorType()
DPhoneNumberUtil.java2824 throw new NumberParseException(NumberParseException.ErrorType.TOO_SHORT_AFTER_IDD,
2836 throw new NumberParseException(NumberParseException.ErrorType.INVALID_COUNTRY_CODE,
3188 throw new NumberParseException(NumberParseException.ErrorType.NOT_A_NUMBER,
3191 throw new NumberParseException(NumberParseException.ErrorType.TOO_LONG,
3200 throw new NumberParseException(NumberParseException.ErrorType.NOT_A_NUMBER,
3207 throw new NumberParseException(NumberParseException.ErrorType.INVALID_COUNTRY_CODE,
3234 if (e.getErrorType() == NumberParseException.ErrorType.INVALID_COUNTRY_CODE
3241 throw new NumberParseException(NumberParseException.ErrorType.INVALID_COUNTRY_CODE,
3266 throw new NumberParseException(NumberParseException.ErrorType.TOO_SHORT_NSN,
3288 throw new NumberParseException(NumberParseException.ErrorType.TOO_SHORT_NSN,
[all …]
/external/clang/include/clang/ASTMatchers/Dynamic/
DDiagnostics.h60 enum ErrorType { enum
140 ArgStream addError(SourceRange Range, ErrorType Error);
154 ErrorType Type;
/external/clang/tools/scan-build/libexec/
Dccc-analyzer149 my ($Clang, $Lang, $file, $Args, $HtmlDir, $ErrorType, $ofile) = @_;
154 if ($ErrorType eq $ParserRejects) {
157 elsif ($ErrorType eq $AttributeIgnored) {
160 elsif ($ErrorType eq $OtherError) {
174 print OUT "$ErrorType\n";
/external/v8/src/wasm/
Dwasm-result.h131 enum ErrorType { enum
145 void Format(ErrorType error_type_, const char* fmt, va_list);
149 ErrorType error_type_ = kNone;
Dwasm-result.cc66 void ErrorThrower::Format(ErrorType type, const char* format, va_list args) { in Format()
/external/javapoet/src/test/java/com/squareup/javapoet/
DAbstractTypesTest.java41 import javax.lang.model.type.ErrorType;
97 ErrorType topLevel = (ErrorType) fields.get(0).asType(); in errorTypes()
98 ErrorType member = (ErrorType) fields.get(1).asType(); in errorTypes()
/external/ImageMagick/Magick++/lib/
DException.cpp332 Magick::ErrorType::ErrorType(const std::string& what_) in ErrorType() function in Magick::ErrorType
337 Magick::ErrorType::ErrorType(const std::string& what_,Exception *nested_) in ErrorType() function in Magick::ErrorType
342 Magick::ErrorType::~ErrorType() throw() in ~ErrorType()
792 return new ErrorType(message); in createException()
975 throw ErrorType(message,nestedException); in throwException()
/external/autotest/client/site_tests/enterprise_SmbProviderDaemon/
Denterprise_SmbProviderDaemon.py401 from directory_entry_pb2 import ErrorType
411 method_name, result, ErrorType.Name(result), expected,
412 ErrorType.Name(expected)))
/external/libphonenumber/libphonenumber/test/com/google/i18n/phonenumbers/
DPhoneNumberUtilTest.java2009 NumberParseException.ErrorType.INVALID_COUNTRY_CODE, in testMaybeExtractCountryCode()
2174 NumberParseException.ErrorType.TOO_LONG, in testParseMaliciousInput()
2188 NumberParseException.ErrorType.TOO_LONG, in testParseMaliciousInput()
2304 NumberParseException.ErrorType.NOT_A_NUMBER, in testFailedParseOnInvalidNumbers()
2314 NumberParseException.ErrorType.NOT_A_NUMBER, in testFailedParseOnInvalidNumbers()
2324 NumberParseException.ErrorType.NOT_A_NUMBER, in testFailedParseOnInvalidNumbers()
2334 NumberParseException.ErrorType.NOT_A_NUMBER, in testFailedParseOnInvalidNumbers()
2344 NumberParseException.ErrorType.TOO_LONG, in testFailedParseOnInvalidNumbers()
2354 NumberParseException.ErrorType.NOT_A_NUMBER, in testFailedParseOnInvalidNumbers()
2364 NumberParseException.ErrorType.NOT_A_NUMBER, in testFailedParseOnInvalidNumbers()
[all …]
/external/ImageMagick/Magick++/lib/Magick++/
DException.h208 class MagickPPExport ErrorType: public Error
211 explicit ErrorType(const std::string& what_);
212 explicit ErrorType(const std::string& what_,Exception *nested_);
213 ~ErrorType() throw();
/external/deqp/modules/gles31/functional/
Des31fLayoutBindingTests.cpp672 enum ErrorType enum in deqp::gles31::Functional::__anon196ef6fa0111::LayoutBindingNegativeCase
686 ErrorType errorType,
706 const ErrorType m_errorType;
730 ErrorType errorType, in LayoutBindingNegativeCase()
1214 ErrorType errorType,
1230 ErrorType errorType, in SamplerBindingNegativeCase()
1538 ErrorType errorType,
1554 ErrorType errorType, in ImageBindingNegativeCase()
1812 ErrorType errorType);
1824 ErrorType errorType) in UBOBindingNegativeCase()
[all …]
/external/clang/lib/ASTMatchers/Dynamic/
DDiagnostics.cpp67 ErrorType Error) { in addError()
87 static StringRef errorTypeToFormatString(Diagnostics::ErrorType Type) { in errorTypeToFormatString()
/external/javapoet/src/main/java/com/squareup/javapoet/
DTypeName.java34 import javax.lang.model.type.ErrorType;
294 @Override public TypeName visitError(ErrorType t, Void p) { in get()
/external/cros/system_api/dbus/smbprovider/
Ddirectory_entry.proto11 // ErrorType matches 1:1 to FileSystemProvider#ProviderError in Chromium up
14 enum ErrorType { enum
/external/cros/system_api/dbus/authpolicy/
Dactive_directory_info.proto13 enum ErrorType { enum
/external/javapoet/
DCHANGELOG.md100 * Fix: Treat `ErrorType` like a regular `DeclaredType` in `TypeName.get()`. This should make it
/external/ImageMagick/Magick++/
DChangeLog130 ErrorType, and WarningType, exception classes to support the full