/external/clang/test/SemaCXX/ |
warn-unused-attribute.cpp | 2 struct __attribute__((warn_unused)) Test { 18 int i __attribute__((warn_unused)) = 12; // expected-warning {{'warn_unused' attribute only applies to struct, union or class}}
|
warn-unused-value.cpp | 58 struct __attribute__((warn_unused)) Unused {
|
/external/clang/test/SemaObjC/ |
method-unused-attribute.m | 5 - (void) will_warn_unused_arg: (void *) notice : (id)warn_unused; 12 - (void) will_warn_unused_arg: (void *) __attribute__((unused)) notice : (id)warn_unused {} // expected-warning {{unused parameter 'warn_unused'}}
|
/art/runtime/base/unix_file/ |
fd_file.h | 54 int Close() OVERRIDE WARN_UNUSED; 55 int64_t Read(char* buf, int64_t byte_count, int64_t offset) const OVERRIDE WARN_UNUSED; 56 int SetLength(int64_t new_length) OVERRIDE WARN_UNUSED; 58 int64_t Write(const char* buf, int64_t byte_count, int64_t offset) OVERRIDE WARN_UNUSED; 59 int Flush() OVERRIDE WARN_UNUSED; 65 int FlushCloseOrErase() WARN_UNUSED; 68 int FlushClose() WARN_UNUSED; 79 bool ReadFully(void* buffer, size_t byte_count) WARN_UNUSED; 80 bool PreadFully(void* buffer, size_t byte_count, size_t offset) WARN_UNUSED; 81 bool WriteFully(const void* buffer, size_t byte_count) WARN_UNUSED; [all...] |
/external/selinux/libsemanage/src/ |
utilities.h | 31 #define WARN_UNUSED \ 34 # define WARN_UNUSED /* nothing */ 55 char *semanage_findval(const char *file, const char *var, const char *delim) WARN_UNUSED; 68 int semanage_is_prefix(const char *str, const char *val) WARN_UNUSED; 74 char *semanage_split_on_space(const char *str) WARN_UNUSED; 85 char *semanage_split(const char *str, const char *delim) WARN_UNUSED; 91 int semanage_list_push(semanage_list_t ** list, const char *data) WARN_UNUSED; 95 const char *data) WARN_UNUSED; 96 int semanage_list_sort(semanage_list_t ** l) WARN_UNUSED; 136 WARN_UNUSED; [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/include/isl/ |
ctx.h | 42 #define WARN_UNUSED GCC_WARN_UNUSED_RESULT 44 #define WARN_UNUSED
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/include/isl/ |
ctx.h | 42 #define WARN_UNUSED GCC_WARN_UNUSED_RESULT 44 #define WARN_UNUSED
|
/art/runtime/arch/ |
instruction_set_features.h | 63 std::string* error_msg) const WARN_UNUSED;
|
/art/runtime/base/ |
bit_utils.h | 114 static constexpr T RoundDown(T x, typename Identity<T>::type n) WARN_UNUSED; 124 static constexpr T RoundUp(T x, typename std::remove_reference<T>::type n) WARN_UNUSED; 133 static inline T* AlignDown(T* x, uintptr_t n) WARN_UNUSED; 141 static inline T* AlignUp(T* x, uintptr_t n) WARN_UNUSED;
|
macros.h | 179 #define WARN_UNUSED __attribute__((warn_unused_result))
|
/external/deqp/framework/delibs/decpp/ |
deDefs.hpp | 122 # if __has_attribute(warn_unused) 123 # define DE_WARN_UNUSED_TYPE __attribute__((warn_unused))
|
/art/runtime/ |
handle_scope.h | 92 WARN_UNUSED {
|
dex_instruction.h | 207 const Instruction* RelativeAt(int32_t offset) const WARN_UNUSED {
|
class_linker.h | [all...] |
/system/core/base/include/android-base/ |
macros.h | 129 #define WARN_UNUSED __attribute__((warn_unused_result))
|
/external/clang/unittests/ASTMatchers/Dynamic/ |
RegistryTest.cpp | 505 EXPECT_TRUE(matches("struct __attribute__((warn_unused)) X {};", Value));
|
/external/v8/tools/ |
run-tests.py | 722 s.FilterTestCasesByStatus(options.warn_unused, options.flaky_tests,
|
/external/clang/include/clang/Basic/ |
Attr.td | [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/ |
options.h | 1082 extern int warn_unused; 1085 #define warn_unused global_options.x_warn_unused macro [all...] |
/external/clang/unittests/ASTMatchers/ |
ASTMatchersTest.cpp | 712 EXPECT_TRUE(matches("struct __attribute__((warn_unused)) X {};", [all...] |