HomeSort by relevance Sort by last modified time
    Searched defs:error (Results 376 - 400 of 3032) sorted by null

<<11121314151617181920>>

  /external/slf4j/slf4j-api/src/main/java/org/slf4j/helpers/
NOPLogger.java 197 final public void error(String msg) { method in class:NOPLogger
202 final public void error(String format, Object arg1) { method in class:NOPLogger
207 final public void error(String format, Object arg1, Object arg2) { method in class:NOPLogger
212 public final void error(String format, Object... argArray) { method in class:NOPLogger
217 final public void error(String msg, Throwable t) { method in class:NOPLogger
  /external/valgrind/coregrind/m_demangle/
demangle.c 190 Bool error, valid, fn_is_encoded, is_VG_Z_prefixed; local
193 error = False;
261 error = True;
286 default: error = True; goto out;
335 default: error = True; goto out;
344 if (error) {
347 "m_demangle: error Z-demangling: %s\n", sym);
  /external/vboot_reference/tests/
vb20_rsa_padding_tests.c 75 * Test other error conditions in vb2_rsa_verify_digest().
125 int error = 0; local
155 error = 255;
157 return error;
  /external/webrtc/src/system_wrappers/source/
cpu_mac.cc 31 kern_return_t error = host_processor_info(mach_host_self(), local
36 if (error)
106 kern_return_t error = host_processor_info(mach_host_self(), local
111 if (error)
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
Log.java 49 public void error(String format, Object... args) { method in class:Log
59 error(format + "\n" + sw.toString(), args);
  /frameworks/compile/libbcc/bcinfo/
BitcodeTranslator.cpp 125 std::string error; local
  /frameworks/minikin/libs/minikin/
MinikinFontFreeType.cpp 63 FT_Error error = FT_Load_Sfnt_Table(mTypeface, tag, 0, buf, &ftsize); local
64 if (error != 0) {
77 FT_Error error; local
79 error = FT_Load_Glyph(mTypeface, glyph_id, load_flags);
80 if (error != 0) {
83 error = FT_Render_Glyph(mTypeface->glyph, FT_RENDER_MODE_NORMAL);
84 if (error != 0) {
  /frameworks/minikin/sample/
example.cpp 51 FT_Error error; local
55 error = FT_New_Face(library, fn, 0, &face);
56 if (error != 0) {
57 printf("error loading %s, %d\n", fn, error);
67 error = FT_New_Face(library, fn, 0, &face);
77 FT_Error error = FT_Init_FreeType(&library); local
78 if (error) {
  /frameworks/native/libs/gui/
IGraphicBufferAlloc.cpp 49 status_t* error) {
69 *error = result;
104 status_t error; local
106 createGraphicBuffer(width, height, format, usage, &error);
107 reply->writeInt32(error);
  /frameworks/native/opengl/libs/EGL/
egl_tls.cpp 36 : error(EGL_SUCCESS), ctx(0), logCallWithNoContext(EGL_TRUE) {
71 const char* caller, int line, EGLint error, bool quiet) {
74 if (tls->error != error) {
76 ALOGE("%s:%d error %x (%s)",
77 caller, line, error, egl_strerror(error));
84 tls->error = error;
117 // This must clear the error from all the underlying EGL implementations a
130 EGLint error = tls->error; local
    [all...]
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/parser/
vbp_utils.c 34 uint32 error = VBP_OK; local
38 return error;
53 return error;
63 uint32 error = VBP_OK; local
95 error = VBP_LOAD;
103 error = VBP_MEM;
133 error = pcontext->func_init_parser_entries(pcontext);
137 if (VBP_OK != error)
139 /* no need to log error. the loader would have done so already. */
143 return error;
187 uint32 error = VBP_OK; local
273 uint32 error = VBP_OK; local
397 uint32 error = VBP_OK; local
490 uint32 error = VBP_OK; local
525 uint32 error = VBP_OK; local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
textblit.c 65 int error, ystep, y, x; local
93 error = deltax / 2;
108 error = error - deltay;
109 if (error < 0)
112 error = error + deltax;
122 error = error - deltay;
123 if (error < 0
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
boolhuff.h 37 struct vpx_internal_error_info *error; member in struct:__anon24164
56 struct vpx_internal_error_info *error)
61 vpx_internal_error(error, VPX_CODEC_CORRUPT_FRAME,
117 validate_buffer(br->buffer + br->pos, 1, br->buffer_end, br->error);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
vp9_textblit.c 64 int error, ystep, y, x; local
90 error = deltax / 2;
103 error = error - deltay;
104 if (error < 0) {
106 error = error + deltax;
113 error = error - deltay;
114 if (error < 0)
    [all...]
  /hardware/qcom/media/mm-video-legacy/vidc/vdec/inc/
ts_parser.h 71 bool error; member in class:omx_time_stamp_reorder
79 ALOGE("Error handler called for TS Parser");
80 if (error)
82 error = true;
  /libcore/luni/src/main/java/org/xml/sax/
HandlerBase.java 329 * Receive notification of a recoverable parser error.
333 * for each error, such as inserting the message in a log file or
342 public void error (SAXParseException e)
350 * Report a fatal XML parsing error.
354 * they need to take specific actions for each fatal error (such as
360 * @param e The error information encoded as an exception.
338 public void error (SAXParseException e) method in class:HandlerBase
  /libcore/luni/src/main/native/
java_util_jar_StrictJarFile.cpp 61 int32_t error = OpenArchive(fileChars.c_str(), &handle); local
62 if (error) {
64 throwIoException(env, error);
98 int32_t error = 0; local
100 error = StartIteration(reinterpret_cast<ZipArchiveHandle>(nativeHandle),
104 error = StartIteration(reinterpret_cast<ZipArchiveHandle>(nativeHandle),
108 if (error) {
109 throwIoException(env, error);
121 const int32_t error = Next(*handle->CookieAddress(), &data, &entryName); local
122 if (error) {
143 const int32_t error = FindEntry(reinterpret_cast<ZipArchiveHandle>(nativeHandle), local
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/cppunit/
file_reporter.h 64 virtual void error(const char *in_macroName, const char *in_macro, const char *in_file, int in_line) { function in class:FileReporter
65 // Error might be called several times between 2 progress calls, we shouldn't however consider
  /ndk/tests/device/test-stlport/unit/cppunit/
file_reporter.h 64 virtual void error(const char *in_macroName, const char *in_macro, const char *in_file, int in_line) { function in class:FileReporter
65 // Error might be called several times between 2 progress calls, we shouldn't however consider
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/accessories/
BluetoothDevicePickerActivity.java 41 String error = getString(R.string.error_action_not_supported); local
42 Toast toast = Toast.makeText(this, error, Toast.LENGTH_SHORT);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
log.py 9 ERROR = 4
20 if level not in (DEBUG, INFO, WARN, ERROR, FATAL):
26 if level in (WARN, ERROR, FATAL):
45 def error(self, msg, *args): member in class:Log
46 self._log(ERROR, msg, args)
56 error = _global_log.error variable
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
dummy_thread.py 16 __all__ = ['error', 'start_new_thread', 'exit', 'get_ident', 'allocate_lock',
21 class error(Exception): class in inherits:Exception
22 """Dummy implementation of thread.error."""
78 raise error("setting thread stack size not supported")
126 raise error
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_pickle.py 23 error = KeyError variable in class:PickleTests
27 error = KeyError variable in class:PicklerTests
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
log.py 9 ERROR = 4
20 if level not in (DEBUG, INFO, WARN, ERROR, FATAL):
26 if level in (WARN, ERROR, FATAL):
45 def error(self, msg, *args): member in class:Log
46 self._log(ERROR, msg, args)
56 error = _global_log.error variable
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
dummy_thread.py 16 __all__ = ['error', 'start_new_thread', 'exit', 'get_ident', 'allocate_lock',
21 class error(Exception): class in inherits:Exception
22 """Dummy implementation of thread.error."""
78 raise error("setting thread stack size not supported")
126 raise error

Completed in 560 milliseconds

<<11121314151617181920>>