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

1 2

  /external/deqp/framework/opengl/
gluDefs.cpp 51 OutOfMemoryError::OutOfMemoryError (const char* message, const char* expr, const char* file, int line)
56 OutOfMemoryError::OutOfMemoryError (const std::string& message)
61 OutOfMemoryError::~OutOfMemoryError (void) throw()
81 throw OutOfMemoryError(msgStr.str().c_str(), DE_NULL, file, line);
gluDefs.hpp 61 class OutOfMemoryError : public tcu::ResourceError
64 OutOfMemoryError (const char* message, const char* expr, const char* file, int line);
65 OutOfMemoryError (const std::string& message);
66 virtual ~OutOfMemoryError (void) throw();
  /libcore/ojluni/src/main/java/java/lang/
OutOfMemoryError.java 33 * {@code OutOfMemoryError} objects may be constructed by the virtual
41 public class OutOfMemoryError extends VirtualMachineError {
45 * Constructs an {@code OutOfMemoryError} with no detail message.
47 public OutOfMemoryError() {
52 * Constructs an {@code OutOfMemoryError} with the specified
57 public OutOfMemoryError(String s) {
AbstractStringBuilder.java 127 throw new OutOfMemoryError();
    [all...]
  /external/opencv3/modules/core/src/
alloc.cpp 50 static void* OutOfMemoryError(size_t size)
66 return OutOfMemoryError(size);
122 return ptr ? ptr : OutOfMemoryError(size);
151 return ptr != MAP_FAILED ? ptr : OutOfMemoryError(size);
  /external/deqp/external/vulkancts/framework/vulkan/
vkDefs.cpp 59 OutOfMemoryError::OutOfMemoryError (VkResult error, const char* message, const char* expr, const char* file, int line)
66 OutOfMemoryError::OutOfMemoryError (VkResult error, const std::string& message)
73 OutOfMemoryError::~OutOfMemoryError (void) throw()
88 throw OutOfMemoryError(result, msgStr.str().c_str(), DE_NULL, file, line);
vkDefs.hpp 213 class OutOfMemoryError : public tcu::ResourceError
216 OutOfMemoryError (VkResult error, const char* message, const char* expr, const char* file, int line);
217 OutOfMemoryError (VkResult error, const std::string& message);
218 virtual ~OutOfMemoryError (void) throw();
  /art/test/004-NativeAllocations/src/
Main.java 40 throw new OutOfMemoryError();
  /libcore/ojluni/src/main/java/java/io/
ByteArrayOutputStream.java 86 * @throws OutOfMemoryError if {@code minCapacity < 0}. This is
110 throw new OutOfMemoryError();