/external/libcups/systemv/ |
D | cupstestppd.c | 92 int warn); 95 int warn); 97 int warn); 99 int verbose, int warn); 101 int verbose, int warn); 102 static int check_sizes(ppd_file_t *ppd, int errors, int verbose, int warn); 104 int warn); 109 int verbose, int warn); 128 int warn; /* Which errors to just warn about */ in main() local 166 warn = WARN_NONE; in main() [all …]
|
/external/llvm-project/lld/test/ELF/ |
D | warn-backrefs.s | 11 # RUN: ld.lld --fatal-warnings --warn-backrefs %t1.o %t2.a -o /dev/null 12 # RUN: ld.lld --fatal-warnings --warn-backrefs %t1.o --start-lib %t2.o --end-lib -o /dev/null 15 # RUN: ld.lld --fatal-warnings --warn-backrefs %t1.lds -o /dev/null 18 ## Warn unless the archive is excluded by --warn-backrefs-exclude 20 # RUN: ld.lld --warn-backrefs %t2.a %t1.o -o /dev/null 2>&1 | FileCheck %s 21 # RUN: ld.lld --warn-backrefs %t2.a '-(' %t1.o '-)' -o /dev/null 2>&1 | FileCheck %s 22 # RUN: ld.lld --warn-backrefs --warn-backrefs-exclude='*3.a' %t2.a %t1.o -o /dev/null 2>&1 | FileCh… 23 # RUN: ld.lld --fatal-warnings --warn-backrefs --warn-backrefs-exclude='*2.a(*2.o)' %t2.a %t1.o -o … 24 # RUN: ld.lld --fatal-warnings --warn-backrefs --warn-backrefs-exclude '*2.a(*2.o)' \ 25 # RUN: --warn-backrefs-exclude not_exist %t2.a %t1.o -o /dev/null [all …]
|
D | warn-common.s | 3 # RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %p/Inputs/warn-common.s -o %t2.o 4 # RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %p/Inputs/warn-common2.s -o %t3.o 6 ## Report multiple commons if warn-common is specified 7 # RUN: ld.lld --warn-common %t1.o %t2.o -o %t.out 2>&1 | FileCheck %s --check-prefix=WARN 10 # RUN: ld.lld --fatal-warnings --warn-common --no-warn-common %t1.o %t2.o -o %t.out 13 # RUN: ld.lld --warn-common %t1.o %t3.o -o %t.out 2>&1 | FileCheck %s --check-prefix=OVER 17 # RUN: ld.lld --warn-common %t3.o %t1.o -o %t.out 2>&1 | FileCheck %s --check-prefix=OVER
|
/external/antlr/runtime/Python3/ |
D | ez_setup.py | 69 log.warn('Extracting in %s', tmpdir) 80 log.warn('Now working in %s', subdir) 83 log.warn('Installing Distribute') 85 log.warn('Something went wrong during the installation.') 86 log.warn('See the error message above.') 94 log.warn('Extracting in %s', tmpdir) 105 log.warn('Now working in %s', subdir) 108 log.warn('Building a Distribute egg in %s', to_dir) 114 log.warn(egg) 192 log.warn("Downloading %s", url) [all …]
|
/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/llvm-project/clang/docs/analyzer/ |
D | checkers.rst | 62 f(p); // warn 78 int x = p[0]; // warn 84 *p = 0; // warn 95 int k = pc->x; // warn 107 obj->x = 1; // warn 122 p = str; // warn 126 return __builtin_alloca(12); // warn 132 x = &y; // warn 146 int y = x + 1; // warn: left operand is garbage 161 int vla1[x]; // warn: garbage as size [all …]
|
/external/llvm-project/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/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/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/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/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/angle/third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/ |
D | attribute.cpp | 175 warn(node->getLoc(), "attribute with arguments not recognized, skipping", "", ""); in handleSelectionAttributes() 187 warn(node->getLoc(), "attribute does not apply to a selection", "", ""); in handleSelectionAttributes() 204 warn(node->getLoc(), "attribute with arguments not recognized, skipping", "", ""); in handleSwitchAttributes() 216 warn(node->getLoc(), "attribute does not apply to a switch", "", ""); in handleSwitchAttributes() 246 warn(node->getLoc(), "expected no arguments", feature, ""); in handleLoopAttributes() 259 warn(node->getLoc(), "expected a single integer argument", feature, ""); in handleLoopAttributes() 268 warn(node->getLoc(), "expected a single integer argument", feature, ""); in handleLoopAttributes() 283 warn(node->getLoc(), "expected a single integer argument", feature, ""); in handleLoopAttributes() 292 warn(node->getLoc(), "attribute requires a SPIR-V 1.4 target-env", feature, ""); in handleLoopAttributes() 340 warn(node->getLoc(), "attribute does not apply to a loop", "", ""); in handleLoopAttributes() [all …]
|
/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-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-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-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/cpython3/Lib/test/test_warnings/ |
D | __init__.py | 106 self.assertRaises(UserWarning, self.module.warn, 114 self.module.warn(message, UserWarning) 132 self.module.warn("FilterTests.test_ignore", UserWarning) 142 self.module.warn(message, UserWarning) 156 self.module.warn(message, UserWarning) 170 self.module.warn(message, UserWarning) 191 self.module.warn(message, UserWarning) 206 self.module.warn(message, UserWarning) 209 self.module.warn(message, UserWarning) 254 self.assertRaises(UserWarning, self.module.warn, [all …]
|
/external/ims/rcs/presencepolling/src/com/android/service/ims/presence/ |
D | PresenceSetting.java | 74 logger.warn("getCapabilityPollInterval, exception = " + ex.getMessage()); in getCapabilityPollInterval() 95 logger.warn("getCapabilityCacheExpiration, exception = " + ex.getMessage()); in getCapabilityCacheExpiration() 115 logger.warn("getPublishTimer, exception = " + ex.getMessage()); in getPublishTimer() 137 logger.warn("getPublishTimerExtended, exception = " + ex.getMessage()); in getPublishTimerExtended() 158 logger.warn("getMaxNumberOfEntriesInRequestContainedList, exception = " in getMaxNumberOfEntriesInRequestContainedList() 180 logger.warn("getMaxNumberOfEntriesInRequestContainedList, exception = " in getCapabilityPollListSubscriptionExpiration() 203 logger.warn("getVoLteProvisioningConfig, exception accessing ProvisioningManager, " in getVoLteProvisioningConfig() 221 logger.warn("getVtProvisioningConfig, exception accessing ProvisioningManager, " in getVtProvisioningConfig() 239 logger.warn("getEabProvisioningConfig, exception accessing ProvisioningManager, " in getEabProvisioningConfig()
|
/external/llvm-project/openmp/libomptarget/deviceRTLs/amdgcn/src/ |
D | amdgcn_locks.hip | 20 static DEVICE void warn() { 24 DEVICE void __kmpc_impl_init_lock(omp_lock_t *) { warn(); } 25 DEVICE void __kmpc_impl_destroy_lock(omp_lock_t *) { warn(); } 26 DEVICE void __kmpc_impl_set_lock(omp_lock_t *) { warn(); } 27 DEVICE void __kmpc_impl_unset_lock(omp_lock_t *) { warn(); } 28 DEVICE int __kmpc_impl_test_lock(omp_lock_t *lock) { warn(); }
|
/external/crosvm/devices/src/ |
D | pl030.rs | 5 use base::{warn, Event}; 82 warn!("bad write size: {} for pl030", data.len()); in write() 90 warn!("invalid write to read-only RTCDR register"); in write() 97 warn!("Not implemented: VM tried to set an RTC alarm"); in write() 112 warn!("Not implemented: VM tried to set the RTC"); in write() 125 warn!("bad write size for pl030"); in read() 135 warn!("invalid read of RTCLR register"); in read()
|
/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/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()
|