HomeSort by relevance Sort by last modified time
    Searched full:warn (Results 226 - 250 of 5435) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Frontend/
verify-ignore-unexpected.c 25 // RUN: | FileCheck -check-prefix=CHECK-WARN %s
49 // CHECK-WARN: no expected directives found
50 // CHECK-WARN-NEXT: 'error' diagnostics seen but not expected
51 // CHECK-WARN-NEXT: Line {{[0-9]+}}: redefinition of 'x'
52 // CHECK-WARN-NEXT: 'note' diagnostics seen but not expected
53 // CHECK-WARN-NEXT: Line {{[0-9]+}}: previous definition is here
54 // CHECK-WARN-NEXT: 3 errors generated.
backend-diagnostic.c 7 // RUN: not %clang_cc1 %s -mllvm -warn-stack-size=0 -no-integrated-as -S -o - -triple=i386-apple-darwin 2> %t.err
9 // RUN: not %clang_cc1 %s -mllvm -warn-stack-size=0 -no-integrated-as -S -o - -triple=i386-apple-darwin -Werror=frame-larger-than= 2> %t.err
11 // RUN: not %clang_cc1 %s -mllvm -warn-stack-size=0 -no-integrated-as -S -o - -triple=i386-apple-darwin -Wno-frame-larger-than= 2> %t.err
  /external/python/cpython2/Lib/distutils/command/
