HomeSort by relevance Sort by last modified time
    Searched defs:error (Results 101 - 125 of 1407) sorted by null

1 2 3 45 6 7 8 91011>>

  /sdk/ide_common/src/com/android/ide/common/log/
ILogger.java 31 * @param warningFormat is an optional error format. If non-null, it will be printed
38 * Prints an error message on stderr.
40 * The message will be tagged with "Error" on the output so the caller does not
47 * @param errorFormat is an optional error format. If non-null, it will be printed
51 void error(Throwable t, String errorFormat, Object... args); method in interface:ILogger
59 * @param msgFormat is an optional error format. If non-null, it will be printed
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/
NullSdkLog.java 32 public void error(Throwable t, String errorFormat, Object... args) { method in class:NullSdkLog
  /external/doclava/src/com/google/doclava/
FederationTagger.java 44 String error = "Could not add site for federation: " + site; local
46 error += ": " + e.getMessage();
48 Errors.error(Errors.NO_FEDERATION_DATA, null, error);
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/
NullTaskMonitor.java 58 mLog.error(null /*throwable*/, format, args);
103 public void error(Throwable t, String errorFormat, Object... args) { method in class:NullTaskMonitor
104 mLog.error(t, errorFormat, args);
  /bootable/recovery/edify/
main.c 28 int error; local
35 error = yyparse(&e, &error_count);
36 if (error > 0 || error_count > 0) {
37 fprintf(stderr, "error parsing \"%s\" (%d errors)\n",
52 fprintf(stderr, "error evaluating \"%s\"\n", expr_str);
197 int error = yyparse(&root, &error_count); local
198 printf("parse returned %d; %d errors encountered\n", error, error_count);
199 if (error == 0 || error_count > 0) {
  /development/host/windows/usb/winusb/
adb_winusb_endpoint_object.cpp 92 ULONG error = GetLastError(); local
93 if (!res && (ERROR_IO_PENDING != error)) {
98 SetLastError(error);
  /development/ide/xcode/ports/
skia_mac.cp 38 int error = chdir(workingDirectory); local
39 if (error != 0) {
40 error = errno;
41 SkASSERT(error != ENOENT);
42 SkASSERT(error != ENOTDIR);
43 SkASSERT(error != EACCES);
44 SkASSERT(error != EIO);
  /development/tools/axl/
log.py 50 def error(self, *logstrs): member in class:Log
  /external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
ZipErrorTest.java 30 ZipError error = new ZipError("ZipError"); local
31 assertEquals("ZipError", error.getMessage());
38 ZipError error = new ZipError("serialization test"); local
39 SerializationTest.verifySelf(error);
46 ZipError error = new ZipError("serialization test"); local
47 SerializationTest.verifyGolden(this, error);
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
ProcessorExsltFuncResult.java 60 handler.error(msg, new SAXException(msg));
67 handler.error(msg, new SAXException(msg));
ProcessorNamespaceAlias.java 84 handler.error(XSLTErrorResources.ER_INVALID_NAMESPACE_URI_VALUE_FOR_RESULT_PREFIX_FOR_DEFAULT, null, null);
90 handler.error(XSLTErrorResources.ER_INVALID_NAMESPACE_URI_VALUE_FOR_RESULT_PREFIX, new Object[] {prefix}, null);
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemApplyImport.java 76 transformer.getMsgMgr().error(this,
89 transformer.getMsgMgr().error(this,
105 error(XSLTErrorResources.ER_CANNOT_ADD, method
ElemComment.java 134 error(XSLTErrorResources.ER_CANNOT_ADD, method
ElemText.java 139 error(XSLTErrorResources.ER_CANNOT_ADD, method
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
MsgMgr.java 32 * This class will manage error messages, warning messages, and other types of
58 * the error condition is severe enough to halt processing.
85 * the error condition is severe enough to halt processing.
101 * the error condition is severe enough to halt processing.
119 * the error condition is severe enough to halt processing.
138 * the error condition is severe enough to halt processing.
157 * Tell the user of an error, and probably throw an
162 * the error condition is severe enough to halt processing.
166 public void error(SourceLocator srcLctr, String msg) throws TransformerException
185 * Tell the user of an error, and probably throw a
195 public void error(SourceLocator srcLctr, String msg) throws TransformerException method in class:MsgMgr
197 error(srcLctr, null, null, msg, null); method
212 public void error(SourceLocator srcLctr, String msg, Object[] args) throws TransformerException method in class:MsgMgr
214 error(srcLctr, null, null, msg, args); method
229 public void error(SourceLocator srcLctr, String msg, Exception e) throws TransformerException method in class:MsgMgr
231 error(srcLctr, msg, null, e); method
247 public void error(SourceLocator srcLctr, String msg, Object args[], Exception e) throws TransformerException method in class:MsgMgr
278 public void error(SourceLocator srcLctr, Node styleNode, Node sourceNode, String msg) method in class:MsgMgr
281 error(srcLctr, styleNode, sourceNode, msg, null); method
298 public void error(SourceLocator srcLctr, Node styleNode, Node sourceNode, String msg, Object args[]) method in class:MsgMgr
    [all...]
  /external/bluetooth/bluez/src/
log.c 47 void error(const char *format, ...) function
  /external/bluetooth/glib/gio/tests/
filter-streams.c 87 GError *error = NULL; local
93 g_input_stream_close_finish (expected_obj, result, &error);
94 g_assert (error == NULL);
158 GError *error = NULL; local
164 g_output_stream_close_finish (expected_obj, result, &error);
165 g_assert (error == NULL);
g-icon.c 43 GError *error; local
45 error = NULL;
54 icon2 = g_icon_new_for_string (data, &error);
55 g_assert_no_error (error);
67 icon2 = g_icon_new_for_string (data, &error);
68 g_assert_no_error (error);
80 icon2 = g_icon_new_for_string (data, &error);
81 g_assert_no_error (error);
94 icon2 = g_icon_new_for_string (data, &error);
95 g_assert_no_error (error);
    [all...]
memory-input-stream.c 36 GError *error = NULL; local
53 bytes_read = g_input_stream_read (stream, buffer, chunk_size, NULL, &error);
54 g_assert_no_error (error);
62 res = g_seekable_seek (G_SEEKABLE (stream), 0, G_SEEK_SET, NULL, &error);
64 g_assert_no_error (error);
memory-output-stream.c 33 GError *error = NULL; local
41 g_data_output_stream_put_byte (o, 1, NULL, &error);
42 g_assert_no_error (error);
44 g_seekable_truncate (G_SEEKABLE (mo), 0, NULL, &error); local
45 g_assert_no_error (error);
48 g_data_output_stream_put_byte (o, 1, NULL, &error);
49 g_assert_no_error (error);
  /external/bluetooth/glib/gmodule/
gmodule-dyld.c 62 msg = g_strdup_printf ("unknown error for %s", file_name);
82 const char *file, *error; local
84 NSLinkEditError (&c, &error_number, &file, &error);
85 msg = g_strdup_printf ("could not link %s: %s", file_name, error);
  /external/bluetooth/glib/tests/
markup-escape-test.c 11 static gboolean error = FALSE; variable
23 error = TRUE;
64 error = TRUE;
131 return error ? 1 : 0;
  /external/chromium/base/i18n/
bidi_line_iterator.cc 26 UErrorCode error = U_ZERO_ERROR; local
27 bidi_ = ubidi_openSized(static_cast<int>(text.length()), 0, &error);
28 if (U_FAILURE(error))
34 NULL, &error);
35 return U_SUCCESS(error) ? true : false;
40 UErrorCode error = U_ZERO_ERROR; local
41 const int runs = ubidi_countRuns(bidi_, &error);
42 return U_SUCCESS(error) ? runs : 0;
  /external/chromium/chrome/browser/chromeos/cros/
burn_library.h 23 if (status.error)
24 error = status.error;
29 std::string error; member in struct:ImageBurnStatus
  /external/chromium/chrome/browser/extensions/
extension_info_map_unittest.cc 43 std::string error; local
46 Extension::STRICT_ERROR_CHECKS, &error);
47 EXPECT_TRUE(extension) << error;
65 std::string error;
68 Extension::STRICT_ERROR_CHECKS, &error);
69 EXPECT_TRUE(extension) << error;

Completed in 915 milliseconds

1 2 3 45 6 7 8 91011>>