Home
last modified time | relevance | path

Searched refs:errorMsg (Results 1 – 22 of 22) sorted by relevance

/external/deqp/external/vulkancts/modules/vulkan/api/
DvktApiBufferViewCreateTests.cpp164 std::ostringstream errorMsg; in createTestBuffer() local
165errorMsg << "Requied memory size (" << memReqs.size << " bytes) smaller than the buffer's size (" … in createTestBuffer()
166 return tcu::TestStatus::fail(errorMsg.str()); in createTestBuffer()
255 std::ostringstream errorMsg; in createTestBuffer() local
256 errorMsg << "Nonexternal objects cannot require dedicated allocation."; in createTestBuffer()
257 return tcu::TestStatus::fail(errorMsg.str()); in createTestBuffer()
262 std::ostringstream errorMsg; in createTestBuffer() local
263errorMsg << "Requied memory size (" << memReqs.memoryRequirements.size << " bytes) smaller than th… in createTestBuffer()
264 return tcu::TestStatus::fail(errorMsg.str()); in createTestBuffer()
278 std::ostringstream errorMsg; in createTestBuffer() local
[all …]
DvktApiBufferTests.cpp383 std::ostringstream errorMsg; in bufferCreateAndAllocTest() local
384errorMsg << "Requied memory size (" << memReqs.size << " bytes) smaller than the buffer's size (" … in bufferCreateAndAllocTest()
385 return tcu::TestStatus::fail(errorMsg.str()); in bufferCreateAndAllocTest()
560 std::ostringstream errorMsg; in bufferCreateAndAllocTest() local
561 errorMsg << "Nonexternal objects cannot require dedicated allocation."; in bufferCreateAndAllocTest()
562 return tcu::TestStatus::fail(errorMsg.str()); in bufferCreateAndAllocTest()
602 std::ostringstream errorMsg; in bufferCreateAndAllocTest() local
603errorMsg << "Requied memory size (" << memReqs.memoryRequirements.size << " bytes) smaller than th… in bufferCreateAndAllocTest()
604 return tcu::TestStatus::fail(errorMsg.str()); in bufferCreateAndAllocTest()
/external/parameter-framework/upstream/test/test-fixed-point-parameter/
DMain.py141 (success, errorMsg) = self._pfwClient.set(self._paramPath, str(valueToSet))
183 (success, errorMsg) = pfw.set(self._paramPath, valuePreviouslyGotten)
220 (success, _, errorMsg) = self._instance.accessParameterValue(parameter, str(value), True)
221 return success, errorMsg
224 (success, value, errorMsg) = self._instance.accessParameterValue(parameter, "", False)
227 "parameter-framework answered:\n%s" % errorMsg)
/external/parameter-framework/upstream/skeleton-subsystem/test/
Dmain.cpp48 std::string errorMsg; in main() local
49 if (not instance.start(errorMsg)) { in main()
50 std::cout << "Failed to start: " << errorMsg << std::endl; in main()
/external/vulkan-validation-layers/loader/
Dvk_loader_platform.h307 static char errorMsg[164]; in loader_platform_open_library_error() local
308 snprintf(errorMsg, 163, "Failed to open dynamic library \"%s\"", libPath); in loader_platform_open_library_error()
309 return errorMsg; in loader_platform_open_library_error()
321 static char errorMsg[120]; in loader_platform_get_proc_address_error() local
322 snprintf(errorMsg, 119, "Failed to find function \"%s\" in dynamic library", in loader_platform_get_proc_address_error()
324 return errorMsg; in loader_platform_get_proc_address_error()
/external/compiler-rt/lib/sanitizer_common/scripts/
Dlitlint.py53 errorMsg = 'litlint: {}:{}:{}: error: {}.\n{}{}\n'
55 sys.stderr.write(errorMsg.format(p, i, col, msg, s, arrow))
/external/parameter-framework/upstream/xmlserializer/
DXmlDocSource.cpp244 string errorMsg = "libxml failed to read"; in mkXmlDoc() local
246 errorMsg += " \"" + source + "\""; in mkXmlDoc()
248 serializingContext.appendLineToError(errorMsg); in mkXmlDoc()
/external/javassist/src/main/javassist/util/
DHotSwapper.java210 private void errorMsg(Throwable e) { in startDaemon() method
229 errorMsg(e); in startDaemon()
236 errorMsg(e); in startDaemon()
/external/junit/src/main/java/org/junit/rules/
DTemporaryFolder.java116 …String errorMsg = "Folder name cannot consist of multiple path components separated by a file sepa… in validateFolderName() local
118 throw new IOException(errorMsg); in validateFolderName()
/external/swiftshader/third_party/PowerVR_SDK/Tools/OGLES2/
DPVRTPFXParserAPI.cpp495 CPVRTString* const errorMsg) in GetSemantics() argument
547 *errorMsg += "WARNING: Variable not used by GLSL code: "; in GetSemantics()
548 *errorMsg += CPVRTString(aParams[j].pszName) + " "; in GetSemantics()
549 *errorMsg += CPVRTString(aParams[j].pszValue) + "\n"; in GetSemantics()
558 *errorMsg += "WARNING: Semantic unknown to application: "; in GetSemantics()
559 *errorMsg += CPVRTString(aParams[j].pszValue) + "\n"; in GetSemantics()
/external/jsilver/src/com/google/streamhtmlparser/impl/
DGenericParser.java112 String errorMsg = in parse() local
118 throw new ParseException(this, errorMsg); in parse()
/external/parameter-framework/upstream/parameter/
DParameterMgr.h319 std::string &errorMsg);
336 bool fromFile, std::string &errorMsg);
351 std::string &errorMsg) const;
367 bool withSettings, bool toFile, std::string &errorMsg) const;
750 std::string &errorMsg);
789 const CElement &element, std::string &errorMsg) const;
DParameterMgr.cpp2539 string &errorMsg) in importDomainsXml() argument
2542 if (!checkTuningModeOn(errorMsg)) { in importDomainsXml()
2554 *pConfigurableDomains, "SystemClassName", errorMsg); in importDomainsXml()
2566 bool withSettings, bool fromFile, string &errorMsg) in importSingleDomainXml() argument
2568 if (!checkTuningModeOn(errorMsg)) { in importSingleDomainXml()
2580 if (!wrapLegacyXmlImport(xmlSource, fromFile, withSettings, *standaloneDomain, "", errorMsg)) { in importSingleDomainXml()
2584 if (!getConfigurableDomains()->addDomain(*standaloneDomain, overwrite, errorMsg)) { in importSingleDomainXml()
2595 string &errorMsg) in wrapLegacyXmlImport() argument
2597 CXmlDomainImportContext xmlDomainImportContext(errorMsg, withSettings, *getSystemClass()); in wrapLegacyXmlImport()
2637 string &errorMsg) const in exportDomainsXml()
[all …]
DParameterMgrFullConnector.cpp273 string &errorMsg) in importSingleDomainXml() argument
276 errorMsg); in importSingleDomainXml()
/external/skia/gm/
Dwindowrectangles.cpp281 SkString errorMsg; in fail() local
282 errorMsg.printf("Requires GPU with %i window rectangles", kNumWindows); in fail()
286 canvas->drawString(errorMsg, SkIntToScalar(kCoverRect.centerX()), in fail()
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
DISO8601Converter.java470 public int gatherInt(String errorMsg, int maxValue) throws XMPException in gatherInt() argument
500 throw new XMPException(errorMsg, XMPError.BADVALUE); in gatherInt()
/external/xmlrpcpp/src/
DXmlRpcServerConnection.cpp357 XmlRpcServerConnection::generateFaultResponse(std::string const& errorMsg, int errorCode) in generateFaultResponse() argument
367 faultStruct[FAULTSTRING] = errorMsg; in generateFaultResponse()
/external/parameter-framework/upstream/parameter/include/
DParameterMgrFullConnector.h200 bool fromFile, std::string &errorMsg);
/external/desugar/java/com/google/devtools/common/options/
DOptionsParser.java725 String errorMsg = "Unrecognized arguments: " + Joiner.on(' ').join(residue); in parseWithSourceFunction() local
726 throw new OptionsParsingException(errorMsg); in parseWithSourceFunction()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
DTransliteratorTest.java4038 String errorMsg; field in TransliteratorTest.NormTranslitTask
4047 errorMsg = null; in run()
4056 errorMsg = "in {" + in + "} / out {" + out + "} / expected {" + expected + "}"; in run()
4065 return errorMsg; in getErrorMessage()
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
DTransliteratorTest.java4037 String errorMsg; field in TransliteratorTest.NormTranslitTask
4046 errorMsg = null; in run()
4055 errorMsg = "in {" + in + "} / out {" + out + "} / expected {" + expected + "}"; in run()
4064 return errorMsg; in getErrorMessage()
/external/vulkan-validation-layers/layers/
Dcore_validation.cpp2350 … const VkRenderPassCreateInfo *secondaryRPCI, string &errorMsg) { in verify_renderpass_compatibility() argument
2355 errorMsg = errorStr.str(); in verify_renderpass_compatibility()
2370 errorMsg = errorStr.str(); in verify_renderpass_compatibility()
2378 errorMsg = errorStr.str(); in verify_renderpass_compatibility()
2389 errorMsg = errorStr.str(); in verify_renderpass_compatibility()
2402 errorMsg = errorStr.str(); in verify_renderpass_compatibility()
2414 string &errorMsg) { in verify_set_layout_compatibility() argument
2421 errorMsg = errorStr.str(); in verify_set_layout_compatibility()
2425 return pSet->IsCompatible(layout_node, &errorMsg); in verify_set_layout_compatibility()