/external/clang/test/SemaObjC/ |
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] call 57 // CHECK-ARC: warn-missing-super.m:36:10: error: ARC forbids explicit message send of 'dealloc'
|
property-in-class-extension.m | 35 @property (readwrite, assign) NSObject *warn; 40 - (NSObject *)warn; // expected-note {{method 'warn' declared here}} 44 @implementation rdar8747333 // expected-warning {{method definition for 'warn' not found}} \ 49 @dynamic warn;
|
/external/linux-tools-perf/util/ |
usage.c | 32 static void warn_builtin(const char *warn, va_list params) 34 report(" Warning: ", warn, params); 73 void warning(const char *warn, ...) 77 va_start(params, warn); 78 warn_routine(warn, params);
|
/external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/ |
cros_browser_finder.py | 94 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...] |
/external/chromium_org/third_party/WebKit/ManualTests/inspector/ |
console-call-line-numbers.html | 4 console.warn("Test console.warn"); 13 <p>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=17234">Bug 17234: Inspector should link console.{log,warn,info,error} back to call site</a>.</p>
|
/external/clang/test/Frontend/ |
system-header-prefix.c | 6 // CHECK: libs/mylib/warn.h:1:5: warning: 'MYLIB' is not defined, evaluates to 0 8 // CHECK: libs/mylib/warn.h:1:5: warning: 'MYLIB' is not defined, evaluates to 0 10 // CHECK: src/warn.h:1:5: warning: 'SRC' is not defined, evaluates to 0
|
/external/llvm/test/CodeGen/ARM/ |
warn-stack.ll | 1 ; 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/llvm/test/CodeGen/X86/ |
warn-stack.ll | 1 ; RUN: llc -mtriple x86_64-apple-macosx10.8.0 -warn-stack-size=80 < %s 2>&1 >/dev/null | FileCheck %s 15 ; CHECK: warning: Stack size limit exceeded (104) in warn. 16 define void @warn() nounwind ssp {
|
/external/clang/test/Lexer/ |
utf8-invalid.c | 9 // Don't warn about bad UTF-8 in raw lexing mode. 13 // Don't warn about bad UTF-8 in preprocessor directives.
|
builtin_redef.c | 2 // RUN: %clang_cc1 %s -D__TIME__=1234 -U__DATE__ -E 2>&1 | FileCheck %s --check-prefix=CHECK-WARN 5 // CHECK-WARN: <command line>:{{.*}} warning: redefining builtin macro 6 // CHECK-WARN: <command line>:{{.*}} warning: undefining builtin macro 15 // CHECK-WARN: :[[@LINE-1]]:9: warning: redefining builtin macro
|
rdar-8914293.c | 4 // We want be compatible with gcc and warn, not error.
|
/cts/libs/vogar-expect/src/vogar/util/ |
Log.java | 35 public static void warn(String message) { method in class:Log 37 sLogoutput.warn(message); 44 public static void warn(String message, List<String> list) { method in class:Log 46 sLogoutput.warn(message, list);
|
LogOutput.java | 25 void warn(String message); method in interface:LogOutput 30 void warn(String message, List<String> list); method in interface:LogOutput
|
/external/clang/test/Preprocessor/ |
warn-macro-unused.c | 3 #include "warn-macro-unused.h"
|
/external/clang/test/SemaCXX/ |
warn-static-function-inheader.cpp | 1 #include "warn-static-function-inheader.h"
|
/packages/apps/PackageInstaller/ |
proguard.flags | 2 # Don't warn about those in case this app is linking against an older
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
md5.py | 7 warnings.warn("the md5 module is deprecated; use hashlib instead",
|
sre.py | 6 warnings.warn("The sre module is deprecated, please import re.",
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
md5.py | 7 warnings.warn("the md5 module is deprecated; use hashlib instead",
|
sre.py | 6 warnings.warn("The sre module is deprecated, please import re.",
|
/external/clang/www/analyzer/ |
potential_checkers.html | 39 int *p1 = (int*)malloc(sizeof(int)); // warn 40 int *p2 = new int; // warn 59 free(p1); // warn 60 free(p2); // warn 77 p1++; // warn 79 p2 = p1; // warn 82 p3++; // warn 102 f1(g(new int), h()); // warn 103 f1(g((int *)malloc(sizeof(int))), h()); // warn 117 strcpy(s2, s1); // warn [all...] |
/external/clang/test/Analysis/ |
NewDelete+MismatchedDeallocator_intersections.cpp | 15 free(&i); // no warn 18 free(++p1); // no warn 22 free(p2); // no warn 24 int *p3 = (int *)malloc(sizeof(int)); // no warn 28 int j = *p4; // no warn
|
NewDelete-custom.cpp | 23 void *p1 = C::operator new(0); // no warn 25 C *p2 = new C; // no warn 34 void *p = operator new[](0); // call is inlined, no warn 47 void *p = operator new(0); // call is inlined, no warn 75 void *p = operator new(0, 0.1); // no warn 79 int *p = new(0.1) int; // no warn
|
/external/clang/test/Sema/ |
warn-self-assign-field.mm | 12 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/chrome/browser/debugger/manual_tests/ |
console-call-line-numbers.html | 4 console.warn("Test console.warn");
|