/external/curl/tests/data/ |
D | test1061 | 25 And you should ignore this data. aaaaaaaaaaaaaaaa 26 And you should ignore this data. aaaaaaaaaaaaaaaa 27 And you should ignore this data. aaaaaaaaaaaaaaaa 28 And you should ignore this data. aaaaaaaaaaaaaaaa 29 And you should ignore this data. aaaaaaaaaaaaaaaa 30 And you should ignore this data. aaaaaaaaaaaaaaaa 31 And you should ignore this data. aaaaaaaaaaaaaaaa 32 And you should ignore this data. aaaaaaaaaaaaaaaa 33 And you should ignore this data. aaaaaaaaaaaaaaaa 34 And you should ignore this data. aaaaaaaaaaaaaaaa [all …]
|
D | test1060 | 23 And you should ignore this data. aaaaaaaaaaaaaaaa 24 And you should ignore this data. aaaaaaaaaaaaaaaa 25 And you should ignore this data. aaaaaaaaaaaaaaaa 26 And you should ignore this data. aaaaaaaaaaaaaaaa 27 And you should ignore this data. aaaaaaaaaaaaaaaa 28 And you should ignore this data. aaaaaaaaaaaaaaaa 29 And you should ignore this data. aaaaaaaaaaaaaaaa 30 And you should ignore this data. aaaaaaaaaaaaaaaa 31 And you should ignore this data. aaaaaaaaaaaaaaaa 32 And you should ignore this data. aaaaaaaaaaaaaaaa [all …]
|
/external/brotli/ |
D | .gitattributes | 4 **/** export-ignore 7 bootstrap !export-ignore 8 BUILD !export-ignore 9 CMakeLists.txt !export-ignore 10 compiler_config_setting.bzl !export-ignore 11 configure !export-ignore 12 configure-cmake !export-ignore 13 configure.ac !export-ignore 14 CONTRIBUTING.md !export-ignore 15 LICENSE !export-ignore [all …]
|
/external/webrtc/tools_webrtc/android/ |
D | suppressions.xml | 9 <issue id="UseSparseArrays" severity="ignore"/> 11 <issue id="Registered" severity="ignore"/> 12 <issue id="MissingPermission" severity="ignore"/> 13 <issue id="ApplySharedPref" severity="ignore"/> 14 <issue id="UnusedResources" severity="ignore"/> 15 <issue id="IconColors" severity="ignore"/> 16 <issue id="IconDipSize" severity="ignore"/> 17 <issue id="IconDuplicatesConfig" severity="ignore"/> 18 <issue id="RelativeOverlap" severity="ignore"/> 19 <issue id="RtlCompat" severity="ignore"/> [all …]
|
/external/llvm-project/lld/test/wasm/ |
D | unresolved-symbols.s | 20 ## Ignore all should not produce error and should not produce 23 # RUN: wasm-ld %t1.o -o %t2.wasm --unresolved-symbols=ignore-all 24 # RUN: obj2yaml %t2.wasm | FileCheck -check-prefix=IGNORE %s 25 # IGNORE-NOT: - Type: IMPORT 26 # IGNORE-NOT: - Type: ELEM 28 # IGNORE: - Type: CODE 29 # IGNORE-NEXT: Functions: 30 # IGNORE-NEXT: - Index: 0 31 # IGNORE-NEXT: Locals: [] 32 # IGNORE-NEXT: Body: 000B [all …]
|
/external/llvm/test/Bindings/OCaml/ |
D | core.ml | 104 ignore (define_global "const_int" c m); 113 ignore (define_global "const_sext_int" c m); 121 ignore (define_global "const_zext_int64" c m); 129 ignore (define_global "const_int_string" c m); 139 ignore (define_global "const_int64" c m) ; 153 ignore (define_global "const_string" c m); 161 ignore (define_global "const_stringz" c m); 172 ignore (define_global "const_single" cs m); 177 ignore (define_global "const_double" cd m); 182 ignore (define_global "const_double_string" cd m); [all …]
|
/external/llvm-project/llvm/test/Bindings/OCaml/ |
D | core.ml | 114 ignore (define_global "const_int" c m); 123 ignore (define_global "const_sext_int" c m); 131 ignore (define_global "const_zext_int64" c m); 139 ignore (define_global "const_int_string" c m); 149 ignore (define_global "const_int64" c m) ; 163 ignore (define_global "const_string" c m); 171 ignore (define_global "const_stringz" c m); 182 ignore (define_global "const_single" cs m); 187 ignore (define_global "const_double" cd m); 192 ignore (define_global "const_double_string" cd m); [all …]
|
/external/python/cpython2/Lib/test/ |
D | test_pyclbr.py | 25 # members to ignore. 29 def assertListEq(self, l1, l2, ignore): argument 30 ''' succeed iff {l1} - {ignore} == {l2} - {ignore} ''' 31 missing = (set(l1) ^ set(l2)) - set(ignore) 33 print >>sys.stderr, "l1=%r\nl2=%r\nignore=%r" % (l1, l2, ignore) 36 def assertHasattr(self, obj, attr, ignore): argument 37 ''' succeed iff hasattr(obj,attr) or attr in ignore. ''' 38 if attr in ignore: return 44 def assertHaskey(self, obj, key, ignore): argument 45 ''' succeed iff key in obj or key in ignore. ''' [all …]
|
/external/grpc-grpc-java/netty/src/test/java/io/grpc/netty/ |
D | NettyServerTest.java | 66 1, // ignore in getPort() 67 1, // ignore in getPort() 68 1, // ignore in getPort() 69 1, // ignore in getPort() 70 1, // ignore in getPort() 71 1, 1, // ignore in getPort() 72 1, 1, // ignore in getPort() 73 true, 0, // ignore in getPort() 104 1, // ignore in getPort_notStarted() 105 1, // ignore in getPort_notStarted() [all …]
|
/external/python/cpython3/Lib/test/ |
D | test_pyclbr.py | 22 # members to ignore. 26 def assertListEq(self, l1, l2, ignore): argument 27 ''' succeed iff {l1} - {ignore} == {l2} - {ignore} ''' 28 missing = (set(l1) ^ set(l2)) - set(ignore) 30 print("l1=%r\nl2=%r\nignore=%r" % (l1, l2, ignore), file=sys.stderr) 33 def assertHasattr(self, obj, attr, ignore): argument 34 ''' succeed iff hasattr(obj,attr) or attr in ignore. ''' 35 if attr in ignore: return 41 def assertHaskey(self, obj, key, ignore): argument 42 ''' succeed iff key in obj or key in ignore. ''' [all …]
|
/external/mockito/src/test/java/org/mockitousage/ |
D | CompilationWarningsTest.java | 30 doAnswer(ignore()).doReturn(null).when(mock(IMethods.class)).objectReturningMethodNoArgs(); in no_warnings_for_most_common_api() 31 … doAnswer(ignore()).doReturn("a", 12).when(mock(IMethods.class)).objectReturningMethodNoArgs(); in no_warnings_for_most_common_api() 32 doAnswer(ignore()).doReturn(1000).when(mock(IMethods.class)).objectReturningMethodNoArgs(); in no_warnings_for_most_common_api() 33 …doAnswer(ignore()).doThrow(new NullPointerException()).when(mock(IMethods.class)).objectReturningM… in no_warnings_for_most_common_api() 34 …doAnswer(ignore()).doThrow(new NullPointerException(), new IllegalArgumentException()).when(mock(I… in no_warnings_for_most_common_api() 35 …doAnswer(ignore()).doThrow(NullPointerException.class).when(mock(IMethods.class)).objectReturningM… in no_warnings_for_most_common_api() 44 when(mock(IMethods.class).objectReturningMethodNoArgs()).then(ignore()).thenReturn(null); in no_warnings_for_most_common_api() 45 … when(mock(IMethods.class).objectReturningMethodNoArgs()).then(ignore()).thenReturn("a", 12L); in no_warnings_for_most_common_api() 46 when(mock(IMethods.class).objectReturningMethodNoArgs()).then(ignore()).thenReturn(1000); in no_warnings_for_most_common_api() 47 …when(mock(IMethods.class).objectReturningMethodNoArgs()).then(ignore()).thenThrow(new NullPointerE… in no_warnings_for_most_common_api() [all …]
|
/external/mesa3d/docs/relnotes/ |
D | 17.1.10.rst | 44 - cherry-ignore: add "st/mesa: skip draw calls with 46 - cherry-ignore: add "radv: use amdgpu_bo_va_op_raw." 47 - cherry-ignore: add "radv: use simpler indirect packet 3 if possible." 48 - cherry-ignore: add "radeonsi: don't always apply the PrimID 50 - cherry-ignore: add "intel/eu/validate: Look up types on demand in 52 - cherry-ignore: add "radv: gfx9 fixes" 53 - cherry-ignore: add "radv/gfx9: set mip0-depth correctly for 2d 55 - cherry-ignore: add "radv/gfx9: fix image resource handling." 56 - cherry-ignore: add "docs/egl: remove reference to EGL_DRIVERS_PATH" 57 - cherry-ignore: add "radv: Disable multilayer & multilevel DCC." [all …]
|
D | 17.0.5.rst | 39 - cherry-ignore: Add the pci_id into the shader cache UUID 40 - cherry-ignore: fix crash if ctx torn down with no rendering 41 - cherry-ignore: Fix typos. 42 - cherry-ignore: Revert "etnaviv: Cannot render to rb-swapped formats" 43 - cherry-ignore: Revert "i965/fs: Don't emit SEL instructions for 45 - cherry-ignore: fix typo in a2b10g10r10 fast clear calculation 46 - cherry-ignore: remove unused anv_dispatch_table dtable 47 - cherry-ignore: remove unused radv_dispatch_table dtable 48 - cherry-ignore: make radv_resolve_entrypoint static 49 - cherry-ignore: vulkan: add support for libmesa_vulkan_util [all …]
|
/external/mesa3d/src/compiler/glsl/ |
D | ir_equals.cpp | 32 enum ir_node_type ignore) in possibly_null_equals() argument 37 return a->equals(b, ignore); in possibly_null_equals() 86 enum ir_node_type ignore) const in equals() 95 if (!array->equals(other->array, ignore)) in equals() 98 if (!array_index->equals(other->array_index, ignore)) in equals() 106 enum ir_node_type ignore) const in equals() 115 if (ignore != ir_type_swizzle) { in equals() 124 return val->equals(other->val, ignore); in equals() 128 ir_texture::equals(const ir_instruction *ir, enum ir_node_type ignore) const in equals() 140 if (!possibly_null_equals(coordinate, other->coordinate, ignore)) in equals() [all …]
|
/external/arm-trusted-firmware/ |
D | .checkpatch.conf | 17 --ignore SPDX_LICENSE_TAG 36 # Ignore the following message types, as they don't necessarily make sense in 41 --ignore COMPLEX_MACRO 44 --ignore GERRIT_CHANGE_ID 48 --ignore GIT_COMMIT_ID 53 --ignore FILE_PATH_CHANGES 58 --ignore AVOID_EXTERNS 63 --ignore NEW_TYPEDEFS 66 --ignore NOT_UNIFIED_DIFF 71 --ignore VOLATILE [all …]
|
/external/llvm-project/llvm/test/Transforms/SROA/ |
D | ignore-droppable.ll | 11 ; CHECK-NEXT: call void @llvm.assume(i1 true) [ "nonnull"(i32* [[ARG:%.*]]), "ignore"(i32* undef… 12 ; CHECK-NEXT: call void @llvm.assume(i1 true) [ "ignore"(i32* undef, i64 8), "nonnull"(i32* [[AR… 41 ; CHECK-NEXT: call void @llvm.assume(i1 true) [ "ignore"({ i8, i16 }* undef, i64 8), "ignore"({ … 42 ; CHECK-NEXT: call void @llvm.assume(i1 true) [ "ignore"({ i8, i16 }* undef), "ignore"({ i8, i16… 54 ; CHECK-NEXT: call void @llvm.assume(i1 true) [ "ignore"(i8* undef, i64 8), "ignore"(i8* undef, … 55 ; CHECK-NEXT: call void @llvm.assume(i1 true) [ "ignore"(i8* undef), "ignore"(i8* undef, i64 2) ] 70 …HECK-NEXT: call void @llvm.assume(i1 true) [ "ignore"(i8* undef), "ignore"(i8* undef, i64 8), "… 71 …HECK-NEXT: call void @llvm.assume(i1 true) [ "ignore"(i8* undef), "ignore"(i8* undef, i64 2), "… 72 …ECK-NEXT: call void @llvm.assume(i1 true) [ "ignore"(i32* undef), "ignore"(i32* undef, i64 2), …
|
/external/llvm-project/llvm/test/Transforms/Mem2Reg/ |
D | ignore-droppable.ll | 11 ; CHECK-NEXT: call void @llvm.assume(i1 true) [ "nonnull"(i32* [[ARG:%.*]]), "ignore"(i32* undef… 12 ; CHECK-NEXT: call void @llvm.assume(i1 true) [ "ignore"(i32* undef, i64 8), "nonnull"(i32* [[AR… 41 ; CHECK-NEXT: call void @llvm.assume(i1 true) [ "ignore"({ i8, i16 }* undef, i64 8), "ignore"({ … 42 ; CHECK-NEXT: call void @llvm.assume(i1 true) [ "ignore"({ i8, i16 }* undef), "ignore"({ i8, i16… 54 ; CHECK-NEXT: call void @llvm.assume(i1 true) [ "ignore"(i8* undef, i64 8), "ignore"(i8* undef, … 55 ; CHECK-NEXT: call void @llvm.assume(i1 true) [ "ignore"(i8* undef), "ignore"(i8* undef, i64 2) ] 70 …HECK-NEXT: call void @llvm.assume(i1 true) [ "ignore"(i8* undef), "ignore"(i8* undef, i64 8), "… 71 …HECK-NEXT: call void @llvm.assume(i1 true) [ "ignore"(i8* undef), "ignore"(i8* undef, i64 2), "… 72 …ECK-NEXT: call void @llvm.assume(i1 true) [ "ignore"(i32* undef), "ignore"(i32* undef, i64 2), …
|
/external/selinux/libselinux/src/ |
D | selinuxswig.i | 44 /* Ignore functions that don't make sense when wrapped */ 45 %ignore freecon; 46 %ignore freeconary; 48 /* Ignore functions that take a function pointer as an argument */ 49 %ignore set_matchpathcon_printf; 50 %ignore set_matchpathcon_invalidcon; 51 %ignore set_matchpathcon_canoncon; 53 %ignore avc_add_callback; 55 /* Ignore netlink stuff for now */ 56 %ignore avc_netlink_acquire_fd; [all …]
|
/external/libcxx/test/std/utilities/tuple/tuple.general/ |
D | ignore.pass.cpp | 12 // constexpr unspecified ignore; 24 { // Test that std::ignore provides constexpr converting assignment. in test_ignore_constexpr() 25 auto& res = (std::ignore = 42); in test_ignore_constexpr() 26 assert(&res == &std::ignore); in test_ignore_constexpr() 28 { // Test that std::ignore provides constexpr copy/move constructors in test_ignore_constexpr() 29 auto copy = std::ignore; in test_ignore_constexpr() 33 { // Test that std::ignore provides constexpr copy/move assignment in test_ignore_constexpr() 34 auto copy = std::ignore; in test_ignore_constexpr() 35 copy = std::ignore; in test_ignore_constexpr() 36 auto moved = std::ignore; in test_ignore_constexpr() [all …]
|
/external/llvm-project/libcxx/test/std/utilities/tuple/tuple.general/ |
D | ignore.pass.cpp | 11 // constexpr unspecified ignore; 23 { // Test that std::ignore provides constexpr converting assignment. in test_ignore_constexpr() 24 auto& res = (std::ignore = 42); in test_ignore_constexpr() 25 assert(&res == &std::ignore); in test_ignore_constexpr() 27 { // Test that std::ignore provides constexpr copy/move constructors in test_ignore_constexpr() 28 auto copy = std::ignore; in test_ignore_constexpr() 32 { // Test that std::ignore provides constexpr copy/move assignment in test_ignore_constexpr() 33 auto copy = std::ignore; in test_ignore_constexpr() 34 copy = std::ignore; in test_ignore_constexpr() 35 auto moved = std::ignore; in test_ignore_constexpr() [all …]
|
/external/conscrypt/android/ |
D | lint.xml | 5 <ignore path="**/org/conscrypt/Java7ExtendedSSLSession.java" /> 6 <ignore path="**/org/conscrypt/Java8ExtendedSSLSession.java" /> 7 <ignore path="**/org/conscrypt/Java8EngineWrapper.java" /> 8 <ignore path="**/org/conscrypt/Java8EngineSocket.java" /> 9 <ignore path="**/org/conscrypt/Java8FileDescriptorSocket.java" /> 11 <ignore path="**/org/conscrypt/ConscryptEngineSocket.java" /> 13 <ignore path="**/org/conscrypt/TrustManagerImpl.java" /> 18 <ignore path="**/common/src/main/java/**/*.java" /> 23 <ignore path="**/common/src/main/java/org/conscrypt/OpenSSLECKeyPairGenerator.java" /> 24 <ignore path="**/common/src/main/java/org/conscrypt/AbstractConscryptEngine.java" /> [all …]
|
/external/setupdesign/main/res/values/ |
D | layouts.xml | 22 <!-- Ignore UnusedResources: can be used by clients --> 23 …<item name="sud_template_short" type="layout" tools:ignore="UnusedResources">@layout/sud_template_… 27 <!-- Ignore UnusedResources: can be used by clients --> 28 …<item name="sud_list_template_short" type="layout" tools:ignore="UnusedResources">@layout/sud_list… 30 <!-- Ignore UnusedResources: can be used by clients --> 31 …<item name="sud_no_scroll_template" type="layout" tools:ignore="UnusedResources">@layout/sud_no_sc… 33 <!-- Ignore UnusedResources: can be used by clients --> 34 …<item name="sud_no_scroll_template_short" type="layout" tools:ignore="UnusedResources">@layout/sud… 40 <!-- Ignore UnusedResources: can be used by clients --> 41 …<item name="sud_glif_blank_template" type="layout" tools:ignore="UnusedResources">@layout/sud_glif… [all …]
|
/external/python/oauth2client/ |
D | tox.ini | 21 commands = nosetests --ignore-files=test_appengine\.py --ignore-files=test__appengine_ndb\.py {posa… 33 --ignore-files=test_appengine\.py \ 34 --ignore-files=test__appengine_ndb\.py 58 --ignore-files=test_appengine\.py \ 59 --ignore-files=test__appengine_ndb\.py \ 60 --ignore-files=test_keyring_storage\.py \ 72 --ignore-files=test_appengine\.py \ 73 --ignore-files=test__appengine_ndb\.py \ 74 --ignore-files=test_django_orm\.py \ 75 --ignore-files=test_django_settings\.py \ [all …]
|
/external/python/setuptools/ |
D | pytest.ini | 2 …ignore release.py --ignore setuptools/lib2to3_ex.py --ignore tests/manual_test.py --ignore tests/t… 4 flake8-ignore = key
|
/external/llvm-project/compiler-rt/test/tsan/ |
D | ignored-interceptors-mmap.cpp | 3 // RUN: %run %t ignore 2>&1 | FileCheck %s --check-prefix=CHECK-IGNORE 14 // respects ignore annotations. 17 void mmap_ignored(bool ignore) { in mmap_ignored() argument 20 if (ignore) AnnotateIgnoreWritesBegin(__FILE__, __LINE__); in mmap_ignored() 22 if (ignore) AnnotateIgnoreWritesEnd(__FILE__, __LINE__); in mmap_ignored() 37 bool ignore = (argc > 1) && (strcmp(argv[1], "ignore") == 0); in main() local 42 mmap_ignored(ignore); in main() 52 // CHECK-IGNORE-NOT: WARNING: ThreadSanitizer: data race 53 // CHECK-IGNORE: OK
|