check.py 61 def warn(self, msg): member in class:check
64 return Command.warn(self, msg)
98 self.warn("missing required meta-data: %s" % ', '.join(missing))
101 self.warn("missing meta-data: if 'author' supplied, " +
105 self.warn("missing meta-data: if 'maintainer' supplied, " +
108 self.warn("missing meta-data: either (author and author_email) " +
123 self.warn(warning)
  /external/slf4j/log4j-over-slf4j/compatibility/src/main/java/test/
LoggerTest.java 104 log4jLogger.warn(null);
108 log4jLogger.warn("warn message");
136 log4jLogger.warn(null, e);
140 log4jLogger.warn("warn message", e);
160 log4jLogger.log("x", Level.WARN, "x", null);
  /external/slf4j/log4j-over-slf4j/src/main/java/org/apache/log4j/
Level.java 31 <code>WARN</code>, <code>INFO</code>, <code>DEBUG</code> and
68 The <code>WARN</code> level designates potentially harmful situations.
70 final static public Level WARN = new Level(WARN_INT, "WARN", 4);
138 return Level.WARN;
169 if (s.equals("WARN"))
170 return Level.WARN;
  /external/slf4j/slf4j-jdk14/src/test/java/org/slf4j/
InvocationTest.java 102 logger.warn("Hello world 3.");
103 logger.warn("Hello world 3", e);
115 logger.warn(null);
121 logger.warn(null, e);
131 logger.warn(blue, "hello");
136 logger.warn(blue, "hello {}", "world");
141 logger.warn(blue, "hello {} and {} ", "world", "universe");
  /external/slf4j/slf4j-log4j12/src/test/java/org/slf4j/
InvocationTest.java 84 logger.warn("Hello world 3.");
85 logger.warn("Hello world 3", e);
98 logger.warn(null);
104 logger.warn(null, e);
127 logger.warn(blue, "hello");
132 logger.warn(blue, "hello {}", "world");
137 logger.warn(blue, "hello {} and {} ", "world", "universe");
  /prebuilts/gdb/darwin-x86/lib/python2.7/distutils/command/
check.py 61 def warn(self, msg): member in class:check
64 return Command.warn(self, msg)
98 self.warn("missing required meta-data: %s" % ', '.join(missing))
101 self.warn("missing meta-data: if 'author' supplied, " +
105 self.warn("missing meta-data: if 'maintainer' supplied, " +
108 self.warn("missing meta-data: either (author and author_email) " +
123 self.warn(warning)
  /prebuilts/gdb/linux-x86/lib/python2.7/distutils/command/
check.py 61 def warn(self, msg): member in class:check
64 return Command.warn(self, msg)
98 self.warn("missing required meta-data: %s" % ', '.join(missing))
101 self.warn("missing meta-data: if 'author' supplied, " +
105 self.warn("missing meta-data: if 'maintainer' supplied, " +
108 self.warn("missing meta-data: either (author and author_email) " +
123 self.warn(warning)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
check.py 61 def warn(self, msg): member in class:check
64 return Command.warn(self, msg)
98 self.warn("missing required meta-data: %s" % ', '.join(missing))
101 self.warn("missing meta-data: if 'author' supplied, " +
105 self.warn("missing meta-data: if 'maintainer' supplied, " +
108 self.warn("missing meta-data: either (author and author_email) " +
123 self.warn(warning)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
check.py 61 def warn(self, msg): member in class:check
64 return Command.warn(self, msg)
98 self.warn("missing required meta-data: %s" % ', '.join(missing))
101 self.warn("missing meta-data: if 'author' supplied, " +
105 self.warn("missing meta-data: if 'maintainer' supplied, " +
108 self.warn("missing meta-data: either (author and author_email) " +
123 self.warn(warning)
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
EdkLogger.py 32 WARN = 30
44 DEBUG_6, DEBUG_7, DEBUG_8, DEBUG_9, VERBOSE, WARN, INFO,
51 # For VERBOSE, INFO, WARN level
59 # String templates for ERROR/WARN/DEBUG log message
67 # Flag used to take WARN as ERROR.
117 def warn(ToolName, Message, File=None, Line=None, ExtraData=None): function
118 if _InfoLogger.level > WARN:
145 _InfoLogger.log(WARN, LogText)
218 # For VERBOSE, INFO, WARN level
  /external/clang/test/Analysis/
test-after-div-zero.c 74 x = var / 77; // <- assignment => don't warn
81 x = var / 77; // <- assignment => don't warn
88 x--; // <- assignment => don't warn
95 x++; // <- assignment => don't warn
103 do_something_ptr(&x); // <- pass address of x to function => don't warn
126 } // TODO warn here
134 } // TODO warn here
161 while (x != 0) { // <- do not warn
174 } // TODO warn here
  /external/llvm/utils/abtest/
abtest.py 66 def warn(message): function
75 warn("Missing end of function %s" % (in_function,))
82 warn("End %s does not match begin %s" % (function_name, in_function))
99 warn("Missing end of function %s" % (in_function,))
108 warn("End %s does not match begin %s" % (function_name, in_function))
143 warn("There is no corresponding file to '%s' in %s" \
170 warn("Couldn't find any function in %s, missing annotations?" % (goodfile,))
174 warn("Couldn't find any function in %s, missing annotations?" % (badfile,))
183 warn("Function '%s' missing from bad file" % func)
  /external/shflags/test_results/1.2.0/
Solaris-10u10.txt 36 test:WARN Standard version of getopt found. Enhanced tests will be skipped.
59 test:WARN Shell built-ins not supported. Some tests will be skipped.
79 test:WARN Standard version of getopt found. Enhanced tests will be skipped.
110 test:WARN Standard version of getopt found. Enhanced tests will be skipped.
152 test:WARN Standard version of getopt found. Enhanced tests will be skipped.
188 test:WARN Standard version of getopt found. Enhanced tests will be skipped.
230 test:WARN Standard version of getopt found. Enhanced tests will be skipped.
266 test:WARN Standard version of getopt found. Enhanced tests will be skipped.
308 test:WARN Standard version of getopt found. Enhanced tests will be skipped.
Solaris-8u7.txt 36 test:WARN Standard version of getopt found. Enhanced tests will be skipped.
59 test:WARN Shell built-ins not supported. Some tests will be skipped.
79 test:WARN Standard version of getopt found. Enhanced tests will be skipped.
110 test:WARN Standard version of getopt found. Enhanced tests will be skipped.
152 test:WARN Standard version of getopt found. Enhanced tests will be skipped.
188 test:WARN Standard version of getopt found. Enhanced tests will be skipped.
230 test:WARN Standard version of getopt found. Enhanced tests will be skipped.
266 test:WARN Standard version of getopt found. Enhanced tests will be skipped.
308 test:WARN Standard version of getopt found. Enhanced tests will be skipped.
Solaris-9u8.txt 36 test:WARN Standard version of getopt found. Enhanced tests will be skipped.
59 test:WARN Shell built-ins not supported. Some tests will be skipped.
79 test:WARN Standard version of getopt found. Enhanced tests will be skipped.
110 test:WARN Standard version of getopt found. Enhanced tests will be skipped.
152 test:WARN Standard version of getopt found. Enhanced tests will be skipped.
188 test:WARN Standard version of getopt found. Enhanced tests will be skipped.
230 test:WARN Standard version of getopt found. Enhanced tests will be skipped.
266 test:WARN Standard version of getopt found. Enhanced tests will be skipped.
308 test:WARN Standard version of getopt found. Enhanced tests will be skipped.
  /prebuilts/tools/common/m2/repository/com/esotericsoftware/minlog/minlog/1.2/
minlog-1.2.jar 
  /device/google/contexthub/util/nanotool/
log.h 33 #define LOGW(fmt, ...) Log::Warn(fmt, ##__VA_ARGS__)
55 Warn,
67 static void Warn(const char *format, ...);
  /device/linaro/bootloader/arm-trusted-firmware/tools/cert_create/include/
debug.h 42 * WARN("Warning %s.\n", "message") -> WARNING: Warning message.
66 # define WARN(...) printf("WARNING: " __VA_ARGS__)
68 # define WARN(...)
  /external/apache-http/src/org/apache/commons/logging/impl/
NoOpLog.java 57 public void warn(Object message) { } method in class:NoOpLog
59 public void warn(Object message, Throwable t) { } method in class:NoOpLog
105 * Warn is never enabled.
  /external/autotest/client/profilers/powertop/src/
cpufreq.c 97 /* if the governors are inconsistent, warn */
105 /* if the governor is set to userspace, also warn */
109 /* if the governor is set to performance, also warn */
  /external/autotest/server/site_tests/firmware_PDConnect/
firmware_PDConnect.py 38 logging.warn('Device does not support disconnect/connect')
79 logging.warn('device cant send power role swap command')
84 logging.warn('Device pair could not role swap, ending test')
  /external/autotest/server/site_tests/firmware_PDResetHard/
firmware_PDResetHard.py 36 logging.warn('Device cant hard reset ... skipping')
75 logging.warn('Power role not swapped, ending test')
78 logging.warn('device cant send power role swap command, end test')
  /external/autotest/server/site_tests/firmware_PDResetSoft/
firmware_PDResetSoft.py 37 logging.warn('Device cant soft reset ... skipping')
76 logging.warn('Power role not swapped, ending test')
79 logging.warn('device cant send power role swap command, end test')

Completed in 2978 milliseconds

1 2 3 4 5 6 7 8 91011>>