HomeSort by relevance Sort by last modified time
    Searched full:ignored (Results 76 - 100 of 7655) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/tools/sharding_supervisor/data/
gtest_results_expected.xml 9 <failure message="" type="" ignored="true"></failure>
18 <failure message="" type="" ignored="true"></failure>
19 <failure message="" type="" ignored="true"></failure>
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
basic.cpp 18 template<typename T> void f2(T*, T*); // expected-note {{candidate template ignored: could not match 'T *' against 'ConvToIntPtr'}} \
19 // expected-note{{candidate template ignored: deduced conflicting types for parameter 'T' ('int' vs. 'float')}}
41 void func(bar<T>) { // expected-note {{candidate template ignored: could not match 'bar' against 'foo'}}
  /external/compiler-rt/lib/lsan/lit_tests/TestCases/
ignore_object.cc 18 // Explicitly ignored object.
20 // Transitively ignored object.
22 // Non-ignored object.
  /external/junit/src/org/junit/
Ignore.java 12 * tests will be executed. Native JUnit 4 test runners should report the number of ignored tests along with the
19 * &#064;Ignore takes an optional default parameter if you want to record why a test is being ignored:<br/>
36 * The optional reason why the test is ignored.
  /external/clang/test/CXX/temp/temp.spec/temp.explicit/
p4.cpp 20 template void f0(long); // expected-warning{{explicit instantiation of 'f0<long>' that occurs after an explicit specialization will be ignored}}
23 template void X0<long>::f1(); // expected-warning{{explicit instantiation of 'f1' that occurs after an explicit specialization will be ignored}}
26 template struct X0<long>::Inner; // expected-warning{{explicit instantiation of 'Inner' that occurs after an explicit specialization will be ignored}}
29 template long X0<long>::value; // expected-warning{{explicit instantiation of 'value' that occurs after an explicit specialization will be ignored}}
32 template struct X0<double>; // expected-warning{{explicit instantiation of 'X0<double>' that occurs after an explicit specialization will be ignored}}
  /external/clang/test/Modules/
ignored_macros.m 16 // make it ignored. There should be no failure, IGNORED is defined in
20 // RUN: %clang_cc1 -fmodules-cache-path=%t.modules -DIGNORED=1 -fmodules -I %S/Inputs -include-pch %t.pch -fmodules-ignore-macro=IGNORED %s -verify
22 // Fourth trial: pass -DIGNORED=1 and -fmodules-ignore-macro=IGNORED
23 // to both invocations, so modules will be built without the IGNORED
26 // RUN: %clang_cc1 -fmodules-cache-path=%t.modules -DIGNORED=1 -fmodules-ignore-macro=IGNORED -fmodules -I %S/Inputs -emit-pch -o %t.pch -x objective-c-header %s -verify
27 // RUN: %clang_cc1 -fmodules-cache-path=%t.modules -DIGNORED=1 -fmodules -I %S/Inputs -include-pch %t.pch -fmodules-ignore-macro=IGNORED -DNO_IGNORED_ANYWHERE -fmodules-ignore-macro=NO_IGNORED_ANYWHERE %s -verify
29 // Fifth trial: pass -DIGNORED=1 and -fmodules-ignore-macro=IGNORED=1
30 // to both invocations, so modules will be built without the IGNORED
33 // RUN: %clang_cc1 -fmodules-cache-path=%t.modules -DIGNORED=1 -fmodules-ignore-macro=IGNORED=1 -fmodules -I %S/Inputs -emit-pch -o %t.pch -x objective-c-header %s -verif
    [all...]
  /packages/apps/Email/tests/src/com/android/email/
FolderPropertiesTests.java 49 fp.getDisplayName(Mailbox.TYPE_INBOX, 0, "ignored"));
61 fp.getDisplayName(Mailbox.TYPE_DRAFTS, 0, "ignored"));
65 fp.getDisplayName(Mailbox.TYPE_OUTBOX, 0, "ignored"));
69 fp.getDisplayName(Mailbox.TYPE_SENT, 0, "ignored"));
73 fp.getDisplayName(Mailbox.TYPE_TRASH, 0, "ignored"));
77 fp.getDisplayName(Mailbox.TYPE_JUNK, 0, "ignored"));
88 fp.getDisplayName(0, Mailbox.QUERY_ALL_INBOXES, "ignored"));
91 fp.getDisplayName(0, Mailbox.QUERY_ALL_FAVORITES, "ignored"));
94 fp.getDisplayName(0, Mailbox.QUERY_ALL_DRAFTS, "ignored"));
97 fp.getDisplayName(0, Mailbox.QUERY_ALL_OUTBOX, "ignored"));
    [all...]
  /external/easymock/src/org/easymock/
