HomeSort by relevance Sort by last modified time
    Searched defs:error (Results 401 - 425 of 5380) sorted by null

<<11121314151617181920>>

  /external/mesa3d/src/glx/apple/
apple_glx_pixmap.c 117 /* Return true if an error occurred. */
126 CGLError error; local
169 error = apple_cgl.create_context(p->pixel_format_obj, NULL,
172 if (kCGLNoError != error) {
apple_visual.c 84 CGLError error = 0; local
169 error = apple_cgl.choose_pixel_format(attr, pfobj, &vsref);
171 if ((error == kCGLBadAttribute || vsref == 0) && use_core_profile) {
173 ("Trying again without CoreProfile: error=%s, vsref=%d\n", apple_cgl.error_string(error), vsref);
175 if (!error)
181 error = apple_cgl.choose_pixel_format(attr, pfobj, &vsref);
184 if (error) {
186 "CGLChoosePixelFormat error: %s\n", apple_cgl.error_string(error));
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
intel_asm_annotation.h 38 char *error; member in struct:annotation
74 const char *error);
intel_pixel_read.c 87 int error = 0; local
150 error = brw_bo_map(brw, bo, false /* write enable */, "miptree");
151 if (error) {
intel_tex_subimage.c 89 int error = 0; local
151 error = brw_bo_map(brw, bo, true /* write enable */, "miptree");
152 if (error || bo->virtual == NULL) {
  /external/mesa3d/src/mesa/main/tests/
mesa_formats.cpp 53 GLenum error = 0; local
60 /* If the error isn't NO_ERROR, the format was not handled.
63 GL_FALSE, &error);
64 EXPECT_EQ((GLenum)GL_NO_ERROR, error);
  /external/mockito/src/main/java/org/mockito/exceptions/base/
MockitoAssertionError.java 14 * All error classes that inherit from this class will have the stack trace filtered.
39 * Creates a copy of the given assertion error with the custom failure message prepended.
40 * @param error The assertion error to copy
44 public MockitoAssertionError(MockitoAssertionError error, String message) {
45 super(message + "\n" + error.getMessage());
46 super.setStackTrace(error.getStackTrace());
47 unfilteredStackTrace = error.getUnfilteredStackTrace();
  /external/mockito/src/test/java/org/mockito/verification/
TimeoutTest.java 27 private final MockitoAssertionError error = new MockitoAssertionError(""); field in class:TimeoutTest
48 doThrow(error).
49 doThrow(error).
50 doThrow(error).
66 doThrow(error).
67 doThrow(error).
79 doThrow(error).when(mode).verify(data);
  /external/oj-libjdwp/make/src/classes/build/tools/jdwpgen/
CommandNode.java 37 Node error = components.get(2); local
39 error("Expected 'Out' item, got: " + out);
42 error("Expected 'Reply' item, got: " + reply);
44 if (!(error instanceof ErrorSetNode)) {
45 error("Expected 'ErrorSet' item, got: " + error);
50 error("Expected 'Event' item, got: " + evt);
53 error("Command must have Out and Reply items or ErrorSet item");
  /external/oj-libjdwp/src/share/back/
ClassTypeImpl.c 144 jvmtiError error; local
152 error = fieldSignature(clazz, field, NULL, &signature, NULL);
153 if (error != JVMTI_ERROR_NONE) {
ThreadGroupReferenceImpl.c 102 jvmtiError error; local
108 error = JVMTI_FUNC_PTR(gdata->jvmti,GetThreadGroupChildren)(gdata->jvmti, group,
111 if (error != JVMTI_ERROR_NONE) {
112 outStream_setError(out, map2jdwpError(error));
standardHandlers.c 102 jvmtiError error; local
106 error = JVMTI_FUNC_PTR(gdata->jvmti,GetFrameLocation)
108 if (error != JVMTI_ERROR_NONE) {
  /external/parameter-framework/upstream/remote-processor/
Message.h 59 error enumerator in enum:CMessage::Result
67 * @param[out] strError on failure, a string explaining the error,
72 * error if the message could not be read/write for any other reason
  /external/parameter-framework/upstream/test/test-platform/
main.cpp 52 static void showInvalidUsage(const string &error)
54 cerr << "Invalid arguments: " << error; local
110 cerr << "Test-platform error:" << strError.c_str() << endl;
  /external/parameter-framework/upstream/test/tmpfile/windows/
TmpFile.cpp 44 /** Format an error code returned by GetLastError to a human readable string. */
45 static std::string formatError(DWORD error)
50 FORMAT_MESSAGE_FROM_SYSTEM | // use system message tables to retrieve error text
51 FORMAT_MESSAGE_ALLOCATE_BUFFER | // allocate buffer on local heap for error text
54 error, // the error to format
66 return "Could not format error " + to_string(error) + ": " + to_string(::GetLastError());
77 auto error = ::GetLastError(); local
80 "\", with prefix \"" + prefix + "\": (" + to_string(error) + ") "
    [all...]
  /external/parameter-framework/upstream/tools/xmlValidator/
xmlValidator.py 43 def error(stringToPrint): member in class:PrintColor
91 PrintColor.error('Error: %s' % str(schema.error_log))
95 PrintColor.error('Error: usage %s xmlDirectory schemaDirectory' % str(argv[0]))
  /external/pdfium/core/fxge/
cfx_unicodeencodingex.cpp 56 int error = FXFT_Select_Charmap(face, nEncodingID); local
57 if (error)
  /external/protobuf/src/google/protobuf/stubs/
status.cc 40 namespace error { namespace in namespace:google::protobuf::util
41 inline string CodeEnumToString(error::Code code) {
83 } // namespace error.
86 const Status Status::CANCELLED = Status(error::CANCELLED, "");
87 const Status Status::UNKNOWN = Status(error::UNKNOWN, "");
89 Status::Status() : error_code_(error::OK) {
92 Status::Status(error::Code error_code, StringPiece error_message)
94 if (error_code != error::OK) {
115 if (error_code_ == error::OK) {
119 return error::CodeEnumToString(error_code_)
    [all...]
  /external/puffin/src/
fuzzer.cc 28 using puffin::Error;
39 Error error; local
41 puffer.PuffDeflate(&bit_reader, &puff_writer, &bit_extents, &error);
48 Error error; local
50 huffer.HuffDeflate(&puff_reader, &bit_writer, &error);
puff_io_unittest.cc 18 Error error; local
24 ASSERT_TRUE(pw.Insert(pd, &error));
27 ASSERT_TRUE(pr.GetNext(&pd, &error));
38 ASSERT_TRUE(pw.Insert(pd, &error));
39 ASSERT_TRUE(pw.Flush(&error));
44 ASSERT_TRUE(pw.Insert(pd, &error));
46 ASSERT_TRUE(pr.GetNext(&pd, &error));
69 Error error; local
230 Error error; local
252 Error error; local
297 Error error; local
335 Error error; local
    [all...]
  /external/python/cpython2/Include/
parsetok.h 11 int error; member in struct:__anon32599
  /external/python/cpython2/Lib/distutils/
text_file.py 147 def error (self, msg, line=None): member in class:TextFile
148 raise ValueError, "error: " + self.gen_error(msg, line)
  /external/python/cpython2/Lib/
getopt.py 34 __all__ = ["GetoptError","error","getopt","gnu_getopt"]
49 error = GetoptError # backward compatibility variable
178 # nice to work them into the error msg
  /external/python/cpython2/Lib/plat-mac/
cfmfile.py 20 error = "cfm.error" variable
74 except Res.Error:
75 raise Res.Error, "no 'cfrg' resource found", sys.exc_traceback
81 raise error, "unknown 'cfrg' resource format"
151 raise error, "can't read fragment, unsupported location"
163 raise error, "can't read fragment, unsupported location"
  /external/python/cpython2/Python/
dynload_shlib.c 15 #define dlerror() "error in dynamic linking"
133 const char *error = dlerror(); local
134 if (error == NULL)
135 error = "unknown dlopen() error";
136 PyErr_SetString(PyExc_ImportError, error);

Completed in 387 milliseconds

<<11121314151617181920>>