| /freebsd-12.1/contrib/llvm/lib/Support/ |
| H A D | YAMLTraits.cpp | 140 setError(CurrentNode, "not a mapping"); in keys() 165 setError(CurrentNode, "not a mapping"); in preflightKey() 216 setError(CurrentNode, "not a sequence"); in beginSequence() 283 setError(CurrentNode, "unknown enumerated scalar"); in endEnumScalar() 338 setError(CurrentNode, "unexpected scalar"); in scalarString() 350 setError(hnode->_node, message); in setError() 363 void Input::setError(Node *node, const Twine &message) { in setError() function in Input 417 setError(N, "unknown node kind"); in createHNodes() 422 void Input::setError(const Twine &Message) { in setError() function in Input 423 setError(CurrentNode, Message); in setError() [all …]
|
| H A D | LockFileManager.cpp | 163 setError(EC, S); in LockFileManager() 182 setError(EC, S); in LockFileManager() 190 setError(EC, "failed to get host id"); in LockFileManager() 208 setError(Out.error(), S); in LockFileManager() 231 setError(EC, OSS.str()); in LockFileManager() 254 setError(EC, S); in LockFileManager()
|
| H A D | YAMLParser.cpp | 286 void setError(const Twine &Message) { in setError() function in llvm::yaml::Scanner 287 setError(Message, Current); in setError() 1390 setError("Got empty plain scalar", Start); in scanPlainScalar() 1424 setError("Got empty alias or anchor", Start); in scanAliasOrAnchor() 1518 setError( in findBlockScalarIndent() 1871 Doc->setError(Msg, Tok); in setError() 1946 setError("Unrecognized escape code!", T); in unescapeDoubleQuoted() 2098 setError("Unexpected token in Key Value.", t); in getValue() 2235 setError("Could not find closing ]!", T); in increment() 2242 setError("Expected , between entries!", T); in increment() [all …]
|
| /freebsd-12.1/contrib/llvm/tools/lld/ELF/ |
| H A D | ScriptParser.cpp | 186 setError("EOF expected, but got " + next()); in readDynamicList() 201 setError("EOF expected, but got " + next()); in readVersionScript() 267 setError("unknown directive: " + Tok); in readLinkerScript() 277 setError("EOF expected, but got " + next()); in readDefsym() 308 setError("unable to find " + S); in addFile() 358 setError("cannot find linker script " + Tok); in readInclude() 581 setError("unknown target: " + Tok); in readTarget() 645 setError("section pattern is expected"); in readInputSectionsList() 1055 setError("unknown constant: " + S); in readConstant() 1286 setError("malformed number: " + Tok); in readPrimary() [all …]
|
| H A D | ScriptLexer.cpp | 75 void ScriptLexer::setError(const Twine &Msg) { in setError() function in ScriptLexer 233 setError("unexpected EOF"); in next() 283 setError(Expect + " expected, but got " + Tok); in expect()
|
| H A D | ScriptLexer.h | 26 void setError(const Twine &Msg);
|
| /freebsd-12.1/sys/contrib/zstd/contrib/pzstd/ |
| H A D | ErrorHolder.h | 30 void setError(std::string message) noexcept { in setError() function 40 setError(std::move(message)); in check()
|
| H A D | Pzstd.cpp | 126 errorHolder.setError("Output file is a directory -- ignored"); in openInputFile() 150 state.errorHolder.setError("Output file exists"); in openOutputFile() 159 state.errorHolder.setError("Not overwritten"); in openOutputFile() 220 state.errorHolder.setError("Failed to remove input file"); in pzstdMain() 599 errorHolder.setError("Failed to write output"); in writeFile() 608 errorHolder.setError("Failed to write output"); in writeFile()
|
| /freebsd-12.1/contrib/llvm/lib/ObjectYAML/ |
| H A D | ObjectYAML.cpp | 56 IO.setError("YAML Object File missing document type tag!"); in mapping() 58 IO.setError( in mapping()
|
| /freebsd-12.1/contrib/llvm/include/llvm/IR/ |
| H A D | ModuleSummaryIndexYAML.h | 75 io.setError("key not an integer"); 120 io.setError("key not an integer"); 210 io.setError("key not an integer");
|
| /freebsd-12.1/contrib/llvm/include/llvm/Support/ |
| H A D | LockFileManager.h | 91 void setError(const std::error_code &EC, StringRef ErrorMsg = "") {
|
| H A D | YAMLParser.h | 168 void setError(const Twine &Message, Token &Location) const; 563 void setError(const Twine &Message, Token &Location) const;
|
| H A D | YAMLTraits.h | 1547 void setError(const Twine &message) override;
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/ |
| H A D | AtomicChange.h | 74 void setError(llvm::StringRef Error) { this->Error = Error; } in setError() function
|
| /freebsd-12.1/contrib/llvm/lib/TextAPI/ELF/ |
| H A D | TBEHandler.cpp | 134 IO.setError("Not a .tbe YAML file."); in mapping()
|
| /freebsd-12.1/contrib/llvm/lib/Linker/ |
| H A D | IRMover.cpp | 427 void setError(Error E) { in setError() function in __anon4b2a6b4d0211::IRLinker 566 setError(NewProto.takeError()); in materialize() 601 setError(linkGlobalValueBody(*New, *SGV)); in materialize()
|
| /freebsd-12.1/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/ |
| H A D | MachONormalizedFileYAML.cpp | 780 io.setError(stream.str()); in handledDocTag() 785 io.setError(Twine("file is wrong architecture. Expected (" in handledDocTag()
|
| /freebsd-12.1/sys/contrib/zstd/tests/ |
| H A D | zstreamtest.c | 1713 … size_t const setError = ZSTD_CCtx_setParametersUsingCCtxParams(zc, cctxParams); in fuzzerTests_newAPI() local 1714 … CHECK(!ZSTD_isError(setError), "ZSTD_CCtx_setParametersUsingCCtxParams should have failed"); in fuzzerTests_newAPI() 1716 … size_t const setError = ZSTD_CCtx_setParameter(zc, ZSTD_p_windowLog, cParams.windowLog-1); in fuzzerTests_newAPI() local 1717 … CHECK(!ZSTD_isError(setError), "ZSTD_CCtx_setParameter should have failed"); in fuzzerTests_newAPI()
|
| /freebsd-12.1/contrib/llvm/tools/lld/lib/ReaderWriter/YAML/ |
| H A D | ReaderWriterYAML.cpp | 190 _io.setError(Twine("no such atom name: ") + name); in lookup() 199 _io.setError(Twine("duplicate atom name: ") + name); in add()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Format/ |
| H A D | Format.cpp | 297 IO.setError(Twine("Unknown value for BasedOnStyle: ", BasedOnStyle)); in mapping()
|