MockControl.java 463 * @param ignored
464 * an ignored value.
467 public <V1, V2 extends V1> void expectAndReturn(V1 ignored, V2 value) {
471 public void expectAndReturn(int ignored, int value) {
472 this.expectAndReturn((Object) ignored, (Object) value);
482 * @param ignored
483 * an ignored value.
487 public <V1, V2 extends V1> void expectAndReturn(V1 ignored, V2 value,
494 public void expectAndReturn(int ignored, int value, Range range) {
495 this.expectAndReturn((Object) ignored, (Object) value, range);
    [all...]
  /external/clang/test/Sema/
attr-availability.c 3 void f0() __attribute__((availability(macosx,introduced=10.4,deprecated=10.2))); // expected-warning{{feature cannot be deprecated in OS X version 10.2 before it was introduced in version 10.4; attribute ignored}}
4 void f1() __attribute__((availability(ios,obsoleted=2.1,deprecated=3.0))); // expected-warning{{feature cannot be obsoleted in iOS version 2.1 before it was deprecated in version 3.0; attribute ignored}}
22 __attribute__((availability(macos, unavailable))) // expected-warning {{attribute 'availability' is ignored}}
29 void f4(int) __attribute__((availability(ios,introduced=4.0))); // expected-warning {{feature cannot be deprecated in iOS version 3.0 before it was introduced in version 4.0; attribute ignored}}
32 availability(ios,introduced=4.0))); // expected-warning {{feature cannot be deprecated in iOS version 3.0 before it was introduced in version 4.0; attribute ignored}}
52 b = ^ (int i) __attribute__((availability(macosx,introduced=10.2))) { return 1; }; // expected-warning {{'availability' attribute ignored}}
template-specialization.cpp 7 static void bar(int) { } // expected-note {{candidate template ignored: couldn't infer template argument 'T'}}
  /external/llvm/utils/
clang-parse-diagnostics-file 19 parser.add_option("-i", "--ignored", action="store_true", dest="ignored",
20 default=False, help="dump 'ignored' messages.")
30 levels = {'error': False, 'fatal error': False, 'ignored': False,
36 if opts.ignored:
37 levels['ignored'] = True
  /external/bison/m4/
extern-inline.m4 49 _Pragma ("GCC diagnostic ignored \"-Wsuggest-attribute=const\"")
53 _Pragma ("GCC diagnostic ignored \"-Wmissing-prototypes\"") \
54 _Pragma ("GCC diagnostic ignored \"-Wmissing-declarations\"") \
  /external/chromium/chrome/browser/accessibility/
browser_accessibility_cocoa.h 35 // Invalidate children for a non-ignored ancestor (including self).
42 // should be ignored by the accessibility hierarchy.
43 @property(nonatomic, readonly, getter=isIgnored) BOOL ignored; variable
  /external/llvm/lib/Target/NVPTX/
NVPTXMCExpr.cpp 23 bool Ignored;
32 APF.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven, &Ignored);
37 APF.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven, &Ignored);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowListActivity.java 52 } catch (NoSuchMethodException ignored) {
53 } catch (InvocationTargetException ignored) {
54 } catch (IllegalAccessException ignored) {
  /external/robolectric/src/test/resources/
TestAndroidManifestWithReceivers.xml 7 android:permission="com.ignored.PERM">
10 <category android:name="com.ignored"/>
14 <category android:name="com.ignored"/>
  /external/chromium/chrome/browser/ui/cocoa/find_bar/
find_bar_view.h 18 // Specifies that mouse events over this view should be ignored by the
  /external/chromium_org/chrome/browser/ui/cocoa/find_bar/
find_bar_view.h 17 // Specifies that mouse events over this view should be ignored by the
  /external/chromium_org/third_party/WebKit/Source/web/tests/data/
content_listeners.html 25 This has no specific listener (the body listener should be ignored).
  /external/chromium_org/tools/gyp/test/copies/src/
copies-slash.gyp 7 # A trailing slash on the destination directory should be ignored.
  /external/clang/test/Misc/
emit-html.c 24 _Pragma("clang diagnostic ignored \"-Wformat-extra-args\"")
  /external/clang/test/PCH/
pragma-diag.c 13 #pragma clang diagnostic ignored "-Wtautological-compare"
  /external/clang/test/Parser/
cxx-attributes.cpp 12 // expected-warning{{attribute locks_excluded ignored, because it is not attached to a declaration}}
cxx11-base-spec-attributes.cpp 10 struct H : [[unknown::foobar]] A {}; // expected-warning {{unknown attribute 'foobar' ignored}}
  /external/clang/test/SemaObjC/
DoubleMethod.m 9 - (void) method; // expected-warning {{multiple declarations of method 'method' found and ignored}}

Completed in 3768 milliseconds

1 2 34 5 6 7 8 91011>>