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

1 2 3 4 5 6 7 8 91011>>

  /external/mesa3d/src/mesa/main/
genmipmap.c 45 bool error; local
49 error = _mesa_is_gles(ctx);
52 error = false;
55 error = ctx->API == API_OPENGLES;
58 error = !ctx->Extensions.ARB_texture_cube_map;
61 error = _mesa_is_gles(ctx) || !ctx->Extensions.EXT_texture_array;
64 error = (_mesa_is_gles(ctx) && ctx->Version < 30)
68 error = !_mesa_has_texture_cube_map_array(ctx);
71 error = true;
74 return !error;
    [all...]
  /external/oj-libjdwp/src/share/back/
ClassLoaderReferenceImpl.c 44 jvmtiError error; local
49 error = allClassLoaderClasses(loader, &classes, &count);
50 if (error != JVMTI_ERROR_NONE) {
51 outStream_setError(out, map2jdwpError(error));
  /external/parameter-framework/upstream/test/functional-tests/include/
FailureWrapper.hpp 128 std::string error; local
129 auto res = (instance.*method)(std::forward<Args>(args)..., error);
131 throw Exception(std::move(error));
  /external/puffin/src/
sample_generator.cc 43 // If there was not enough output available return error.
80 puffin::Error error; local
85 puffer->PuffDeflate(&bit_reader, &puff_writer, nullptr, &error));
  /external/python/cpython2/Lib/plat-irix5/
jpeg.py 11 class error(Exception): class in inherits:Exception
  /external/python/cpython2/Lib/plat-irix6/
jpeg.py 11 class error(Exception): class in inherits:Exception
  /external/python/cpython2/Modules/
testcapi_long.h 11 TESTNAME(PyObject *error(const char*)) function
18 /* Note: This test lets PyObjects leak if an error is raised. Since
19 an error should never be raised, leaks are impossible <wink>. */
47 return error(
52 return error(
55 return error(
62 return error(
67 return error(
70 return error(
87 return error(
    [all...]
  /external/python/cpython3/Lib/dbm/
__init__.py 30 __all__ = ['open', 'whichdb', 'error']
38 class error(Exception): class in inherits:Exception
45 error = (error, OSError) variable
85 raise error[0]("need 'c' or 'n' flag to open new db")
88 raise error[0]("db type could not be determined")
90 raise error[0]("db type is {0}, but the module is not "
168 except struct.error:
179 except struct.error:
  /external/python/cpython3/Lib/test/libregrtest/
cmdline.py 128 def error(self, message): member in class:_ArgParser
129 super().error(message + "\nPass -h or --help for complete help.")
134 # error messages when using "python -m test ...".
235 help='suppress error message boxes on Windows')
238 'error happens')
299 parser.error("unrecognized arguments: %s" % arg)
303 parser.error("-s and -f don't go together!")
305 parser.error("-T and -j don't go together!")
307 parser.error("-l and -j don't go together!")
309 parser.error("-G/--failfast needs either -v or -W"
    [all...]
  /external/python/cpython3/Modules/
testcapi_long.h 11 TESTNAME(PyObject *error(const char*)) function
18 /* Note: This test lets PyObjects leak if an error is raised. Since
19 an error should never be raised, leaks are impossible <wink>. */
46 return error(
51 return error(
54 return error(
61 return error(
66 return error(
69 return error(
86 return error(
    [all...]
  /external/skia/src/images/
SkJPEGWriteUtility.cpp 56 skjpeg_error_mgr* error = (skjpeg_error_mgr*)cinfo->err; local
58 (*error->output_message) (cinfo);
63 if (error->fJmpBufStack.empty()) {
64 SK_ABORT("JPEG error with no jmp_buf set.");
66 longjmp(*error->fJmpBufStack.back(), -1);
  /external/skqp/src/images/
SkJPEGWriteUtility.cpp 56 skjpeg_error_mgr* error = (skjpeg_error_mgr*)cinfo->err; local
58 (*error->output_message) (cinfo);
63 if (error->fJmpBufStack.empty()) {
64 SK_ABORT("JPEG error with no jmp_buf set.");
66 longjmp(*error->fJmpBufStack.back(), -1);
  /external/sl4a/Common/src/com/googlecode/android_scripting/jsonrpc/
JsonRpcResult.java 38 json.put("error", JSONObject.NULL);
46 json.put("error", JSONObject.NULL);
50 public static JSONObject error(int id, Throwable t) throws JSONException { method in class:JsonRpcResult
54 json.put("error", t.toString());
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/error/
MarkTest.java 16 package org.yaml.snakeyaml.error;
  /external/swiftshader/src/OpenGL/libEGL/
main.h 36 EGLint error; member in struct:egl::Current
45 void setCurrentError(EGLint error);
60 void error(EGLint errorCode);
63 const T &error(EGLint errorCode, const T &returnValue) function in namespace:egl
65 egl::error(errorCode);
  /external/swiftshader/src/OpenGL/libGL/
main.h 54 void error(GLenum errorCode);
57 T &error(GLenum errorCode, T &returnValue) function
59 error(errorCode);
65 const T &error(GLenum errorCode, const T &returnValue) function
67 error(errorCode);
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
Regex.h 45 /// isValid - returns the error encountered during regex compilation, or
47 bool isValid(std::string &Error);
70 /// \param Error If non-null, any errors in the substitution (invalid
73 std::string sub(StringRef Repl, StringRef String, std::string *Error = 0);
77 int error; member in class:llvm::Regex
  /external/swiftshader/third_party/LLVM/utils/lit/lit/
LitConfig.py 50 '--error-exitcode=123']
125 def error(self, message): member in class:LitConfig
126 self._write_message('error', message)
  /external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
Regex.h 52 std::swap(error, regex.error);
58 /// isValid - returns the error encountered during regex compilation, or
60 bool isValid(std::string &Error);
83 /// \param Error If non-null, any errors in the substitution (invalid
87 std::string *Error = nullptr);
98 int error; member in class:llvm::Regex
  /external/tensorflow/tensorflow/core/grappler/clusters/
utils.cc 75 cudaError_t error = cudaGetDeviceProperties(&properties, gpu_id); local
76 if (error == cudaSuccess) {
  /external/v8/tools/clang/blink_gc_plugin/
CheckFieldsVisitor.cpp 79 // Notice that an error is only reported if T's definition is in scope;
106 Error error = rawPtr->HasReferenceType() ? local
108 invalid_fields_.push_back(std::make_pair(current_, error));
119 CheckFieldsVisitor::Error CheckFieldsVisitor::InvalidSmartPtr(Edge* ptr) {
  /external/valgrind/memcheck/tests/solaris/
execx.c 13 int error = errno; local
14 if ((ret != -1) || (error != EFAULT))
20 int error = errno; local
21 if ((ret != -1) || (error != EBADF))
sendfilev.c 18 int error = errno; local
19 fprintf(stderr, "open failed: %s (%d).\n", strerror(error), error);
27 int error = errno; local
29 nbytes, strerror(error), error);
38 int error = errno; local
39 fprintf(stderr, "open failed: %s (%d).\n", strerror(error), error);
62 fprintf(stderr, "Error: sendfilev returned a positive value.\n")
80 int error = errno; local
    [all...]
  /external/vboot_reference/tests/
rsa_padding_test.c 39 /* Test other error conditions in RSAVerify() */
66 int error = 0; local
88 error = 255;
90 return error;
  /external/webrtc/webrtc/base/
win32socketinit.cc 37 int error() { function in class:rtc::WinsockInitializer

Completed in 437 milliseconds

1 2 3 4 5 6 7 8 91011>>