/external/python/cpython3/Lib/unittest/test/ |
D | _test_warnings.py | 18 warnings.warn('rw', RuntimeWarning) 38 warnings.warn('dw', DeprecationWarning) 39 warnings.warn('dw', DeprecationWarning) 40 warnings.warn('dw', DeprecationWarning) 43 warnings.warn('iw', ImportWarning) 44 warnings.warn('iw', ImportWarning) 45 warnings.warn('iw', ImportWarning) 49 warnings.warn('uw') 50 warnings.warn('uw') 51 warnings.warn('uw')
|
/external/slf4j/slf4j-api/src/main/java/org/slf4j/helpers/ |
D | SubstituteLogger.java | 201 public void warn(String msg) { in warn() method in SubstituteLogger 202 delegate().warn(msg); in warn() 205 public void warn(String format, Object arg) { in warn() method in SubstituteLogger 206 delegate().warn(format, arg); in warn() 209 public void warn(String format, Object arg1, Object arg2) { in warn() method in SubstituteLogger 210 delegate().warn(format, arg1, arg2); in warn() 213 public void warn(String format, Object... arguments) { in warn() method in SubstituteLogger 214 delegate().warn(format, arguments); in warn() 217 public void warn(String msg, Throwable t) { in warn() method in SubstituteLogger 218 delegate().warn(msg, t); in warn() [all …]
|
D | MarkerIgnoringBase.java | 118 public void warn(Marker marker, String msg) { in warn() method in MarkerIgnoringBase 119 warn(msg); in warn() 122 public void warn(Marker marker, String format, Object arg) { in warn() method in MarkerIgnoringBase 123 warn(format, arg); in warn() 126 public void warn(Marker marker, String format, Object arg1, Object arg2) { in warn() method in MarkerIgnoringBase 127 warn(format, arg1, arg2); in warn() 130 public void warn(Marker marker, String format, Object... arguments) { in warn() method in MarkerIgnoringBase 131 warn(format, arguments); in warn() 134 public void warn(Marker marker, String msg, Throwable t) { in warn() method in MarkerIgnoringBase 135 warn(msg, t); in warn()
|
/external/ltp/testcases/kernel/fs/ftest/ |
D | ftest06.c | 260 #define warn(val,m1,m2) if ((val) < 0) dowarn(me,m1,m2) macro 281 warn(val, "rmdir", fname); in crfile() 284 warn(fd, "creating", fname); in crfile() 287 warn(seekval, "lseek64", 0); in crfile() 290 warn(val, "write", 0); in crfile() 293 warn(seekval, "lseek64", 0); in crfile() 296 warn(val, "read", 0); in crfile() 302 warn(val, "close", 0); in crfile() 344 warn(val, "mkdir", dir); in fussdir() 353 warn(val, "chdir", dir); in fussdir() [all …]
|
D | ftest02.c | 241 #define warn(val,m1,m2) if ((val) < 0) dowarn(me,m1,m2) macro 260 warn(val, "rmdir", fname); in crfile() 263 warn(fd, "creating", fname); in crfile() 266 warn(val, "lseek", 0); in crfile() 269 warn(val, "write", 0); in crfile() 272 warn(val, "lseek", 0); in crfile() 275 warn(val, "read", 0); in crfile() 281 warn(val, "close", 0); in crfile() 326 warn(val, "mkdir", dir); in fussdir() 335 warn(val, "chdir", dir); in fussdir() [all …]
|
/external/clang/test/SemaObjC/ |
D | warn-missing-super.m | 10 // Root class, shouldn't warn 13 // Root class, shouldn't warn 36 [super dealloc]; // Shouldn't warn 39 [super finalize]; // Shouldn't warn 44 // CHECK: warn-missing-super.m:24:1: warning: method possibly missing a [super dealloc] call 48 // CHECK-GC: warn-missing-super.m:24:1: warning: method possibly missing a [super dealloc] call 49 // CHECK-GC: warn-missing-super.m:26:1: warning: method possibly missing a [super finalize] call 53 // CHECK-GC-ONLY: warn-missing-super.m:26:1: warning: method possibly missing a [super finalize] ca… 57 // CHECK-ARC: warn-missing-super.m:36:10: error: ARC forbids explicit message send of 'dealloc'
|
/external/testng/src/main/java/org/testng/internal/ |
D | PropertyUtils.java | 23 …LOGGER.warn("Cannot set property " + name + " with value " + value + ". The target instance is nul… in setProperty() 29 …LOGGER.warn("Cannot set property " + name + " with value " + value + ". Property class could not b… in setProperty() 40 …LOGGER.warn("Cannot retrieve property class for " + propertyName + ". Target instance class is nul… in getPropertyType() 49 LOGGER.warn("Cannot retrieve property " + propertyName + ". Class is null"); in getPropertyDescriptor() 61 LOGGER.warn("Cannot retrieve property " + propertyName + ". Cause is: " + ie); in getPropertyDescriptor() 69 … LOGGER.warn("Cannot set property " + name + " with value " + value + ". Targe instance is null"); in setPropertyRealValue() 75 … LOGGER.warn("Cannot set property " + name + " with value " + value + ". Property does not exist"); in setPropertyRealValue() 83 LOGGER.warn("Cannot set property " + name + " with value " + value + ". Cause " + iae); in setPropertyRealValue()
|
/external/python/cpython3/Lib/test/test_warnings/ |
D | __init__.py | 100 self.assertRaises(UserWarning, self.module.warn, 108 self.module.warn(message, UserWarning) 126 self.module.warn("FilterTests.test_ignore", UserWarning) 135 self.module.warn(message, UserWarning) 148 self.module.warn(message, UserWarning) 150 self.module.warn(message, UserWarning) 159 self.module.warn(message, UserWarning) 180 self.module.warn(message, UserWarning) 195 self.module.warn(message, UserWarning) 198 self.module.warn(message, UserWarning) [all …]
|
/external/skqp/infra/bots/recipe_modules/swarming/resources/ |
D | collect_task.py | 56 logging.warn('task_output_dir %r already exists!', task_output_dir) 64 logging.warn('task_output_dir existing content: %r', existing_contents) 71 logging.warn('collect_cmd had non-zero return code: %s', collect_result) 83 logging.warn( 97 logging.warn( 104 logging.warn( 120 logging.warn('Summary json file missing: %r', summary_json_file) 129 logging.warn('merge_cmd had non-zero return code: %s', merge_result) 132 logging.warn(
|
/external/skia/infra/bots/recipe_modules/swarming/resources/ |
D | collect_task.py | 56 logging.warn('task_output_dir %r already exists!', task_output_dir) 64 logging.warn('task_output_dir existing content: %r', existing_contents) 71 logging.warn('collect_cmd had non-zero return code: %s', collect_result) 83 logging.warn( 97 logging.warn( 104 logging.warn( 120 logging.warn('Summary json file missing: %r', summary_json_file) 129 logging.warn('merge_cmd had non-zero return code: %s', merge_result) 132 logging.warn(
|
/external/slf4j/slf4j-api/src/main/java/org/slf4j/ |
D | Logger.java | 481 public void warn(String msg); in warn() method 493 public void warn(String format, Object arg); in warn() method 509 public void warn(String format, Object... arguments); in warn() method 522 public void warn(String format, Object arg1, Object arg2); in warn() method 531 public void warn(String msg, Throwable t); in warn() method 549 public void warn(Marker marker, String msg); in warn() method 559 public void warn(Marker marker, String format, Object arg); in warn() method 571 public void warn(Marker marker, String format, Object arg1, Object arg2); in warn() method 582 public void warn(Marker marker, String format, Object... arguments); in warn() method 592 public void warn(Marker marker, String msg, Throwable t); in warn() method
|
/external/clang/test/Analysis/ |
D | NewDelete-intersections.mm | 19 free(&i); // no warn 22 free(++p1); // no warn 26 free(p2); // no warn 28 int *p3 = (int *)malloc(sizeof(int)); // no warn 32 int j = *p4; // no warn 35 free(p5); // no warn 40 delete p1; // no warn 43 delete p2; // no warn 48 *p1 = 1; // no warn
|
/external/slf4j/slf4j-jcl/src/test/java/org/slf4j/ |
D | InvocationTest.java | 77 logger.warn("Hello world 3."); in test2() 78 logger.warn("Hello world 3", e); in test2() 89 logger.warn(null); in testNull() 95 logger.warn(null, e); in testNull() 104 logger.warn(blue, "hello"); in testMarker() 109 logger.warn(blue, "hello {}", "world"); in testMarker() 114 logger.warn(blue, "hello {} and {} ", "world", "universe"); in testMarker()
|
/external/slf4j/slf4j-simple/src/test/java/org/slf4j/ |
D | InvocationTest.java | 75 logger.warn("Hello world 3."); in test2() 76 logger.warn("Hello world 3", e); in test2() 95 logger.warn(null); in testNull() 101 logger.warn(null, e); in testNull() 110 logger.warn(blue, "hello"); in testMarker() 115 logger.warn(blue, "hello {}", "world"); in testMarker() 120 logger.warn(blue, "hello {} and {} ", "world", "universe"); in testMarker()
|
/external/slf4j/slf4j-nop/src/test/java/org/slf4j/ |
D | InvocationTest.java | 71 logger.warn("Hello world 3."); in test2() 72 logger.warn("Hello world 3", e); in test2() 83 logger.warn(null); in testNull() 89 logger.warn(null, e); in testNull() 98 logger.warn(blue, "hello"); in testMarker() 103 logger.warn(blue, "hello {}", "world"); in testMarker() 108 logger.warn(blue, "hello {} and {} ", "world", "universe"); in testMarker()
|
/external/python/cpython2/Lib/test/ |
D | test_warnings.py | 93 self.assertRaises(UserWarning, self.module.warn, 101 self.module.warn("FilterTests.test_ignore", UserWarning) 110 self.module.warn(message, UserWarning) 112 self.module.warn(message, UserWarning) 122 self.module.warn(message, UserWarning) 137 self.module.warn(message, UserWarning) 140 self.module.warn(message, UserWarning) 164 self.assertRaises(UserWarning, self.module.warn, 176 self.module.warn("FilterTests.test_ordering", UserWarning) 187 self.assertRaises(UserWarning, self.module.warn, 'convert to error') [all …]
|
/external/slf4j/slf4j-jcl/src/main/java/org/slf4j/impl/ |
D | JCLLoggerAdapter.java | 355 public void warn(String msg) { in warn() method in JCLLoggerAdapter 356 log.warn(msg); in warn() 373 public void warn(String format, Object arg) { in warn() method in JCLLoggerAdapter 376 log.warn(ft.getMessage(), ft.getThrowable()); in warn() 396 public void warn(String format, Object arg1, Object arg2) { in warn() method in JCLLoggerAdapter 399 log.warn(ft.getMessage(), ft.getThrowable()); in warn() 415 public void warn(String format, Object... arguments) { in warn() method in JCLLoggerAdapter 418 log.warn(ft.getMessage(), ft.getThrowable()); in warn() 432 public void warn(String msg, Throwable t) { in warn() method in JCLLoggerAdapter 433 log.warn(msg, t); in warn()
|
/external/llvm/utils/abtest/ |
D | 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/python/cpython3/Lib/distutils/command/ |
D | check.py | 59 def warn(self, msg): member in check 62 return Command.warn(self, msg) 96 self.warn("missing required meta-data: %s" % ', '.join(missing)) 99 self.warn("missing meta-data: if 'author' supplied, " + 103 self.warn("missing meta-data: if 'maintainer' supplied, " + 106 self.warn("missing meta-data: either (author and author_email) " + 119 self.warn(warning)
|
/external/python/cpython2/Lib/distutils/command/ |
D | check.py | 61 def warn(self, msg): member in 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/ltp/testcases/kernel/controllers/cpuset/cpuset_load_balance_test/ |
D | cpuset_cpu_hog.c | 67 warn("open fifo failed"); in report_result() 72 warn("write fifo failed."); in report_result() 203 warn("get latest cpu failed.\n"); in cpu_hog() 210 warn("the task(%d) is running on the cpu(%d) excluded" in cpu_hog() 258 warn("initialize failed"); in main() 264 warn("sigemptyset failed"); in main() 271 warn("alloc for child pids failed"); in main() 284 warn("fork test tasks failed"); in main()
|
/external/apache-xml/src/main/java/org/apache/xalan/transformer/ |
D | MsgMgr.java | 90 public void warn(SourceLocator srcLctr, String msg) throws TransformerException in warn() method in MsgMgr 92 warn(srcLctr, null, null, msg, null); in warn() 106 public void warn(SourceLocator srcLctr, String msg, Object[] args) throws TransformerException in warn() method in MsgMgr 108 warn(srcLctr, null, null, msg, args); in warn() 124 public void warn(SourceLocator srcLctr, Node styleNode, Node sourceNode, String msg) in warn() method in MsgMgr 127 warn(srcLctr, styleNode, sourceNode, msg, null); in warn() 143 …public void warn(SourceLocator srcLctr, Node styleNode, Node sourceNode, String msg, Object args[]) in warn() method in MsgMgr
|
/external/ppp/pppd/plugins/ |
D | passprompt.c | 42 warn("Can't make a pipe for %s", promptprog); in promptpass() 46 warn("Can't fork to run %s", promptprog); in promptpass() 90 warn("error waiting for %s: %m", promptprog); in promptpass() 99 warn("%s terminated abnormally", promptprog); in promptpass() 101 warn("%s exited with code %d", promptprog, WEXITSTATUS(status)); in promptpass()
|
/external/python/cpython3/Lib/ |
D | smtpd.py | 89 from warnings import warn 191 warn("Access to __server attribute on SMTPChannel is deprecated, " 196 warn("Setting __server attribute on SMTPChannel is deprecated, " 202 warn("Access to __line attribute on SMTPChannel is deprecated, " 207 warn("Setting __line attribute on SMTPChannel is deprecated, " 213 warn("Access to __state attribute on SMTPChannel is deprecated, " 218 warn("Setting __state attribute on SMTPChannel is deprecated, " 224 warn("Access to __greeting attribute on SMTPChannel is deprecated, " 229 warn("Setting __greeting attribute on SMTPChannel is deprecated, " 235 warn("Access to __mailfrom attribute on SMTPChannel is deprecated, " [all …]
|
/external/python/cpython2/Lib/distutils/ |
D | filelist.py | 30 def __init__(self, warn=None, debug_print=None): argument 127 log.warn("warning: no files found matching '%s'", 134 log.warn(("warning: no previously-included files " 141 log.warn(("warning: no files found matching '%s' " + 148 log.warn(("warning: no previously-included files matching " 157 log.warn(("warning: no files found matching '%s' " + 166 log.warn(("warning: no previously-included files matching " 173 log.warn("warning: no directories found matching '%s'", 179 log.warn(("no previously-included directories found " +
|