HomeSort by relevance Sort by last modified time
    Searched full:ignored (Results 1 - 25 of 7645) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /art/test/059-finalizer-throw/
info.txt 1 Verify that exceptions thrown from finalizers are ignored.
  /dalvik/tests/059-finalizer-throw/
info.txt 1 Verify that exceptions thrown from finalizers are ignored.
  /external/clang/test/Index/Inputs/
pragma_disable_warning.h 1 #pragma clang diagnostic ignored "-Wunused-parameter"
  /external/clang/test/Modules/Inputs/
diag_pragma.h 3 #pragma clang diagnostic ignored "-Wparentheses"
ignored_macros.h 5 #ifdef IGNORED
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
enter.errwarn 1 -:8: warning: address size override ignored
2 -:9: warning: address size override ignored
riprel2.errwarn 1 -:20: warning: `es' segment register ignored in 64-bit mode
2 -:21: warning: `es' segment register ignored in 64-bit mode
3 -:22: warning: `es' segment register ignored in 64-bit mode
4 -:23: warning: `es' segment register ignored in 64-bit mode
5 -:24: warning: `es' segment register ignored in 64-bit mode
6 -:25: warning: `es' segment register ignored in 64-bit mode
7 -:26: warning: `es' segment register ignored in 64-bit mode
8 -:27: warning: `es' segment register ignored in 64-bit mode
9 -:28: warning: `es' segment register ignored in 64-bit mode
10 -:30: warning: `es' segment register ignored in 64-bit mod
    [all...]
ripseg.errwarn 1 -:6: warning: `es' segment register ignored in 64-bit mode
2 -:9: warning: `es' segment register ignored in 64-bit mode
3 -:12: warning: `es' segment register ignored in 64-bit mode
4 -:22: warning: `es' segment register ignored in 64-bit mode
5 -:25: warning: `es' segment register ignored in 64-bit mode
6 -:28: warning: `es' segment register ignored in 64-bit mode
  /cts/tests/tests/media/res/raw/
playlist2.m3u 1 # comments should be ignored
  /external/clang/test/Frontend/
verify2.h 4 // expected-error {{should be ignored}}
  /external/valgrind/main/massif/tests/
ignored.c 7 // Allocating/freeing in an ignored function: ignored.
16 // Growing/shrinking a non-ignored block in an ignored function: ignored.
20 // Growing/shrinking an ignored block in an ignored function: ignored.
30 // Not ignored.
33 // Get an ignored block
    [all...]
  /external/clang/test/Preprocessor/
_Pragma.c 3 _Pragma ("GCC system_header") // expected-warning {{system_header ignored in main file}}
6 _Pragma("#define macro") // expected-warning {{unknown pragma ignored}}
_Pragma-in-macro-arg.c 4 #define A(desc) _Pragma("clang diagnostic push") _Pragma("clang diagnostic ignored \"-Wparentheses\"") _Pragma("clang diagnostic pop")
6 B(_Pragma("clang diagnostic ignored \"-Wparentheses\""))
15 // This should be ignored..
16 INACTIVE(_Pragma("clang diagnostic ignored \"-Wconversion\""))
18 #define IGNORE_CONV _Pragma("clang diagnostic ignored \"-Wconversion\"") _Pragma("clang diagnostic ignored \"-Wconversion\"")
25 _Pragma("clang diagnostic ignored \"-Wconversion\""), int q = (double)1.0);
29 ACTIVE(_Pragma) ("clang diagnostic ignored \"-Wconversion\"")) // expected-error {{_Pragma takes a parenthesized string literal}} \
  /external/clang/test/Sema/
attr-unknown.c 3 int x __attribute__((foobar)); // expected-warning {{unknown attribute 'foobar' ignored}}
4 void z() __attribute__((bogusattr)); // expected-warning {{unknown attribute 'bogusattr' ignored}}
stdcall-fastcall-x64.c 8 void __attribute__((stdcall, fastcall)) foo3(void); // expected-warning{{calling convention 'stdcall' ignored for this target}} expected-warning {{calling convention 'fastcall' ignored for this target}}
9 void __attribute__((stdcall)) foo4(); // expected-warning{{calling convention 'stdcall' ignored for this target}}
10 void __attribute__((fastcall)) foo4(void); // expected-warning {{calling convention 'fastcall' ignored for this target}}
13 void rdar8876096foo1(int i, int j) __attribute__((fastcall, cdecl)); // expected-warning{{calling convention 'fastcall' ignored for this target}}
14 void rdar8876096foo2(int i, int j) __attribute__((fastcall, stdcall)); // expected-warning{{calling convention 'stdcall' ignored for this target}} expected-warning {{calling convention 'fastcall' ignored for this target}}
15 void rdar8876096foo3(int i, int j) __attribute__((fastcall, regparm(2))); // expected-warning {{calling convention 'fastcall' ignored for this target}}
16 void rdar8876096foo4(int i, int j) __attribute__((stdcall, cdecl)); // expected-warning{{calling convention 'stdcall' ignored for this target}}
17 void rdar8876096foo5(int i, int j) __attribute__((stdcall, fastcall)); // expected-warning{{calling convention 'stdcall' ignored for this target}} expected-warning {{calling convention 'fastcall' ignored for this target}
    [all...]
