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

1234

/external/openssh/openbsd-compat/
H A Dbsd-cygwin_util.h37 #undef ERROR macro
/external/chromium_org/third_party/lcov/bin/
H A Dgenpng65 ERROR: required module GD.pm not found on this system (see www.cpan.org). label
186 or die("ERROR: cannot open $filename!\n");
271 or die("ERROR: cannot allocate overview image!\n");
371 or die("ERROR: cannot write png file $filename!\n");
/external/chromium_org/third_party/protobuf/src/google/protobuf/testing/
H A Dgoogletest.h66 // ScopedMemoryLog refers to LOGLEVEL_ERROR as just ERROR.
67 #undef ERROR // defend against promiscuous windows.h macro
68 static const LogLevel ERROR = LOGLEVEL_ERROR; member in namespace:google::protobuf
71 // Receives copies of all LOG(ERROR) messages while in scope. Sample usage:
75 // const vector<string>& warnings = log.GetMessages(ERROR);
/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/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/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/chromium_org/chrome/browser/resources/file_manager/foreground/js/
H A Dapp_installer.js33 ERROR: 'AppInstaller.error'
74 AppInstaller.Result.ERROR;
/external/chromium_org/third_party/cld/base/
H A Dlog_severity.h16 const int INFO = 0, WARNING = 1, ERROR = 2, FATAL = 3, NUM_SEVERITIES = 4; variable
18 // DFATAL is FATAL in debug mode, ERROR in normal mode
20 #define DFATAL_LEVEL 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/smack/src/org/apache/harmony/javax/security/auth/callback/
H A DTextOutputCallback.java32 public static final int ERROR = 2; field in class:TextOutputCallback
39 if (messageType > ERROR || messageType < INFORMATION) {
H A DConfirmationCallback.java48 public static final int ERROR = 2; field in class:ConfirmationCallback
64 if (messageType > ERROR || messageType < INFORMATION) {
94 if (messageType > ERROR || messageType < INFORMATION) {
123 if (messageType > ERROR || messageType < INFORMATION) {
159 if (messageType > ERROR || messageType < INFORMATION) {
/external/smack/src/org/jivesoftware/smackx/pubsub/packet/
H A DPubSubNamespace.java25 ERROR("errors"), enum constant in enum:PubSubNamespace
/external/iputils/
H A Dtftp.h50 #define ERROR 05 /* error code */ macro
/external/mtpd/
H A Dmtpd.h37 ERROR = 3, enumerator in enum:log_level
/external/smack/src/org/jivesoftware/smack/packet/
H A DIQ.java153 * Convenience method to create a new {@link Type#ERROR IQ.Type.ERROR} IQ
158 * <li>The type set to {@link Type#ERROR IQ.Type.ERROR}.
168 * @return a new {@link Type#ERROR IQ.Type.ERROR} IQ based on the originating IQ.
180 result.setType(Type.ERROR);
195 * <li>IQ.Type.ERROR
203 public static final Type ERROR = new Type("error"); field in class:IQ.Type
223 else if (ERROR
[all...]
/external/tcpdump/
H A Dtftp.h52 #define ERROR 05 /* error code */ macro
/external/chromium_org/content/common/gpu/media/
H A Dandroid_video_decode_accelerator.h54 ERROR, enumerator in enum:content::AndroidVideoDecodeAccelerator::State
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/
H A Dlogger.h38 // ERROR seems to be defined on MSVC, therefore don't overwrite it.
39 #ifndef ERROR
40 ERROR = LOG_ERROR, enumerator in enum:i18n::phonenumbers::__anon12262
/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_org/chrome/common/extensions/docs/examples/api/devtools/network/chrome-firephp/
H A Ddevtools.js13 ERROR: "error",
92 case "ERROR":
/external/chromium_org/third_party/eyesfree/src/android/java/src/com/googlecode/eyesfree/braille/translate/
H A DTranslatorManager.java58 public static final int ERROR = -1; field in class:TranslatorManager
70 * or the service is not available {@code ERROR}.
247 onInit(ERROR);
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
H A Dlogging.h79 // INFO == -1, WARNING == -2, ERROR == -3, FATAL == -4
196 #ifdef ERROR
197 #undef ERROR // may conflict with ERROR macro on windows macro
199 enum LogSeverity {INFO = -1, WARNING = -2, ERROR = -3, FATAL = -4}; enumerator in enum:LogSeverity
222 case ERROR: {
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
H A Dlogging.h74 // INFO == -1, WARNING == -2, ERROR == -3, FATAL == -4
191 #ifdef ERROR
192 #undef ERROR // may conflict with ERROR macro on windows macro
194 enum LogSeverity {INFO = -1, WARNING = -2, ERROR = -3, FATAL = -4}; enumerator in enum:LogSeverity

Completed in 766 milliseconds

1234