Home
last modified time | relevance | path

Searched refs:errorStr (Results 1 – 12 of 12) sorted by relevance

/external/ims/rcs/rcsservice/src/com/android/service/ims/presence/
DPresenceBase.java165 for (String errorStr : errorArray) { in isInConfigList()
166 if (errorStr != null && errorStr.startsWith(inErrorString)) { in isInConfigList()
167 String errorPhrase = errorStr.substring(inErrorString.length()); in isInConfigList()
/external/clang/lib/StaticAnalyzer/Checkers/
DObjCSelfInitChecker.cpp68 const char *errorStr) const;
145 const char *errorStr) const { in checkForInvalidSelf()
163 C.emitReport(llvm::make_unique<BugReport>(*BT, errorStr, N)); in checkForInvalidSelf()
/external/skqp/tools/bookmaker/
Dbookmaker.cpp781 string errorStr = "expect "; in findDefinitions() local
782 errorStr += fMC; in findDefinitions()
783 errorStr += fMC; in findDefinitions()
784 return this->reportError<bool>(errorStr.c_str()); in findDefinitions()
1253 void TextParser::reportError(const char* errorStr) const { in reportError()
1254 this->reportWarning(errorStr); in reportError()
1258 void TextParser::reportWarning(const char* errorStr) const { in reportWarning()
1278 SkDebugf("\n%s(%zd): error: %s\n", fileName.c_str(), err.fLineCount, errorStr); in reportWarning()
Dbookmaker.h392 void reportError(const char* errorStr) const;
393 void reportWarning(const char* errorStr) const;
395 template <typename T> T reportError(const char* errorStr) const { in reportError() argument
396 this->reportError(errorStr); in reportError()
882 template <typename T> T reportError(const char* errorStr) const { in reportError() argument
884 tp.reportError(errorStr); in reportError()
DmdOut.cpp397 string errorStr = MarkType::kReturn == def->fMarkType ? "return" : "param"; in checkParamReturnBody() local
398 errorStr += " description must start with lower case"; in checkParamReturnBody()
399 paramBody.reportError(errorStr.c_str()); in checkParamReturnBody()
/external/skia/tools/bookmaker/
Dbookmaker.cpp881 string errorStr = "expect "; in findDefinitions() local
882 errorStr += fMC; in findDefinitions()
883 errorStr += fMC; in findDefinitions()
884 return this->reportError<bool>(errorStr.c_str()); in findDefinitions()
1360 void TextParser::reportError(const char* errorStr) const { in reportError()
1361 this->reportWarning(errorStr); in reportError()
1365 void TextParser::reportWarning(const char* errorStr) const { in reportWarning()
1376 SkDebugf("\n%s(%zd): error: %s\n", fullName.c_str(), err.fLineCount, errorStr); in reportWarning()
Dbookmaker.h393 void reportError(const char* errorStr) const;
395 void reportWarning(const char* errorStr) const;
397 template <typename T> T reportError(const char* errorStr) const { in reportError() argument
398 this->reportError(errorStr); in reportError()
890 template <typename T> T reportError(const char* errorStr) const { in reportError() argument
892 tp.reportError(errorStr); in reportError()
DmdOut.cpp402 string errorStr = MarkType::kReturn == def->fMarkType ? "return" : "param"; in checkParamReturnBody() local
403 errorStr += " description must start with lower case"; in checkParamReturnBody()
404 paramBody.reportError(errorStr.c_str()); in checkParamReturnBody()
/external/deqp/external/openglcts/modules/common/
DglcShaderLibrary.cpp166 void parseError(const std::string& errorStr);
202 void ShaderParser::parseError(const std::string& errorStr) in parseError() argument
205 …throw tcu::InternalError((string("Parser error: ") + errorStr + " near '" + atStr + " ...'").c_str… in parseError()
/external/deqp/framework/opengl/
DgluShaderLibrary.cpp398 void parseError (const std::string& errorStr);
449 void ShaderParser::parseError (const std::string& errorStr) in parseError() argument
452 …throw tcu::InternalError((string("Parser error: ") + errorStr + " near '" + atStr + " ...'").c_str… in parseError()
/external/boringssl/src/ssl/test/runner/
Drunner.go981 func translateExpectedError(errorStr string) string {
982 if translated, ok := shimConfig.ErrorMap[errorStr]; ok {
990 return errorStr
/external/vulkan-validation-layers/layers/
Dcore_validation.cpp1135 stringstream errorStr; in verify_set_layout_compatibility() local
1136errorStr << "VkPipelineLayout (" << pipeline_layout->layout << ") only contains " << num_sets in verify_set_layout_compatibility()
1139 errorMsg = errorStr.str(); in verify_set_layout_compatibility()