Searched defs:ERROR (Results 1 - 25 of 52) sorted by relevance

123

/external/openssh/openbsd-compat/
H A Dbsd-cygwin_util.h37 #undef ERROR macro
/external/webkit/Source/WebKit/mac/Misc/
H A DWebAssertions.h35 #define ERROR(...) ((void)0) macro
/external/protobuf/src/google/protobuf/testing/
H A Dgoogletest.h60 // ScopedMemoryLog refers to LOGLEVEL_ERROR as just ERROR.
61 #undef ERROR // defend against promiscuous windows.h macro
62 static const LogLevel ERROR = LOGLEVEL_ERROR; member in namespace:google::protobuf
64 // Receives copies of all LOG(ERROR) messages while in scope. Sample usage:
68 // const vector<string>& warnings = log.GetMessages(ERROR);
79 // open source version ignores the argument since we always pass ERROR
/external/webkit/Tools/Scripts/webkitpy/tool/commands/data/rebaselineserver/
H A Dutil.js76 log.ERROR = {text: 'Error: ', color: 'red'};
/external/chromium/sdch/open-vcdiff/src/
H A Dlogging.h23 // Windows API defines ERROR
24 #ifdef ERROR
25 #undef ERROR macro
26 #endif // ERROR
33 ERROR, enumerator in enum:open_vcdiff::LogLevel
40 #define DFATAL ERROR
/external/jmonkeyengine/engine/src/networking/com/jme3/network/message/
H A DDisconnectMessage.java47 public static final String ERROR = "Error"; field in class:DisconnectMessage
/external/markdown/markdown/
H A Dcommandline.py12 from logging import DEBUG, INFO, WARN, ERROR, CRITICAL namespace
H A D__init__.py50 from logging import DEBUG, INFO, WARN, ERROR, CRITICAL namespace
334 message(ERROR, e)
336 message(ERROR, 'Extension "%s.%s" must be of type: "markdown.Extension".' \
/external/mtpd/
H A Dmtpd.h37 ERROR = 3, enumerator in enum:log_level
/external/tcpdump/
H A Dtftp.h52 #define ERROR 05 /* error code */ macro
/external/webkit/Source/JavaScriptCore/wtf/
H A DAssertions.h219 #undef ERROR macro
/external/apache-xml/src/main/java/org/apache/xalan/xslt/
H A DEnvironmentCheck.java171 // Check for ERROR keys in the hashtable, and print report
179 logMsg("# Check any 'ERROR' items above against the Xalan FAQs");
202 * with a key that is prefixed with {@link #ERROR 'ERROR.'} so it
253 logMsg("# ERROR: writeEnvironmentReport called with null Hashtable");
281 // Note: we could just check for the ERROR key by itself,
285 if (keyStr.startsWith(ERROR))
305 public static final String ERROR = "ERROR."; field in class:EnvironmentCheck
376 if (keyStr.startsWith(ERROR))
[all...]
/external/chromium/googleurl/base/
H A Dlogging.h75 // are (in increasing order of severity) INFO, WARNING, ERROR, and FATAL.
78 // debug mode, ERROR in normal mode.
151 // LOG_DFATAL_LEVEL is LOG_FATAL in debug mode, ERROR in normal mode
172 // wingdi.h defines ERROR to be 0. When we call LOG(ERROR), it gets
175 // as COMPACT_GOOGLE_LOG_ERROR, and also define ERROR the same way that
177 #define ERROR 0 macro
/external/doclava/src/com/google/doclava/
H A DErrors.java61 int level = (!warningsAreErrors && error.level == WARNING) ? WARNING : ERROR;
71 if (error.level == ERROR || (warningsAreErrors && error.level == WARNING)) {
92 if (m.error.level == ERROR) {
104 public static int ERROR = 2; field in class:Errors
125 public static Error PARSE_ERROR = new Error(1, ERROR);
149 public static Error CHANGED_SYNCHRONIZED = new Error(25, ERROR);
157 public static final Error BAD_ATTR_TAG = new Error(106, ERROR);
161 public static final Error UNAVAILABLE_SYMBOL = new Error(110, ERROR);
169 public static final Error BROKEN_SINCE_FILE = new Error(118, ERROR);
/external/apache-xml/src/main/java/org/apache/xalan/processor/
H A DXSLTAttributeDef.java51 static final int ERROR = 1; field in class:XSLTAttributeDef
65 * @param errorType the type of error to issue if validation fails. One of FATAL, ERROR, WARNING.
87 * @param errorType the type of error to issue if validation fails. One of FATAL, ERROR, WARNING.
111 * @param errorType the type of error to issue if validation fails. One of FATAL, ERROR, WARNING.
142 * @param errorType the type of error to issue if validation fails. One of FATAL, ERROR, WARNING. *
176 * @param errorType the type of error to issue if validation fails. One of FATAL, ERROR, WARNING. * @param k1 The XSLT name of the enumerated value.
421 * @return one of XSLAttributeDef.FATAL, XSLAttributeDef.ERROR, XSLAttributeDef.WARNING
1657 case (ERROR):
/external/chromium/third_party/libjingle/source/talk/base/
H A Dlogging.cc32 #undef ERROR // wingdi.h macro
/external/libvpx/vp8/
H A Dvp8_cx_iface.c111 #undef ERROR macro
112 #define ERROR(str) do {\ macro
119 ERROR(#memb " out of range ["#lo".."#hi"]");\
124 ERROR(#memb " out of range [.."#hi"]");\
129 ERROR(#memb " out of range ["#lo"..]");\
133 if(!!((p)->memb) != (p)->memb) ERROR(#memb " expected boolean");\
173 ERROR("kf_min_dist not supported in auto mode, use 0 "
185 ERROR("cpu_used out of range [-16..-4] or [4..16]");
207 ERROR("rc_twopass_stats_in.buf not set.");
210 ERROR("rc_twopass_stats_i
[all...]
/external/protobuf/src/google/protobuf/compiler/
H A Dcommand_line_interface_unittest.cc283 GOOGLE_LOG(ERROR)
1282 enum ReturnCode { SUCCESS, ERROR }; enumerator in enum:google::protobuf::compiler::__anon8704::EncodeDecodeTest::ReturnCode
/external/webkit/Source/WebKit/gtk/webkit/
H A Dwebkitdownload.cpp43 #ifdef ERROR
44 #undef ERROR macro
91 ERROR, enumerator in enum:__anon13493
250 webkit_download_signals[ERROR] = g_signal_new("error",
/external/aac/libSBRenc/src/
H A Dsbr_def.h95 #define ERROR(a,b) 1 macro
/external/chromium/base/
H A Dlogging.h122 // PLOG(ERROR) << "Couldn't do foo";
123 // DPLOG(ERROR) << "Couldn't do foo";
124 // PLOG_IF(ERROR, cond) << "Couldn't do foo";
125 // DPLOG_IF(ERROR, cond) << "Couldn't do foo";
133 // are (in increasing order of severity) INFO, WARNING, ERROR, ERROR_REPORT,
141 // no error dialog for severity ERROR or below in normal mode.
144 // debug mode, ERROR in normal mode.
291 // LOG_DFATAL is LOG_FATAL in debug mode, ERROR in normal mode
328 // wingdi.h defines ERROR to be 0. When we call LOG(ERROR), i
333 #define ERROR macro
[all...]
/external/ipsec-tools/src/racoon/
H A Dracoonctl.c138 enum { UNSPEC, ERROR, INFO } level; enumerator in enum:evtmsg::__anon5822
146 { EVTT_DPD_TIMEOUT, "Peer not reachable anymore", ERROR },
147 { EVTT_PEER_NO_RESPONSE, "Peer not responding", ERROR },
148 { EVTT_PEER_DELETE, "Peer terminated security association", ERROR },
149 { EVTT_RACOON_QUIT, "Raccon terminated", ERROR },
150 { EVTT_OVERFLOW, "Event queue overflow", ERROR },
151 { EVTT_XAUTH_FAILED, "Xauth exchange failed", ERROR },
153 "(certificate problem?)", ERROR },
155 "(proposal problem?)", ERROR },
1385 if (evtmsg[i].level != ERROR)
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/parser/
H A DParser.java32 private final static int ERROR = 3; field in class:Parser
862 case ERROR:
4784 {{-1, ERROR, 2}, {2, SHIFT, 6}, {3, SHIFT, 7}, {4, SHIFT, 8}, {5, SHIFT, 9}, {6, SHIFT, 10}, {7, SHIFT, 11}, {10, SHIFT, 12}, {11, SHIFT, 13}, {12, SHIFT, 14}, {13, SHIFT, 15}, {14, SHIFT, 16}, {15, SHIFT, 17}, {16, SHIFT, 18}, {17, SHIFT, 19}, {18, SHIFT, 20}, {19, SHIFT, 21}, {20, SHIFT, 22}, {21, SHIFT, 23}, {22, SHIFT, 24}, {52, SHIFT, 25}, },
4785 {{-1, ERROR, 3}, {56, ACCEPT, -1}, },
4788 {{-1, ERROR, 6}, {53, SHIFT, 28}, },
4789 {{-1, ERROR, 7}, {53, SHIFT, 29}, },
4790 {{-1, ERROR, 8}, {53, SHIFT, 30}, },
4791 {{-1, ERROR, 9}, {53, SHIFT, 31}, },
4792 {{-1, ERROR, 10}, {53, SHIFT, 32}, },
4793 {{-1, ERROR, 1
[all...]
/external/kernel-headers/original/linux/
H A Da1026.h217 #define ERROR 0xffffffff macro
/external/guava/guava-tests/test/com/google/common/util/concurrent/
H A DFuturesTest.java1487 private static final Error ERROR = new Error("mymessage"); field in class:FuturesTest
1490 * We can't write "= immediateFailedFuture(ERROR)" because setException
1496 f.setException(ERROR);
1498 assertEquals(e, ERROR);
1570 assertEquals(ERROR, expected.getCause());
1652 assertEquals(ERROR, expected.getCause());
1736 assertEquals(ERROR, expected.getCause());

Completed in 1002 milliseconds

123