HomeSort by relevance Sort by last modified time
    Searched defs:ERROR (Results 1 - 25 of 1030) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/pcre/dist/
makevp.bat 39 IF ERRORLEVEL 1 GOTO ERROR
46 IF ERRORLEVEL 1 GOTO ERROR
49 IF ERRORLEVEL 1 GOTO ERROR
51 IF ERRORLEVEL 1 GOTO ERROR
60 :ERROR
62 echo Error while compiling PCRE. Aborting...
  /external/chromium-trace/catapult/devil/devil/constants/
exit_codes.py 7 ERROR = 1
  /external/squashfs-tools/kernel/fs/squashfs/
squashfs.h 26 #define ERROR(s, args...) pr_err("SQUASHFS error: "s, ## args)
  /external/valgrind/coregrind/
vgdb.h 58 #define ERROR(errno, ...) ((errno == 0 ? 0 : perror("syscall failed")), \
61 /* same as ERROR, but also exits with status 1 */
93 If an error occurs, resets the valgrind process
  /external/opencv3/platforms/winrt/
build_all.bat 19 goto ERROR
81 @if errorlevel 1 goto :ERROR
84 :ERROR
  /system/core/init/
log.h 22 #define ERROR(x...) init_klog_write(KLOG_ERROR_LEVEL, x)
  /system/extras/squashfs_utils/
squashfs_utils.c 31 #define ERROR(x...) fprintf(stderr, x)
33 #define ERROR(x...) KLOG_ERROR("squashfs_utils", x)
68 ERROR("Error opening block device (%s)\n", strerror(errno));
74 ERROR("Error reading superblock\n");
80 ERROR("Not a valid squashfs filesystem\n");
  /build/kati/
log.h 66 #define ERROR(...) do { \
74 #define CHECK(c) if (!(c)) ERROR("%s:%d: %s", __FILE__, __LINE__, #c)
  /cts/libs/vogar-expect/src/vogar/
Result.java 32 ERROR,
  /cts/tools/dasm/src/java_cup/
parse_action.java 5 * Full entries will either be SHIFT(state_num), REDUCE(production), or ERROR.
6 * Objects of this base class will default to ERROR, while the other two
32 /** Constant for action type -- error action. */
33 public static final int ERROR = 0;
49 /** Quick access to the type -- base class defaults to error. */
50 public int kind() {return ERROR;}
57 /* we match all error actions */
58 return other != null && other.kind() == ERROR;
83 public String toString() {return "ERROR";}
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
ValidationType.java 26 ERROR,
32 case ERROR:
33 return Optional.of(Diagnostic.Kind.ERROR);
  /external/protobuf/src/google/protobuf/testing/
googletest.h 66 // ScopedMemoryLog refers to LOGLEVEL_ERROR as just ERROR.
67 #undef ERROR // defend against promiscuous windows.h
68 static const LogLevel ERROR = LOGLEVEL_ERROR;
71 // Receives copies of all LOG(ERROR) messages while in scope. Sample usage:
75 // const vector<string>& warnings = log.GetMessages(ERROR);
85 const vector<string>& GetMessages(LogLevel error);
  /external/squashfs-tools/kernel-2.4/fs/squashfs/
squashfs.h 33 #define ERROR(s, args...) printk(KERN_ERR "SQUASHFS error: "s, ## args)
37 printk(KERN_ERR "SQUASHFS error: "s, ## args);\
  /external/squashfs-tools/squashfs-tools/
error.h 24 * error.h
48 #define ERROR(s, args...) \
78 progressbar_error("FATAL ERROR:" s, ##args); \
86 progressbar_error("FATAL ERROR: Out of memory (%s)\n", \
  /external/vogar/src/vogar/
Result.java 32 ERROR,
XmlReportConstants.java 23 public static final String ERROR = "error";
  /packages/apps/Messaging/build/
colorize_errors.py 16 # Given an input stream look for Error: and Warning: lines and colorize those to
27 ERROR = re.compile(r"^Error:")
32 if ERROR.match(line):
  /build/tools/fs_get_stats/
fs_get_stats.c 10 #define ERROR(fmt,args...) \
12 fprintf(stderr, "%s:%d: ERROR: " fmt, \
47 ERROR("Invalid arguments\n");
54 ERROR("current permissions must be a number. Got '%s'.\n", argv[1]);
  /development/tools/yuv420sp2rgb/
debug.h 79 #define ERROR PRINT
  /external/autotest/client/tests/monotonic_time/src/
logging.h 23 #define ERROR(err, fmt, args...) msg(MSG_ERROR, err, fmt, ##args)
  /external/markdown/markdown/
commandline.py 12 from logging import DEBUG, INFO, WARN, ERROR, CRITICAL
  /system/core/adb/
line_printer.h 29 enum LineType { INFO, WARNING, ERROR };
32 /// WARNING and ERROR appear on a line to themselves.
  /art/tools/dexfuzz/src/dexfuzz/
Log.java 23 private static LogTag threshold = LogTag.ERROR;
32 ERROR,
41 return (threshold.ordinal() < LogTag.ERROR.ordinal());
56 public static void error(String msg) { method in class:Log
57 log(LogTag.ERROR, msg);
71 * Reports error and then terminates the program.
74 error(msg);
  /frameworks/base/core/java/android/webkit/
ConsoleMessage.java 22 * <code>console.log('...')</code>) or a JavaScript error on the page. To receive notifications
33 ERROR,
  /prebuilts/gdb/darwin-x86/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

Completed in 6669 milliseconds

1 2 3 4 5 6 7 8 91011>>