HomeSort by relevance Sort by last modified time
    Searched defs:Error (Results 1 - 25 of 1444) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/bindings/ocaml/bitreader/
llvm_bitreader.ml 10 exception Error of string
12 let () = Callback.register_exception "Llvm_bitreader.Error" (Error "")
llvm_bitreader.mli 15 exception Error of string
19 raises [Error msg] otherwise, where [msg] is a description of the error
25 raises [Error msg] otherwise, where [msg] is a description of the error
  /external/llvm/bindings/ocaml/irreader/
llvm_irreader.ml 11 exception Error of string
13 let _ = Callback.register_exception "Llvm_irreader.Error" (Error "")
llvm_irreader.mli 15 exception Error of string
19 raises [Error msg] otherwise, where [msg] is a description of the error
  /external/llvm/bindings/ocaml/linker/
llvm_linker.ml 10 exception Error of string
12 let () = Callback.register_exception "Llvm_linker.Error" (Error "")
llvm_linker.mli 15 exception Error of string
17 (** [link_modules' dst src] links [src] into [dst], raising [Error]
  /external/llvm/bindings/ocaml/target/
llvm_target.ml 48 exception Error of string
50 let () = Callback.register_exception "Llvm_target.Error" (Error "")
llvm_target.mli 55 exception Error of string
154 [Error] if [triple] does not correspond to a registered target. *)
213 file or raise [Error]. *)
217 buffer or raise [Error]. *)
  /external/swiftshader/third_party/LLVM/bindings/ocaml/bitreader/
llvm_bitreader.ml 11 exception Error of string
14 let _ = register_exns (Error "")
llvm_bitreader.mli 15 exception Error of string
19 raises [Error msg] otherwise, where [msg] is a description of the error
26 raises [Error msg] otherwise, where [msg] is a description of the error
  /external/swiftshader/third_party/LLVM/bindings/ocaml/executionengine/
llvm_executionengine.ml 11 exception Error of string
57 let _ = register_exns (Error "")
llvm_executionengine.mli 15 exception Error of string
91 interpreter. Raises [Error msg] if an error occurrs. The execution engine
97 module [m] if successful. Raises [Error msg] if an error occurrs. The
105 level [optlevel]. Raises [Error msg] if an error occurrs. The execution
119 [Error msg] if an error occurs. *)
  /art/test/ErroneousInit/
ErroneousInit.java 20 throw new Error();
  /cts/apps/CameraITS/pymodules/its/
error.py 17 class Error(Exception):
  /art/test/008-exceptions/src/
MultiDexBadInitWrapper1.java 19 if (doThrow) { throw new Error(); }
  /art/test/008-exceptions/src-multidex/
MultiDexBadInitWrapper2.java 19 if (doThrow) { throw new Error(); }
  /external/clang/test/CodeGenCXX/
throw-expression-cleanup.cpp 7 struct Error {
8 Error(const X&) noexcept;
13 throw Error(X());
  /external/clang/utils/analyzer/
ubiviz 18 def Error(message):
58 Error('no input files')
  /external/fonttools/MetaTools/
roundTrip.py 24 class Error(Exception): pass
  /external/libmojo/mojo/public/tools/bindings/pylib/mojom/
error.py 5 class Error(Exception):
9 """|filename| is the (primary) file which caused the error, |message| is the
10 error message, |lineno| is the 1-based line number (or |None| if not
12 to the final error message."""
21 s = "%s:%d: Error: %s" % (self.filename, self.lineno, self.message)
23 s = "%s: Error: %s" % (self.filename, self.message)
  /prebuilts/go/darwin-x86/src/errors/
errors.go 8 // New returns an error that formats as the given text.
9 func New(text string) error {
13 // errorString is a trivial implementation of error.
18 func (e *errorString) Error() string {
  /prebuilts/go/darwin-x86/src/go/internal/gcimporter/testdata/
issue15920.go 7 // The underlying type of Error is the underlying type of error.
9 type Error error
11 func F() Error { return nil }
  /prebuilts/go/darwin-x86/test/fixedbugs/bug467.dir/
p1.go 5 func (s SockaddrUnix) Error() string { return "blah" }
  /prebuilts/go/darwin-x86/test/fixedbugs/issue15920.dir/
a.go 7 type Error error
9 func F() Error { return nil }
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue19911.go 16 func (*ET) Error() string { return "err" }
19 check("false", fmt.Sprintf("(*ET)(nil) == error(nil): %v", (*ET)(nil) == error(nil)))
20 check("true", fmt.Sprintf("(*ET)(nil) != error(nil): %v", (*ET)(nil) != error(nil)))
23 nilError := error(nil)

Completed in 461 milliseconds

1 2 3 4 5 6 7 8 91011>>