Searched refs:redundant (Results 1 – 25 of 132) sorted by relevance
123456
/external/clang/test/SemaObjC/ |
D | cocoa-api-usage.m.fixed | 80 NSString *str = M(@"foo"); // expected-warning {{redundant}} 81 str = @"foo"; // expected-warning {{redundant}} 82 NSArray *arr = @[str]; // expected-warning {{redundant}} 83 NSDictionary *dict = @{str: arr}; // expected-warning {{redundant}}
|
D | cocoa-api-usage.m | 80 NSString *str = M([NSString stringWithString:@"foo"]); // expected-warning {{redundant}} 81 str = [[NSString alloc] initWithString:@"foo"]; // expected-warning {{redundant}} 82 NSArray *arr = [NSArray arrayWithArray:@[str]]; // expected-warning {{redundant}} 83 …nary *dict = [NSDictionary dictionaryWithDictionary:@{str: arr}]; // expected-warning {{redundant}}
|
D | default-synthesize-3.m | 15 __attribute ((objc_requires_property_definitions)) // redundant, just for testing
|
D | arc-property.m | 52 // Minor FIXME: kill the redundant error
|
/external/llvm/test/Transforms/ObjCARC/ |
D | rle-s2l.ll | 10 ; Basic redundant @objc_loadWeak elimination. 38 ; Basic redundant @objc_loadWeakRetained elimination. 55 ; Basic redundant @objc_loadWeakRetained elimination, this time 73 ; A regular call blocks redundant weak load elimination.
|
D | gvn.ll | 7 ; GVN should be able to eliminate this redundant load, with ARC-specific
|
D | rv.ll | 67 ; Delete a redundant retainRV,autoreleaseRV when forwaring a call result 81 ; Delete a redundant retain,autoreleaseRV when forwaring a call result 95 ; Delete a redundant fused retain+autoreleaseRV when forwaring a call result
|
/external/llvm/test/Transforms/GVN/ |
D | non-local-offset.ll | 6 ; fully redundant. 30 ; fully redundant. However, the second load is larger, so it's not a simple
|
D | phi-translate-partial-alias.ll | 6 ; not actually redundant around the loop backedge, despite appearances
|
D | lpre-call-wrap-2.ll | 3 ; The partially redundant load in bb1 should be hoisted to "bb". This comes
|
D | rle-must-alias.ll | 3 ; GVN should eliminate the fully redundant %9 GEP which
|
/external/llvm/test/Analysis/TypeBasedAliasAnalysis/ |
D | gvn-nonlocal-type-mismatch.ll | 6 ; fully redundant. 29 ; fully redundant. However, the second load uses a different type. Theoretically
|
D | memcpyopt.ll | 5 ; The second memcpy is redundant and can be deleted. There's an intervening store, but
|
/external/webkit/LayoutTests/storage/domstorage/localstorage/ |
D | delete-removal-expected.txt | 10 foo (after a redundant delete) is: undefined
|
/external/webkit/LayoutTests/storage/domstorage/sessionstorage/ |
D | delete-removal-expected.txt | 10 foo (after a redundant delete) is: undefined
|
/external/llvm/test/CodeGen/ARM/ |
D | tail-opts.ll | 15 ; redundant branching.
|
/external/llvm/test/CodeGen/X86/ |
D | lsr-redundant-addressing.ll | 4 ; LSR shouldn't create lots of redundant address computations.
|
/external/llvm/test/Transforms/JumpThreading/ |
D | thread-loads.ll | 6 ; Test that we can thread through the block with the partially redundant load (%2).
|
/external/llvm/test/Transforms/LoopStrengthReduce/X86/ |
D | 2012-01-13-phielim.ll | 6 ; Check that redundant phi elimination ran 95 ; Test redundant phi elimination when the deleted phi's increment is
|
/external/bison/m4/ |
D | onceonly.m4 | 16 dnl the 'configure' file down, and avoids redundant output when 'configure'
|
/external/mesa3d/docs/ |
D | RELNOTES-6.1 | 67 The _mesa_init_driver_functions() function allows a lot of redundant code
|
/external/linux-tools-perf/ |
D | Makefile | 732 …$(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) $(PERL_EMBED_CCOPTS) -Wno-redundant-decls -Wno-strict-prot… 735 …$(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) $(PERL_EMBED_CCOPTS) -Wno-redundant-decls -Wno-strict-prot… 738 …$(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) $(PYTHON_EMBED_CCOPTS) -Wno-redundant-decls -Wno-strict-pr… 741 …$(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) $(PYTHON_EMBED_CCOPTS) -Wno-redundant-decls -Wno-strict-pr…
|
/external/clang/include/clang/Basic/ |
D | DiagnosticGroups.td | 177 def : DiagGroup<"redundant-decls">; 448 def ObjCRedundantLiteralUse : DiagGroup<"objc-redundant-literal-use">; 449 def ObjCRedundantAPIUse : DiagGroup<"objc-redundant-api-use", [
|
/external/openssl/crypto/store/ |
D | README | 65 redundant and probably of lesser usage
|
/external/llvm/test/Analysis/BasicAA/ |
D | featuretest.ll | 27 %REMOVE = load i32* %pointer ; redundant with above load
|
123456