Home
last modified time | relevance | path

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

12345678910>>...55

/external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/
Dcros_browser_finder.py94 logging.warn('Could not ssh into %s. Your device must be configured',
96 logging.warn('to allow passwordless login as root.')
97 logging.warn('For a test-build device, pass this to your script:')
98 logging.warn(' --identity $(CHROMITE)/ssh_keys/testing_rsa')
99 logging.warn('')
100 logging.warn('For a developer-mode device, the steps are:')
101 logging.warn(' - Ensure you have an id_rsa.pub (etc) on this computer')
102 logging.warn(' - On the chromebook:')
103 logging.warn(' - Control-Alt-T; shell; sudo -s')
104 logging.warn(' - openssh-server start')
[all …]
Dandroid_browser_finder.py109 real_logging.warn(
143 logging.warn(
146 logging.warn(' adb kill-server')
147 logging.warn(' sudo `which adb` devices\n\n')
179 logging.warn('Multiple devices attached. ' +
199 logging.warn('Failed to taskset %d (%s)', pid, ret)
/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'
Dproperty-in-class-extension.m35 @property (readwrite, assign) NSObject *warn; property
40 - (NSObject *)warn; // expected-note {{method 'warn' declared here}} method in NSObject
44 @implementation rdar8747333 // expected-warning {{method definition for 'warn' not found}} \
49 @dynamic warn;
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/tests/
Duncstring_test.c48 const char *warn; member
108 if (wstr != NULL && test->warn == NULL) { in run_test()
114 if (wstr == NULL && test->warn != NULL) { in run_test()
117 test->input, (unsigned long)test->in_len, test->warn); in run_test()
120 if (wstr && test->warn && strcmp(wstr, test->warn) != 0) { in run_test()
123 test->input, (unsigned long)test->in_len, test->warn, wstr); in run_test()
/external/skia/tools/
Dgit-skia-verify31 function warn() {
51 warn "You have uncommitted changes!"
57 warn "You have uncommitted changes!"
72 warn "Failed to compile!"
84 warn "Failed to compile!"
/external/ppp/pppd/plugins/
Dpassprompt.c42 warn("Can't make a pipe for %s", promptprog); in promptpass()
46 warn("Can't fork to run %s", promptprog); in promptpass()
91 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/linux-tools-perf/util/
Dusage.c32 static void warn_builtin(const char *warn, va_list params) in warn_builtin() argument
34 report(" Warning: ", warn, params); in warn_builtin()
73 void warning(const char *warn, ...) in warning() argument
77 va_start(params, warn); in warning()
78 warn_routine(warn, params); in warning()
/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
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
Dcollector.py36 self.warn = None
113 if hasattr(sys, "gettrace") and self.warn:
116 self.warn(msg % sys.gettrace())
145 def __init__(self, should_trace, timid, branch, warn): argument
166 self.warn = warn
206 tracer.warn = self.warn
/external/clang/test/Analysis/
DNewDelete-intersections.mm18 free(&i); // no warn
21 free(++p1); // no warn
25 free(p2); // no warn
27 int *p3 = (int *)malloc(sizeof(int)); // no warn
31 int j = *p4; // no warn
36 delete p; // no warn
/external/clang/test/Sema/
Dwarn-self-assign-field.mm12 a_ += a_; // Shouldn't warn.
22 // Shouldn't warn.
36 // Shouldn't warn.
41 // This is a common pattern to silence "parameter unused". Shouldn't warn.
62 // Shouldn't warn.
/external/chromium_org/tools/find_runtime_symbols/
Dprepare_symbol_info.py115 LOGGER.warn('Using an empty existing directory "%s".' % output_dir_path)
117 LOGGER.warn('A file or a directory exists at "%s".' % output_dir_path)
119 LOGGER.warn('Using the existing directory "%s".' % output_dir_path)
125 LOGGER.warn('Using a temporary directory "%s".' % output_dir_path)
127 LOGGER.warn('The directory "%s" is not available.' % output_dir_path)
134 LOGGER.warn('A directory "%s" cannot be created.' % output_dir_path)
138 LOGGER.warn('Using a temporary directory "%s".' % output_dir_path)
140 LOGGER.warn('The directory "%s" is not available.' % output_dir_path)
/external/chromium/base/threading/
Dthread_collision_warner.cc12 void DCheckAsserter::warn() { in warn() function in base::DCheckAsserter
39 asserter_->warn(); in EnterSelf()
52 asserter_->warn(); in Enter()
/external/chromium_org/base/threading/
Dthread_collision_warner.cc12 void DCheckAsserter::warn() { in warn() function in base::DCheckAsserter
39 asserter_->warn(); in EnterSelf()
52 asserter_->warn(); in Enter()
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
Darch.h153 size_t valsize, size_t shift, int warn);
161 int warn);
350 size_t valsize, size_t shift, int warn);
371 const yasm_bytecode *bc, int warn);
469 warn) \ argument
471 (arch, flt, buf, destsize, valsize, shift, warn)
473 bc, warn) \ argument
475 (arch, intn, buf, destsize, valsize, shift, bc, warn)
Derrwarn.c65 typedef struct warn { struct
66 /*@reldef@*/ STAILQ_ENTRY(warn) link;
70 } warn; typedef
71 static STAILQ_HEAD(warn_head, warn) yasm_warns;
337 warn *w = STAILQ_FIRST(&yasm_warns); in yasm_warn_clear()
358 warn *w; in yasm_warn_set_va()
363 w = yasm_xmalloc(sizeof(warn)); in yasm_warn_set_va()
386 warn *w = STAILQ_FIRST(&yasm_warns); in yasm_warn_fetch()
/external/apache-xml/src/main/java/org/apache/xpath/functions/
DFuncSystemProperty.java87 warn(xctxt, XPATHErrorResources.WG_PROPERTY_NOT_SUPPORTED, in execute()
95 warn(xctxt, XPATHErrorResources.WG_DONT_DO_ANYTHING_WITH_NS, in execute()
112 warn(xctxt, XPATHErrorResources.WG_SECURITY_EXCEPTION, in execute()
134 warn(xctxt, XPATHErrorResources.WG_SECURITY_EXCEPTION, in execute()
/external/llvm/test/CodeGen/X86/
Dwarn-stack.ll1 ; RUN: llc -mtriple x86_64-apple-macosx10.8.0 -warn-stack-size=80 < %s 2>&1 >/dev/null | FileCheck …
15 ; CHECK: warning: Stack size limit exceeded (104) in warn.
16 define void @warn() nounwind ssp {
/external/llvm/test/CodeGen/ARM/
Dwarn-stack.ll1 ; RUN: llc -mtriple thumbv7-apple-ios3.0.0 -warn-stack-size=80 < %s 2>&1 >/dev/null | FileCheck %s
15 ; CHECK: warning: Stack size limit exceeded (96) in warn.
16 define void @warn() nounwind ssp {
/external/ppp/pppd/
Dsys-linux.c406 warn("Couldn't make tty exclusive: %m"); in tty_establish_ppp()
442 warn("Couldn't reset tty to normal line discipline: %m"); in tty_establish_ppp()
477 warn("Couldn't set /dev/ppp (channel) to nonblock: %m"); in generic_establish_ppp()
523 warn("Couldn't set device to non-blocking mode: %m"); in generic_establish_ppp()
557 warn("tcflush failed: %m"); in tty_disestablish_ppp()
570 warn("ioctl(TIOCNXCL): %m (line %d)", __LINE__); in tty_disestablish_ppp()
576 warn("Couldn't restore device fd flags: %m"); in tty_disestablish_ppp()
631 warn("Couldn't set /dev/ppp to nonblock: %m"); in make_ppp_unit()
636 warn("Couldn't allocate PPP unit %d as it is already in use", req_unit); in make_ppp_unit()
762 warn("Receive serial link is not 8-bit clean:"); in clean_check()
[all …]
/external/libxml2/include/libxml/
Dxmlschemas.h131 xmlSchemaValidityWarningFunc warn,
140 xmlSchemaValidityWarningFunc * warn,
160 xmlSchemaValidityWarningFunc warn,
169 xmlSchemaValidityWarningFunc *warn,
Drelaxng.h140 xmlRelaxNGValidityWarningFunc warn,
145 xmlRelaxNGValidityWarningFunc *warn,
170 xmlRelaxNGValidityWarningFunc warn,
175 xmlRelaxNGValidityWarningFunc *warn,
/external/chromium_org/third_party/libxml/src/include/libxml/
Dxmlschemas.h131 xmlSchemaValidityWarningFunc warn,
140 xmlSchemaValidityWarningFunc * warn,
160 xmlSchemaValidityWarningFunc warn,
169 xmlSchemaValidityWarningFunc *warn,
Drelaxng.h140 xmlRelaxNGValidityWarningFunc warn,
145 xmlRelaxNGValidityWarningFunc *warn,
170 xmlRelaxNGValidityWarningFunc warn,
175 xmlRelaxNGValidityWarningFunc *warn,

12345678910>>...55