/external/chromium_org/tools/clang/plugins/tests/ |
blacklisted_dirs.cpp | 11 virtual void foo(); // Should warn about missing 'override'. 16 virtual void foo(); // Should warn about missing 'override'.
|
/external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.attr.depend/ |
p2.cpp | 3 int f(int); // expected-note 2{{declaration missing '[[carries_dependency]]' attribute is here}} 7 int g([[carries_dependency]] int n); // expected-note {{declaration missing '[[carries_dependency]]' attribute is here}}
|
/external/clang/test/Frontend/ |
rewrite-includes-missing.c | 7 // CHECK-NEXT: {{^}}# 3 "{{.*}}rewrite-includes-missing.c"{{$}} 8 // CHECK-NEXT: {{^}}# 4 "{{.*}}rewrite-includes-missing.c"{{$}}
|
/external/clang/test/Parser/ |
pragma-visibility.c | 5 #pragma GCC visibility push // expected-warning{{missing '(' after '#pragma visibility'}} 7 #pragma GCC visibility push(hidden // expected-warning{{missing ')' after '#pragma visibility' - ignoring}}
|
missing-end-3.m | 8 @interface blah // expected-error {{missing '@end'}}
|
/external/clang/test/Preprocessor/ |
ifdef-recover.c | 4 /* expected-error@+1 {{macro name missing}} */ 12 /* expected-error@+1 {{macro name missing}} */
|
/external/clang/test/Sema/ |
attr-sentinel.c | 18 foo1(1, 0) ; // expected-warning {{missing sentinel in function call}} 21 foo5(1, NULL, 2, 1); // expected-warning {{missing sentinel in function call}} 23 foo6(1,2,3,4,5,6,7); // expected-warning {{missing sentinel in function call}} 33 foo1(3, &a, &b, &c); // expected-warning {{missing sentinel in function call}} 37 FOOMACRO(1, 2); // expected-warning {{missing sentinel in function call}} 52 b(1, "%s", 0); // expected-warning {{missing sentinel in function call}} 53 z(1, "%s",4 ,1,0); // expected-warning {{missing sentinel in function call}} 56 y(1, "%s", 1,2,3,4,5,6,7); // expected-warning {{missing sentinel in function call}}
|
/external/lldb/test/unittest2/ |
util.py | 34 missing = [] 41 missing.append(e) 60 missing.extend(expected[i:]) 63 return missing, unexpected 72 missing = [] 79 missing.append(item) 96 return missing, unexpected 99 return missing, actual
|
/libcore/luni/src/main/java/java/util/ |
MissingResourceException.java | 23 * resource bundle cannot be found or a resource is missing from a resource 38 * missing resource filled in. 45 * the name of the missing resource. 56 * not be found, or in the case of a missing resource, the name of the 57 * missing resource bundle. 66 * Returns the name of the missing resource, or an empty string if the 67 * resource bundle is missing. 69 * @return the name of the missing resource.
|
/external/ipsec-tools/src/racoon/ |
Makefile.am | 24 missing/crypto/sha2/sha2.c \ 25 missing/crypto/rijndael/rijndael-api-fst.c \ 26 missing/crypto/rijndael/rijndael-alg-fst.c 59 EXTRA_eaytest_SOURCES = missing/crypto/sha2/sha2.c 79 missing/crypto/sha2/sha2.h missing/crypto/rijndael/rijndael_local.h \ 80 missing/crypto/rijndael/rijndael-api-fst.h \ 81 missing/crypto/rijndael/rijndael-alg-fst.h \ 82 missing/crypto/rijndael/rijndael.h 89 missing/crypto/rijndael/boxes-fst.dat [all...] |
/external/clang/test/SemaObjC/ |
super-dealloc-attribute.m | 41 } // expected-warning {{method possibly missing a [super XXX] call}} 44 - (void) AnnotMyDeallocMeth{} // expected-warning {{method possibly missing a [super AnnotMyDeallocMeth] call}} 47 + (void)registerClass:(id)name {} // expected-warning {{method possibly missing a [super registerClass:] call}} 54 - (void) MyDeallocMeth {} // expected-warning {{method possibly missing a [super MyDeallocMeth] call}} 55 - (void) AnnotMyDeallocMeth{} // expected-warning {{method possibly missing a [super AnnotMyDeallocMeth] call}} 56 - (void) AnnotMeth{}; // expected-warning {{method possibly missing a [super AnnotMeth] call}} 65 - (void) MyDeallocMeth {} // expected-warning {{method possibly missing a [super MyDeallocMeth] call}} 66 - (void) AnnotMyDeallocMeth{} // expected-warning {{method possibly missing a [super AnnotMyDeallocMeth] call}} 67 - (void) AnnotMeth{}; // expected-warning {{method possibly missing a [super AnnotMeth] call}} 68 - (void) AnnotMyDeallocMethCAT{}; // expected-warning {{method possibly missing a [super AnnotMyDeallocMethCAT] call} [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/ |
dep_util.py | 52 def newer_group(sources, target, missing='error'): 58 'missing' controls what we do when a source file is missing; the 60 if it is "ignore", we silently drop any missing source files; if it is 61 "newer", any missing source files make us assume that 'target' is 63 carry out commands that wouldn't work because inputs are missing, but 79 if missing == 'error': # blow up when we stat() the file 81 elif missing == 'ignore': # missing source dropped from 83 elif missing == 'newer': # missing source means target i [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/ |
dep_util.py | 52 def newer_group(sources, target, missing='error'): 58 'missing' controls what we do when a source file is missing; the 60 if it is "ignore", we silently drop any missing source files; if it is 61 "newer", any missing source files make us assume that 'target' is 63 carry out commands that wouldn't work because inputs are missing, but 79 if missing == 'error': # blow up when we stat() the file 81 elif missing == 'ignore': # missing source dropped from 83 elif missing == 'newer': # missing source means target i [all...] |
/external/chromium_org/third_party/libevent/ |
autogen.sh | 11 automake --add-missing --copy
|
/external/chromium_org/third_party/skia/tools/tests/jsondiff/input/ |
new.json | 15 "missing-from-old.png" : {
|
old.json | 15 "missing-from-new.png" : {
|
/external/chromium_org/tools/clang/blink_gc_plugin/tests/ |
class_multiple_trace_bases.cpp | 13 // Missing: Derived::trace(visitor)
|
inner_class.cpp | 11 // Missing: visitor->trace(m_obj);
|
trace_if_needed.cpp | 13 // Missing trace of m_two
|
/external/chromium_org/tools/gyp/test/actions/src/ |
action_missing_name.gyp | 18 'print \'missing name\'',
|
/external/chromium_org/tools/gyp/test/errors/ |
missing_dep.gyp | 11 'missing.gyp'
|
/external/clang/test/ASTMerge/Inputs/ |
enum1.c | 22 // Missing enumerator
|
enum2.c | 22 // Missing enumerator
|
/external/clang/test/Index/ |
cindex-on-invalid-usrs.m | 7 // CHECK: missing '@end'
|
/external/clang/test/Modules/ |
missing-submodule.m | 3 #include <Module/NotInModule.h> // expected-warning{{missing submodule 'Module.NotInModule'}}
|