Home
last modified time | relevance | path

Searched refs:warn (Results 1 – 25 of 1362) sorted by relevance

12345678910>>...55

/external/antlr/runtime/Python3/
Dez_setup.py69 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.py18 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/
DSubstituteLogger.java201 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 …]
DMarkerIgnoringBase.java118 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/
Dftest06.c260 #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 …]
Dftest02.c241 #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/
Dwarn-missing-super.m10 // 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/
DPropertyUtils.java23 …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/
DLogger.java481 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/crosvm/devices/src/
Dpl030.rs6 use sys_util::{warn, EventFd};
79 warn!("bad write size: {} for pl030", data.len()); in write()
89 warn!("invalid write to read-only RTCDR register"); in write()
96 warn!("Not implemented: VM tried to set an RTC alarm"); in write()
111 warn!("Not implemented: VM tried to set the RTC"); in write()
122 warn!("bad read size: {} for pl030", data.len()); in read()
131 warn!("invalid read of RTCLR register"); in read()
/external/clang/test/Analysis/
DNewDelete-intersections.mm19 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/
DInvocationTest.java77 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/
DInvocationTest.java71 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/slf4j/slf4j-simple/src/test/java/org/slf4j/
DInvocationTest.java75 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/ims/rcs/presencepolling/src/com/android/service/ims/presence/
DPresenceSetting.java74 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/python/cpython3/Lib/test/test_warnings/
D__init__.py102 self.assertRaises(UserWarning, self.module.warn,
110 self.module.warn(message, UserWarning)
128 self.module.warn("FilterTests.test_ignore", UserWarning)
138 self.module.warn(message, UserWarning)
152 self.module.warn(message, UserWarning)
166 self.module.warn(message, UserWarning)
187 self.module.warn(message, UserWarning)
202 self.module.warn(message, UserWarning)
205 self.module.warn(message, UserWarning)
250 self.assertRaises(UserWarning, self.module.warn,
[all …]
/external/angle/third_party/glslang/src/glslang/MachineIndependent/
Dattribute.cpp173 warn(node->getLoc(), "attribute with arguments not recognized, skipping", "", ""); in handleSelectionAttributes()
185 warn(node->getLoc(), "attribute does not apply to a selection", "", ""); in handleSelectionAttributes()
202 warn(node->getLoc(), "attribute with arguments not recognized, skipping", "", ""); in handleSwitchAttributes()
214 warn(node->getLoc(), "attribute does not apply to a switch", "", ""); in handleSwitchAttributes()
244 warn(node->getLoc(), "expected no arguments", feature, ""); in handleLoopAttributes()
257 warn(node->getLoc(), "expected a single integer argument", feature, ""); in handleLoopAttributes()
266 warn(node->getLoc(), "expected a single integer argument", feature, ""); in handleLoopAttributes()
281 warn(node->getLoc(), "expected a single integer argument", feature, ""); in handleLoopAttributes()
290 warn(node->getLoc(), "attribute requires a SPIR-V 1.4 target-env", feature, ""); in handleLoopAttributes()
338 warn(node->getLoc(), "attribute does not apply to a loop", "", ""); in handleLoopAttributes()
/external/slf4j/slf4j-jcl/src/main/java/org/slf4j/impl/
DJCLLoggerAdapter.java355 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/deqp-deps/glslang/glslang/MachineIndependent/
Dattribute.cpp173 warn(node->getLoc(), "attribute with arguments not recognized, skipping", "", ""); in handleSelectionAttributes()
185 warn(node->getLoc(), "attribute does not apply to a selection", "", ""); in handleSelectionAttributes()
202 warn(node->getLoc(), "attribute with arguments not recognized, skipping", "", ""); in handleSwitchAttributes()
214 warn(node->getLoc(), "attribute does not apply to a switch", "", ""); in handleSwitchAttributes()
244 warn(node->getLoc(), "expected no arguments", feature, ""); in handleLoopAttributes()
257 warn(node->getLoc(), "expected a single integer argument", feature, ""); in handleLoopAttributes()
266 warn(node->getLoc(), "expected a single integer argument", feature, ""); in handleLoopAttributes()
281 warn(node->getLoc(), "expected a single integer argument", feature, ""); in handleLoopAttributes()
290 warn(node->getLoc(), "attribute requires a SPIR-V 1.4 target-env", feature, ""); in handleLoopAttributes()
338 warn(node->getLoc(), "attribute does not apply to a loop", "", ""); in handleLoopAttributes()
/external/llvm/utils/abtest/
Dabtest.py66 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/
Dcheck.py59 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/
Dcheck.py61 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/python/cpython2/Lib/test/
Dtest_warnings.py93 self.assertRaises(UserWarning, self.module.warn,
101 self.module.warn("FilterTests.test_ignore", UserWarning)
111 self.module.warn(message, UserWarning)
126 self.module.warn(message, UserWarning)
141 self.module.warn(message, UserWarning)
144 self.module.warn(message, UserWarning)
168 self.assertRaises(UserWarning, self.module.warn,
180 self.module.warn("FilterTests.test_ordering", UserWarning)
191 self.assertRaises(UserWarning, self.module.warn, 'convert to error')
195 self.module.warn(text)
[all …]
/external/ltp/testcases/kernel/controllers/cpuset/cpuset_load_balance_test/
Dcpuset_cpu_hog.c67 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/
DMsgMgr.java90 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

12345678910>>...55