Home
last modified time | relevance | path

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

12

/third_party/libphonenumber/java/libphonenumber/src/com/google/i18n/phonenumbers/
DNumberParseException.java57 private ErrorType errorType; field in NumberParseException
60 public NumberParseException(ErrorType errorType, String message) { in NumberParseException() argument
63 this.errorType = errorType; in NumberParseException()
70 return errorType; in getErrorType()
75 return "Error type: " + errorType + ". " + message; in toString()
/third_party/skia/third_party/externals/dawn/src/dawn_wire/client/
DClientDoers.cpp24 WGPUErrorType errorType, in DoDeviceUncapturedErrorCallback() argument
26 switch (errorType) { in DoDeviceUncapturedErrorCallback()
40 device->HandleError(errorType, message); in DoDeviceUncapturedErrorCallback()
68 WGPUErrorType errorType, in DoDevicePopErrorScopeCallback() argument
74 return device->OnPopErrorScopeCallback(requestSerial, errorType, message); in DoDevicePopErrorScopeCallback()
DDevice.cpp70 void Device::HandleError(WGPUErrorType errorType, const char* message) { in HandleError() argument
72 mErrorCallback(errorType, message, mErrorUserdata); in HandleError()
DDevice.h54 void HandleError(WGPUErrorType errorType, const char* message);
/third_party/skia/third_party/externals/dawn/src/dawn_native/
DErrorInjector.h34 InjectedErrorResult<ErrorType> MaybeInjectError(ErrorType errorType) { in MaybeInjectError() argument
35 return InjectedErrorResult<ErrorType>{errorType, ShouldInjectError()}; in MaybeInjectError()
39 InjectedErrorResult<ErrorType> MaybeInjectError(ErrorType errorType, ErrorTypes... errorTypes) { in MaybeInjectError() argument
41 return InjectedErrorResult<ErrorType>{errorType, true}; in MaybeInjectError()
/third_party/skia/third_party/externals/icu/source/i18n/
Duspoof_build.cpp53 int32_t *errorType, UParseError *pe, UErrorCode *status) { in uspoof_openFromSource() argument
62 if (errorType!=NULL) { in uspoof_openFromSource()
63 *errorType = 0; in uspoof_openFromSource()
98 …ConfusabledataBuilder::buildConfusableData(This, confusables, confusablesLen, errorType, pe, *stat… in uspoof_openFromSource()
Duspoof_conf.cpp214 int32_t confusablesLen, int32_t *errorType, UParseError *pe, UErrorCode &status) { in buildConfusableData() argument
221 if (U_FAILURE(status) && errorType != NULL) { in buildConfusableData()
222 *errorType = USPOOF_SINGLE_SCRIPT_CONFUSABLE; in buildConfusableData()
Duspoof_conf.h128 int32_t confusablesLen, int32_t *errorType, UParseError *pe, UErrorCode &status);
/third_party/icu/icu4c/source/i18n/
Duspoof_build.cpp53 int32_t *errorType, UParseError *pe, UErrorCode *status) { in uspoof_openFromSource() argument
62 if (errorType!=NULL) { in uspoof_openFromSource()
63 *errorType = 0; in uspoof_openFromSource()
98 …ConfusabledataBuilder::buildConfusableData(This, confusables, confusablesLen, errorType, pe, *stat… in uspoof_openFromSource()
Duspoof_conf.cpp213 int32_t confusablesLen, int32_t *errorType, UParseError *pe, UErrorCode &status) { in buildConfusableData() argument
220 if (U_FAILURE(status) && errorType != NULL) { in buildConfusableData()
221 *errorType = USPOOF_SINGLE_SCRIPT_CONFUSABLE; in buildConfusableData()
Duspoof_conf.h129 int32_t confusablesLen, int32_t *errorType, UParseError *pe, UErrorCode &status);
/third_party/node/deps/icu-small/source/i18n/
Duspoof_build.cpp53 int32_t *errorType, UParseError *pe, UErrorCode *status) { in uspoof_openFromSource() argument
62 if (errorType!=nullptr) { in uspoof_openFromSource()
63 *errorType = 0; in uspoof_openFromSource()
98 …ConfusabledataBuilder::buildConfusableData(This, confusables, confusablesLen, errorType, pe, *stat… in uspoof_openFromSource()
Duspoof_conf.cpp213 int32_t confusablesLen, int32_t *errorType, UParseError *pe, UErrorCode &status) { in buildConfusableData() argument
220 if (U_FAILURE(status) && errorType != nullptr) { in buildConfusableData()
221 *errorType = USPOOF_SINGLE_SCRIPT_CONFUSABLE; in buildConfusableData()
Duspoof_conf.h129 int32_t confusablesLen, int32_t *errorType, UParseError *pe, UErrorCode &status);
/third_party/vk-gl-cts/modules/gles31/functional/
Des31fLayoutBindingTests.cpp698 ErrorType errorType,
742 ErrorType errorType, in LayoutBindingNegativeCase() argument
754 , m_errorType (errorType) in LayoutBindingNegativeCase()
1227 ErrorType errorType,
1243 ErrorType errorType, in SamplerBindingNegativeCase() argument
1250 errorType, in SamplerBindingNegativeCase()
1551 ErrorType errorType,
1567 ErrorType errorType, in ImageBindingNegativeCase() argument
1574 errorType, in ImageBindingNegativeCase()
1825 ErrorType errorType);
[all …]
Des31fProgramStateQueryTests.cpp641 ProgramLogCase (Context& ctx, const char* name, const char* desc, BuildErrorType errorType);
651 …ogCase::ProgramLogCase (Context& ctx, const char* name, const char* desc, BuildErrorType errorType) in ProgramLogCase() argument
653 , m_buildErrorType (errorType) in ProgramLogCase()
/third_party/node/test/parallel/
Dtest-http2-client-settings-before-connect.js41 ].forEach(([name, value, errorType]) =>
46 name: errorType.name
/third_party/vk-gl-cts/external/amber/src/samples/
Dconfig_helper_dawn.cc27 void PrintDeviceError(DawnErrorType errorType, const char* message, void*) { in PrintDeviceError() argument
28 switch (errorType) { in PrintDeviceError()
/third_party/lzma/C/
D7zStream.c77 SRes LookInStream_Read2(ILookInStreamPtr stream, void *buf, size_t size, SRes errorType) in LookInStream_Read2() argument
84 return errorType; in LookInStream_Read2()
/third_party/skia/third_party/externals/dawn/examples/
DSampleUtils.cpp35 void PrintDeviceError(WGPUErrorType errorType, const char* message, void*) { in PrintDeviceError() argument
37 switch (errorType) { in PrintDeviceError()
DManualSwapChainTest.cpp290 [](WGPUErrorType errorType, const char* message, void*) { in main() argument
292 switch (errorType) { in main()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/
DHLSLCompiler.cpp278 for (const char *errorType : kLoopRelatedErrors) in compileToBinary() local
280 if (message.find(errorType) != std::string::npos) in compileToBinary()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/rbbi/
DRBBITestMonkey.java2131 String errorType = null; in RunMonkey() local
2134 errorType = "next()"; in RunMonkey()
2137 errorType = "previous()"; in RunMonkey()
2140 errorType = "isBoundary()"; in RunMonkey()
2143 errorType = "following()"; in RunMonkey()
2146 errorType = "preceding()"; in RunMonkey()
2150 if (errorType != null) { in RunMonkey()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/
DRBBITestMonkey.java2138 String errorType = null; in RunMonkey() local
2141 errorType = "next()"; in RunMonkey()
2144 errorType = "previous()"; in RunMonkey()
2147 errorType = "isBoundary()"; in RunMonkey()
2150 errorType = "following()"; in RunMonkey()
2153 errorType = "preceding()"; in RunMonkey()
2157 if (errorType != null) { in RunMonkey()
/third_party/typescript/src/compiler/
Dchecker.ts436 return location ? getTypeOfSymbolAtLocation(symbol, location) : errorType;
468 return node ? getTypeFromTypeNode(node) : errorType;
515 return node ? getTypeOfNode(node) : errorType;
519 return node ? tryGetTypeOfNodeWithoutCheck(node) : errorType;
523 return node && getTypeOfAssignmentPattern(node) || errorType;
824 const errorType = createIntrinsicType(TypeFlags.Any, "error");
919 …ignature = createSignature(undefined, undefined, undefined, emptyArray, errorType, /*resolvedTypeP…
8983 return type === errorType || !!(type.flags & TypeFlags.Any && type.aliasSymbol);
9036 return errorType;
9150 return errorType;
[all …]

12