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

1 2 3 4 5

  /libcore/luni/src/main/java/java/lang/
InternalError.java 23 public class InternalError extends VirtualMachineError {
28 * Constructs a new {@code InternalError} that includes the current stack
31 public InternalError() {
35 * Constructs a new {@code InternalError} with the current stack trace and
41 public InternalError(String detailMessage) {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
InternalErrorTest.java 25 * java.lang.InternalError#InternalError()
28 InternalError e = new InternalError();
35 * java.lang.InternalError#InternalError(java.lang.String)
38 InternalError e = new InternalError("fixture");
  /libcore/luni/src/main/java/java/util/zip/
ZipError.java 24 public class ZipError extends InternalError {
  /external/deqp/framework/common/
tcuDefs.hpp 70 class InternalError : public Exception
73 InternalError (const char* message, const char* expr, const char* file, int line);
74 InternalError (const std::string& message);
75 virtual ~InternalError (void) throw() {}
119 //! Throw InternalError if condition X is not satisfied
120 #define TCU_CHECK_INTERNAL(X) do { if (!(!deGetFalse() && (X))) throw tcu::InternalError(DE_NULL, #X, __FILE__, __LINE__); } while(deGetFalse())
tcuImageIO.cpp 62 throw InternalError("Unrecognized image file extension", fileName, __FILE__, __LINE__);
98 throw InternalError("An error occured when loading PNG", fileName, __FILE__, __LINE__);
118 throw InternalError("Unsupported PNG depth or color type", fileName, __FILE__, __LINE__);
142 throw InternalError("Unsupported texture format", DE_NULL, __FILE__, __LINE__);
179 throw tcu::InternalError("PNG compression failed");
238 throw InternalError("Signature doesn't match PKM signature", resource->getName().c_str(), __FILE__, __LINE__);
242 throw InternalError("Unsupported PKM type", resource->getName().c_str(), __FILE__, __LINE__);
tcuStringTemplate.cpp 70 throw tcu::InternalError("No '}' found in template parameter", "", __FILE__, __LINE__);
102 throw tcu::InternalError((string("Value for parameter '") + paramName + "' not found in map").c_str(), "", __FILE__, __LINE__);
tcuTestPackage.cpp 48 throw InternalError("TestPackage::iterate() called!", "", __FILE__, __LINE__);
154 throw InternalError("TestPackageRoot::iterate() called!", "", __FILE__, __LINE__);
tcuTestCase.cpp 94 throw tcu::InternalError(std::string("Test case with non-unique name '") + node->getName() + "' added to group '" + getName() + "'.");
131 throw InternalError("TestCaseGroup::iterate() called!", "", __FILE__, __LINE__);
tcuTestCaseWrapper.cpp 72 catch (const tcu::InternalError& e)
139 catch (const tcu::InternalError& e)
  /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/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");
  /external/chromium_org/third_party/mesa/src/scons/
dxsdk.py 54 raise SCons.Errors.InternalError, "Unsupported target machine"
llvm.py 50 raise SCons.Errors.InternalError, "Specified LLVM directory not found"
61 raise SCons.Errors.InternalError, "LLVM binary directory not found"
  /external/emma/core/java12/com/vladium/jcd/cls/attribute/
LineNumber_info.java 70 throw new InternalError (e.toString ());
DeclaredExceptionTable.java 59 throw new InternalError (e.toString ());
ExceptionHandlerTable.java 65 throw new InternalError (e.toString ());
Exception_info.java 95 throw new InternalError (e.toString ());
InnerClass_info.java 60 throw new InternalError (e.toString ());
  /external/mesa3d/scons/
dxsdk.py 54 raise SCons.Errors.InternalError, "Unsupported target machine"
llvm.py 50 raise SCons.Errors.InternalError, "Specified LLVM directory not found"
61 raise SCons.Errors.InternalError, "LLVM binary directory not found"
  /external/chromium_org/chrome/test/nacl/
nacl_browsertest_util.cc 34 return InternalError("Could parse automation JSON: " + json +
39 return InternalError("Message was not a string: " + json);
43 return InternalError("Could not parse message JSON: " + temp +
48 return InternalError("Message was not an object: " + temp);
60 return InternalError(type + " message did not have field: " + field);
63 MessageResponse StructuredMessageHandler::InternalError(
97 return InternalError("Unknown message type: " + type);
157 return InternalError("Unknown message type: " + type);
  /external/deqp/framework/platform/android/
tcuAndroidRenderActivity.cpp 144 throw InternalError("Got unexpected onNativeWindowCreated() event from system");
152 throw InternalError("Got onNativeWindowResized() event targeting different window");
163 throw InternalError("Got unexpected onNativeWindowResized() event from system");
169 throw InternalError("Got onNativeWindowDestroyed() event targeting different window");
172 throw InternalError("Got unexpected onNativeWindowDestroyed() event from system");
  /external/deqp/framework/opengl/
gluRenderConfig.cpp 140 throw tcu::InternalError(std::string("Invalid GL configuration: '") + renderCfgName + "'");
153 throw tcu::InternalError("Unsupported surface type");
179 throw tcu::InternalError("Unsupported window visibility");
gluTextureUtil.cpp 40 * If no mapping is found, throws tcu::InternalError.
117 throw tcu::InternalError("Can't map texture format to GL transfer format");
127 * If no mapping is found, throws tcu::InternalError.
214 throw tcu::InternalError("Can't map texture format to GL internal format");
222 * If no mapping is found, throws tcu::InternalError.
273 throw tcu::InternalError("Can't map compressed format to GL format");
310 * If no mapping is found, throws tcu::InternalError.
338 throw tcu::InternalError(string("Can't map GL pixel format (") + tcu::toHex(format).toString() + ", " + tcu::toHex(dataType).toString() + ") to texture format");
345 * If no mapping is found, throws tcu::InternalError.
427 throw tcu::InternalError(string("Can't map GL sized internal format (") + tcu::toHex(internalFormat).toString() + ") to tex (…)
    [all...]
  /external/emma/core/java12/com/vladium/jcd/cls/
InterfaceCollection.java 54 throw new InternalError (e.toString ());

Completed in 420 milliseconds

1 2 3 4 5