/prebuilts/go/darwin-x86/test/fixedbugs/ |
issue4463.go | 48 go append(a, 0) // ERROR "not used|discards result" 49 go cap(a) // ERROR "not used|discards result" 50 go complex(1, 2) // ERROR "not used|discards result" 51 go imag(1i) // ERROR "not used|discards result" 52 go len(a) // ERROR "not used|discards result" 53 go make([]int, 10) // ERROR "not used|discards result" 54 go new(int) // ERROR "not used|discards result" 55 go real(1i) // ERROR "not used|discards result" 56 go unsafe.Alignof(a) // ERROR "not used|discards result" 57 go unsafe.Offsetof(s.f) // ERROR "not used|discards result [all...] |
issue4654.go | 23 defer append(x, 1) // ERROR "defer discards result of append|is not used" 24 defer cap(x) // ERROR "defer discards result of cap|is not used" 25 defer complex(1, 2) // ERROR "defer discards result of complex|is not used" 26 defer complex(f, 1) // ERROR "defer discards result of complex|is not used" 27 defer imag(1i) // ERROR "defer discards result of imag|is not used" 28 defer imag(c) // ERROR "defer discards result of imag|is not used" 29 defer len(x) // ERROR "defer discards result of len|is not used" 30 defer make([]int, 1) // ERROR "defer discards result of make|is not used" 31 defer make(chan bool) // ERROR "defer discards result of make|is not used" 32 defer make(map[string]int) // ERROR "defer discards result of make|is not used [all...] |
/prebuilts/go/linux-x86/test/fixedbugs/ |
issue4463.go | 48 go append(a, 0) // ERROR "not used|discards result" 49 go cap(a) // ERROR "not used|discards result" 50 go complex(1, 2) // ERROR "not used|discards result" 51 go imag(1i) // ERROR "not used|discards result" 52 go len(a) // ERROR "not used|discards result" 53 go make([]int, 10) // ERROR "not used|discards result" 54 go new(int) // ERROR "not used|discards result" 55 go real(1i) // ERROR "not used|discards result" 56 go unsafe.Alignof(a) // ERROR "not used|discards result" 57 go unsafe.Offsetof(s.f) // ERROR "not used|discards result [all...] |
issue4654.go | 23 defer append(x, 1) // ERROR "defer discards result of append|is not used" 24 defer cap(x) // ERROR "defer discards result of cap|is not used" 25 defer complex(1, 2) // ERROR "defer discards result of complex|is not used" 26 defer complex(f, 1) // ERROR "defer discards result of complex|is not used" 27 defer imag(1i) // ERROR "defer discards result of imag|is not used" 28 defer imag(c) // ERROR "defer discards result of imag|is not used" 29 defer len(x) // ERROR "defer discards result of len|is not used" 30 defer make([]int, 1) // ERROR "defer discards result of make|is not used" 31 defer make(chan bool) // ERROR "defer discards result of make|is not used" 32 defer make(map[string]int) // ERROR "defer discards result of make|is not used [all...] |
/external/clang/test/Sema/ |
pointer-conversion.c | 4 char const ** c2 = &c; // expected-warning {{discards qualifiers in nested pointer types}} 7 dchar *** c3 = &c2; // expected-warning {{discards qualifiers in nested pointer types}} 10 char ** c5 = &c4; // expected-warning {{discards qualifiers in nested pointer types}}
|
warn-write-strings.c | 4 char* x = "foo"; // expected-warning {{initializing 'char *' with an expression of type 'const char [4]' discards qualifiers}}
|
predef.c | 9 expected-warning {{initializing 'char *' with an expression of type 'const char [1]' discards qualifiers}}
|
array-constraint.c | 49 strFunc(staticAry); // expected-warning{{passing 'const char [5]' to parameter of type 'char *' discards qualifiers}}
|
/external/clang/test/SemaObjC/ |
warn-write-strings.m | 4 char* x = "foo"; // expected-warning {{initializing 'char *' with an expression of type 'const char [4]' discards qualifiers}}
|
method-arg-qualifier-warning.m | 15 [@"Identifier1" isEqualToString:Identifier1]; // expected-warning {{sending 'const NSString *' to parameter of type 'NSString *' discards qualifiers}} 16 [@"Identifier2" isEqualToString:Identifier2]; // expected-warning {{sending 'const NSString *' to parameter of type 'NSString *' discards qualifiers}}
|
gc-attributes.m | 12 f0(&a2); // expected-warning{{passing 'A *__weak *' to parameter of type 'A *__strong *' discards qualifiers}} 21 f1(&a2); // expected-warning{{passing 'A *__strong *' to parameter of type 'A *__weak *' discards qualifiers}}
|
/external/valgrind/tests/ |
filter_discards | 5 # Remove number and position of discards
|
/external/tcpdump/tests/ |
sflow_multiple_counter_30_pdus.out | 7 In octets 820721, unicast pkts 9601, multicast pkts 0, broadcast pkts 1302, discards 0 9 Out octets 178785248, unicast pkts 9736, multicast pkts 132958, broadcast pkts 2213534, discards 0 19 In octets 156084746, unicast pkts 473593, multicast pkts 0, broadcast pkts 1862745, discards 0 21 Out octets 59635889, unicast pkts 8834, multicast pkts 132958, broadcast pkts 352092, discards 0 31 In octets 3051593057, unicast pkts 52919488, multicast pkts 1491, broadcast pkts 956, discards 0 33 Out octets 1525716840, unicast pkts 30013667, multicast pkts 131467, broadcast pkts 2213880, discards 0 43 In octets 0, unicast pkts 0, multicast pkts 0, broadcast pkts 0, discards 0 45 Out octets 178404732, unicast pkts 3035, multicast pkts 132958, broadcast pkts 2214836, discards 0 55 In octets 0, unicast pkts 0, multicast pkts 0, broadcast pkts 0, discards 0 57 Out octets 178368955, unicast pkts 3031, multicast pkts 132840, broadcast pkts 2214791, discards [all...] |
/external/ppp/pppd/ |
Android.mk | 29 # options.c:623:21: error: passing 'const char *' to parameter of type 'char *' discards qualifiers. 30 # [-Werror,-Wincompatible-pointer-types-discards-qualifiers] 31 LOCAL_CLANG_CFLAGS += -Wno-incompatible-pointer-types-discards-qualifiers
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-elf/ |
linkoncerdiff2.s | 16 /* ld currently incorrectly silently discards this relocation. Just such
|
/external/jdiff/src/jdiff/ |
DiffMyers.java | 569 final byte[] discards = new byte[end]; 586 discards[i] = 1; 588 discards[i] = 2; 590 return discards; 597 private void filterDiscards(final byte[] discards) { 602 /* Cancel provisional discards not in middle of run of discards. */ 603 if (discards[i] == 2) 604 discards[i] = 0; 605 else if (discards[i] != 0 [all...] |
/external/mesa3d/src/glsl/ |
lower_discard.cpp | 27 * This pass moves discards out of if-statements. 102 * If there are multiple conditional discards, we need only deal with one of 105 * Unconditional discards are treated as having a condition of "true". 152 /* For unconditional discards, use "true" as the condition. */
|
/external/webrtc/webrtc/modules/audio_coding/neteq/tools/ |
packet_source.h | 44 // If SSRC filtering discards all packet that do not match the SSRC.
|
/frameworks/base/core/java/com/android/internal/widget/ |
TextViewInputDisabler.java | 25 * that discards all changes. Use with care if you have customized InputFilter on the target
|
/device/moto/shamu/camera/QCamera2/stack/mm-camera-interface/ |
Android.mk | 10 -Wno-error=incompatible-pointer-types-discards-qualifiers \
|
/external/guava/guava/src/com/google/common/io/ |
ByteArrayDataOutput.java | 45 * @deprecated This method is dangerous as it discards the high byte of
|
/external/webrtc/webrtc/modules/audio_coding/neteq/ |
packet_buffer.cc | 197 size_t discards = 0; local 204 ++discards; 208 assert(discards == 0); 210 *discard_count = discards;
|
packet_buffer.h | 93 // Discards the first packet in the buffer. The packet is deleted. 98 // Discards all packets that are (strictly) older than timestamp_limit, 107 // Discards all packets that are (strictly) older than timestamp_limit.
|
/external/guava/guava/src/com/google/common/cache/ |
Cache.java | 109 * Discards any cached value for key {@code key}. 114 * Discards any cached values for keys {@code keys}. 121 * Discards all entries in the cache.
|
/external/libjpeg-turbo/ |
transupp.h | 54 * We also offer a lossless-crop option, which discards data outside a given 65 * operation in the DCT coefficient block domain - it discards higher-order 73 * We also offer a "force to grayscale" option, which simply discards the
|