OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Error
(Results
1 - 25
of
170
) sorted by relevancy
1
2
3
4
5
6
7
/src/external/apache2/llvm/dist/llvm/bindings/ocaml/bitreader/
llvm_bitreader.ml
9
exception
Error
of string
11
let () = Callback.register_exception "Llvm_bitreader.
Error
" (
Error
"")
llvm_bitreader.mli
14
exception
Error
of string
18
raises [
Error
msg] otherwise, where [msg] is a description of the
error
24
raises [
Error
msg] otherwise, where [msg] is a description of the
error
/src/external/apache2/llvm/dist/llvm/bindings/ocaml/irreader/
llvm_irreader.ml
10
exception
Error
of string
12
let _ = Callback.register_exception "Llvm_irreader.
Error
" (
Error
"")
llvm_irreader.mli
14
exception
Error
of string
18
raises [
Error
msg] otherwise, where [msg] is a description of the
error
/src/external/apache2/llvm/dist/llvm/bindings/ocaml/linker/
llvm_linker.ml
9
exception
Error
of string
11
let () = Callback.register_exception "Llvm_linker.
Error
" (
Error
"")
llvm_linker.mli
14
exception
Error
of string
16
(** [link_modules' dst src] links [src] into [dst], raising [
Error
]
/src/external/apache2/llvm/dist/llvm/bindings/ocaml/target/
llvm_target.ml
47
exception
Error
of string
49
let () = Callback.register_exception "Llvm_target.
Error
" (
Error
"")
llvm_target.mli
54
exception
Error
of string
153
[
Error
] if [triple] does not correspond to a registered target. *)
212
file or raise [
Error
]. *)
216
buffer or raise [
Error
]. *)
/src/external/apache2/llvm/dist/llvm/lib/Passes/
PassPlugin.cpp
17
std::string
Error
;
19
sys::DynamicLibrary::getPermanentLibrary(Filename.c_str(), &
Error
);
22
Filename + "': " +
Error
,
31
//
error
/src/external/apache2/llvm/dist/clang/tools/apinotes-test/
APINotesTest.cpp
30
auto
Error
= [](const llvm::Twine &Msg) {
31
llvm::WithColor::
error
(llvm::errs(), "apinotes-test") << Msg << '\n';
38
Error
("failed to open '" + OutputFileName + "': " + EC.message());
/src/external/apache2/llvm/dist/llvm/lib/Support/
PluginLoader.cpp
27
std::string
Error
;
28
if (sys::DynamicLibrary::LoadLibraryPermanently(Filename.c_str(), &
Error
)) {
29
errs() << "
Error
opening '" << Filename << "': " <<
Error
Chrono.cpp
35
int
Error
= ::localtime_s(&Storage, &OurTime);
36
assert(!
Error
);
37
(void)
Error
;
/src/external/bsd/libevent/dist/sample/
openssl_hostname_validation.h
43
Error
55
* Returns
Error
if there was an
error
.
/src/external/apache2/llvm/dist/clang/lib/Basic/
SanitizerSpecialCaseList.cpp
20
std::string &
Error
) {
23
if (SSCL->createInternal(Paths, VFS,
Error
)) {
33
std::string
Error
;
34
if (auto SSCL = create(Paths, VFS,
Error
))
36
llvm::report_fatal_error(
Error
);
ProfileList.cpp
29
std::string &
Error
);
48
std::string &
Error
) {
50
if (PSCL->createInternal(Paths, VFS,
Error
))
58
std::string
Error
;
59
if (auto PSCL = create(Paths, VFS,
Error
))
61
llvm::report_fatal_error(
Error
);
/src/external/apache2/llvm/dist/llvm/bindings/ocaml/executionengine/
llvm_executionengine.ml
9
exception
Error
of string
11
let () = Callback.register_exception "Llvm_executionengine.
Error
" (
Error
"")
60
raise (
Error
("Value " ^ name ^ " not found"))
67
raise (
Error
("Function " ^ name ^ " not found"))
/src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/
TargetSelect.cpp
68
std::string
Error
;
69
TheTarget = TargetRegistry::lookupTarget(TheTriple.getTriple(),
Error
);
72
*ErrorStr =
Error
;
/src/external/apache2/llvm/dist/llvm/tools/llvm-mca/
llvm-mca.cpp
231
std::string
Error
;
233
TargetRegistry::lookupTarget(ArchName, TheTriple,
Error
);
235
errs() << ProgName << ": " <<
Error
;
293
WithColor::
error
() << toString(Cycles.takeError());
318
// registered target, then exit with an
error
message.
331
WithColor::
error
() << InputFilename << ": " << EC.message() << '\n';
351
WithColor::
error
()
403
WithColor::
error
()
417
WithColor::
error
() << E.getMessage() << '\n';
420
WithColor::
error
() << toString(std::move(Err)) << '\n'
[
all
...]
/src/external/public-domain/sqlite/dist/
Replace.cs
87
/// This method displays an
error
message to the console and/or
91
/// The
error
message to display, if any.
96
private static void
Error
(
138
Error
(null, true);
144
Error
(null, true);
165
Error
(null, true);
217
Error
(e.ToString(), false);
/src/games/phantasia/
setup.c
30
void
Error
(const char *, const char *) __dead;
47
/ MODULES CALLED: time(), exit(), stat(),
Error
(), creat(), close(), fopen(),
116
Error
("Cannot unlink %s.\n", path);
121
Error
("Cannot create %s.\n", path);
131
Error
("Cannot create %s.\n", path);
137
Error
("Cannot update %s.\n", path);
143
Error
("cannot open %s to create monster database.\n", "monsters.asc");
169
Error
("Writing %s.\n", path);
181
Error
("Cannot update %s.\n", path);
217
/ FUNCTION NAME:
Error
()
[
all
...]
/src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/Dynamic/
Parser.h
78
/// Useful for
error
reporting.
86
/// matcher if an
error
occurred. In that case, \c
Error
will contain a
87
/// description of the
error
.
92
Diagnostics *
Error
) = 0;
109
ArrayRef<ParserValue> Args, Diagnostics *
Error
) const = 0;
148
Diagnostics *
Error
) override;
160
Diagnostics *
Error
) const override;
180
/// Optional if an
error
occurred. In that case, \c
Error
will contain
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/FrontendTool/
ExecuteCompilerInvocation.cpp
208
std::string
Error
;
209
if (llvm::sys::DynamicLibrary::LoadLibraryPermanently(Path.c_str(), &
Error
))
211
<< Path <<
Error
;
/src/external/apache2/llvm/dist/llvm/include/llvm/Support/
FileUtilities.h
26
/// the files match, 1 if they are different, and 2 if there is a file
error
.
27
/// This function allows you to specify an absolute and relative FP
error
that
28
/// is allowed to exist. If you specify a string to fill in for the
error
29
/// option, it will set the string to an
error
message if an
error
occurs, or
35
std::string *
Error
= nullptr);
87
AtomicFileWriteError(atomic_write_error
Error
) :
Error
(
Error
) {}
91
const atomic_write_error
Error
;
[
all
...]
/src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/
LlvmState.cpp
27
std::string
Error
;
28
const Target *const TheTarget = TargetRegistry::lookupTarget(Triple,
Error
);
/src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_procmaps_fuchsia.cpp
53
bool MemoryMappingLayout::
Error
() const { return data_.data.empty(); }
Completed in 59 milliseconds
1
2
3
4
5
6
7
Indexes created Sat Jun 06 00:24:59 UTC 2026