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

1 2 3

  /libcore/ojluni/src/main/java/java/lang/
InternalError.java 35 public class InternalError extends VirtualMachineError {
39 * Constructs an <code>InternalError</code> with no detail message.
41 public InternalError() {
46 * Constructs an <code>InternalError</code> with the specified
51 public InternalError(String message) {
57 * Constructs an {@code InternalError} with the specified detail
70 public InternalError(String message, Throwable cause) {
75 * Constructs an {@code InternalError} with the specified cause
86 public InternalError(Throwable cause) {
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Misc/
ErrorManager.cs 46 public static void InternalError(object error, Exception e)
54 public static void InternalError(object error)
  /external/tensorflow/tensorflow/stream_executor/lib/
status.h 40 inline Status InternalError(StringPiece message) {
  /external/deqp/framework/common/
tcuDefs.cpp 102 InternalError::InternalError (const char* message, const char* expr, const char* file, int line)
107 InternalError::InternalError (const std::string& message)
tcuDefs.hpp 87 class InternalError : public TestException
90 InternalError (const char* message, const char* expr, const char* file, int line);
91 InternalError (const std::string& message);
92 virtual ~InternalError (void) throw() {}
138 //! Throw InternalError if condition X is not satisfied
139 #define TCU_CHECK_INTERNAL(X) do { if (!(!deGetFalse() && (X))) throw tcu::InternalError(DE_NULL, #X, __FILE__, __LINE__); } while(deGetFalse())
  /libcore/ojluni/src/main/java/sun/reflect/
Reflection.java 47 throw new InternalError();
170 throw new InternalError("Illegal class name " + name1);
179 throw new InternalError("Illegal class name " + name2);
  /frameworks/base/core/java/android/text/
CharSequenceCharacterIterator.java 105 throw new InternalError();
  /external/llvm/tools/bugpoint/
ListReducer.h 34 InternalError // Encountered an error trying to run the predicate
70 case InternalError:
148 case InternalError:
151 assert(Error.empty() && "doTest did not return InternalError for error");
  /external/swiftshader/third_party/LLVM/tools/bugpoint/
ListReducer.h 34 InternalError // Encountered an error trying to run the predicate
70 case InternalError:
143 case InternalError:
146 assert(Error.empty() && "doTest did not return InternalError for error");
  /libcore/ojluni/src/main/java/java/io/
ObjectStreamField.java 321 throw new InternalError();
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
connection.h 115 PyObject* InternalError;
  /external/python/cpython2/Modules/_sqlite/
connection.h 115 PyObject* InternalError;
  /external/python/cpython3/Modules/_sqlite/
connection.h 104 PyObject* InternalError;
  /prebuilts/go/darwin-x86/src/compress/flate/
inflate.go 39 // An InternalError reports an error in the flate code itself.
40 type InternalError string
42 func (e InternalError) Error() string { return "flate: internal error: " + string(e) }
425 return InternalError("unexpected length code")
  /prebuilts/go/linux-x86/src/compress/flate/
inflate.go 39 // An InternalError reports an error in the flate code itself.
40 type InternalError string
42 func (e InternalError) Error() string { return "flate: internal error: " + string(e) }
425 return InternalError("unexpected length code")
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/
CommandLine.py 296 InternalError = exceptions.Exception
359 except self.InternalError:
580 self.InternalError = None
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
BitSet.java 174 throw new InternalError();
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
Label.java 154 throw new InternalError();
  /external/jmdns/src/javax/jmdns/impl/
DNSEntry.java 241 throw new InternalError();
  /external/python/cpython2/Tools/pybench/
CommandLine.py 296 InternalError = exceptions.Exception
359 except self.InternalError:
580 self.InternalError = None
  /external/python/cpython3/Tools/pybench/
CommandLine.py 298 InternalError = BaseException
363 except self.InternalError:
586 self.InternalError = NoErrorToCatch
  /external/tensorflow/tensorflow/compiler/xla/
util.cc 96 Status InternalError(const char* format, ...) {
  /external/tensorflow/tensorflow/python/framework/
errors_impl.py 411 @tf_export("errors.InternalError")
412 class InternalError(OpError):
422 """Creates an `InternalError`."""
423 super(InternalError, self).__init__(node_def, op, message, INTERNAL)
471 INTERNAL: InternalError,
  /libcore/ojluni/src/main/java/java/util/concurrent/
ConcurrentSkipListSet.java 179 throw new InternalError();
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
BitSet.java 195 throw new InternalError();

Completed in 1052 milliseconds

1 2 3