attr-declspec-ignored.c 3 __attribute__((visibility("hidden"))) __attribute__((aligned)) struct A; // expected-warning{{attribute 'visibility' is ignored, place it after "struct" to apply attribute to type declaration}} \
4 // expected-warning{{attribute 'aligned' is ignored, place it after "struct" to apply attribute to type declaration}}
5 __attribute__((visibility("hidden"))) __attribute__((aligned)) union B; // expected-warning{{attribute 'visibility' is ignored, place it after "union" to apply attribute to type declaration}} \
6 // expected-warning{{attribute 'aligned' is ignored, place it after "union" to apply attribute to type declaration}}
7 __attribute__((visibility("hidden"))) __attribute__((aligned)) enum C {C}; // expected-warning{{attribute 'visibility' is ignored, place it after "enum" to apply attribute to type declaration}} \
8 // expected-warning{{attribute 'aligned' is ignored, place it after "enum" to apply attribute to type declaration}}
dllimport-dllexport.c 4 inline void __attribute__((dllexport)) foo1(){} // expected-warning{{dllexport attribute ignored}}
5 inline void __attribute__((dllimport)) foo2(){} // expected-warning{{dllimport attribute ignored}}
9 void __attribute__((dllimport, dllexport)) foo4(); // expected-warning{{dllimport attribute ignored}}
12 void __attribute__((dllimport)) foo5(); // expected-warning{{dllimport attribute ignored}}
19 void foo6(){} // expected-warning {{'foo6' redeclared without dllimport attribute: previous dllimport ignored}}
22 inline void __declspec(dllexport) foo7(){} // expected-warning{{dllexport attribute ignored}}
23 inline void __declspec(dllimport) foo8(){} // expected-warning{{dllimport attribute ignored}}
27 void __declspec(dllimport) __declspec(dllexport) foo10(); // expected-warning{{dllimport attribute ignored}}
30 void __declspec(dllimport) foo11(); // expected-warning{{dllimport attribute ignored}}
37 void foo12(){} // expected-warning {{'foo12' redeclared without dllimport attribute: previous dllimport ignored}}
    [all...]
  /frameworks/opt/vcard/tests/res/raw/
v21_invalid_comment_line.vcf 6 # This line must be ignored.
8 #<- sharp) example. This message must NOT be ignored.
9 # This line must be ignored too.
  /external/clang/test/Parser/
cxx11-stmt-attributes.cpp 5 [[unknown_attribute]] ; // expected-warning {{unknown attribute 'unknown_attribute' ignored}}
6 [[unknown_attribute]] { } // expected-warning {{unknown attribute 'unknown_attribute' ignored}}
7 [[unknown_attribute]] if (0) { } // expected-warning {{unknown attribute 'unknown_attribute' ignored}}
8 [[unknown_attribute]] for (;;); // expected-warning {{unknown attribute 'unknown_attribute' ignored}}
9 [[unknown_attribute]] do { // expected-warning {{unknown attribute 'unknown_attribute' ignored}}
10 [[unknown_attribute]] continue; // expected-warning {{unknown attribute 'unknown_attribute' ignored}}
12 [[unknown_attribute]] while (0); // expected-warning {{unknown attribute 'unknown_attribute' ignored}}
14 [[unknown_attribute]] switch (i) { // expected-warning {{unknown attribute 'unknown_attribute' ignored}}
15 [[unknown_attribute]] case 0: // expected-warning {{unknown attribute 'unknown_attribute' ignored}}
16 [[unknown_attribute]] default: // expected-warning {{unknown attribute 'unknown_attribute' ignored}}
    [all...]
  /external/chromium_org/third_party/JSON/JSON-2.59/t/
22_comment_at_eof.t 34 is( decoder( " []" ), '[]', 'space ignored before array' );
35 is( decoder( "\n[]" ), '[]', 'newline ignored before array' );
36 is( decoder( "# foo\n[]" ), '[]', 'comment ignored before array' );
37 is( decoder( "# fo[o\n[]"), '[]', 'comment ignored before array' );
38 is( decoder( "# fo]o\n[]"), '[]', 'comment ignored before array' );
39 is( decoder( "[# fo]o\n]"), '[]', 'comment ignored inside array' );
42 is( decoder( " " ), 'undef', 'space ignored before eof' );
43 is( decoder( "\n" ), 'undef', 'newline ignored before eof' );
44 is( decoder( "#,foo\n" ), 'undef', 'comment ignored before eof' );
45 is( decoder( "# []o\n" ), 'undef', 'comment ignored before eof' )
    [all...]
  /art/test/097-duplicate-method/
info.txt 2 properly (all but the first are ignored).
  /external/llvm/test/YAMLParser/
spec-07-01.data 3 %FOO bar baz # Should be ignored
  /external/skia/tools/tests/skimage/output-expected/empty-dir/
expectations.json 4 "failure-ignored" : null,
  /external/skia/tools/tests/skimage/output-expected/nonexistent-dir/
expectations.json 4 "failure-ignored" : null,
  /ndk/tests/build/project-properties/
default.properties 1 # This value should be ignored because project.properties

Completed in 1400 milliseconds

1 2 3 4 5 6 7 8 91011>>