HomeSort by relevance Sort by last modified time
    Searched refs:warn_unused_result (Results 1 - 25 of 34) sorted by null

1 2

  /external/clang/test/SemaCXX/
warn-unused-result.cpp 3 int f() __attribute__((warn_unused_result));
8 S g1() __attribute__((warn_unused_result));
9 S *g2() __attribute__((warn_unused_result));
10 S &g3() __attribute__((warn_unused_result));
37 int foo() __attribute__((warn_unused_result));
47 struct [[clang::warn_unused_result]] Status {
cxx11-attr-print.cpp 31 // CHECK: int f1() __attribute__((warn_unused_result));
32 int f1() __attribute__((warn_unused_result));
34 // CHECK: {{\[}}[clang::warn_unused_result]];
35 int f2 [[clang::warn_unused_result]] ();
37 // CHECK: {{\[}}[gnu::warn_unused_result]];
38 int f3 [[gnu::warn_unused_result]] ();
  /external/kernel-headers/original/linux/usb/
functionfs.h 175 static int functionfs_init(void) __attribute__((warn_unused_result));
179 __attribute__((warn_unused_result, nonnull));
186 __attribute__((warn_unused_result, nonnull));
190 __attribute__((warn_unused_result, nonnull));
194 __attribute__((warn_unused_result, nonnull));
  /external/clang/test/Sema/
unused-expr.c 77 int t5f(void) __attribute__((warn_unused_result));
79 t5f(); // expected-warning {{ignoring return value of function declared with warn_unused_result}}
83 int fn1() __attribute__ ((warn_unused_result));
91 fn1(); // expected-warning {{ignoring return value of function declared with warn_unused_result attribute}}
95 (void)0, fn1(); // expected-warning {{ignoring return value of function declared with warn_unused_result attribute}}
99 int t7 __attribute__ ((warn_unused_result)); // expected-warning {{'warn_unused_result' attribute only applies to functions}}
102 int (*fn4)(void) __attribute__ ((warn_unused_result));
104 fn4(); // expected-warning {{ignoring return value of function declared with warn_unused_result attribute}}
107 void t9() __attribute__((warn_unused_result)); // expected-warning {{attribute 'warn_unused_result' cannot be applied to functions without ret (…)
    [all...]
  /libnativehelper/include/nativehelper/
ScopedLocalRef.h 44 T release() __attribute__((warn_unused_result)) {
UniquePtr.h 68 T* release() __attribute__((warn_unused_result)) {
119 T* release() __attribute__((warn_unused_result)) {
  /external/ceres-solver/include/ceres/internal/
macros.h 151 #define MUST_USE_RESULT __attribute__ ((warn_unused_result))
  /external/clang/test/Misc/
ast-dump-attr.cpp 26 [[clang::warn_unused_result]] int TestCXX11DeclAttr();
  /external/chromium/base/
compiler_specific.h 97 // int foo() WARN_UNUSED_RESULT;
99 #define WARN_UNUSED_RESULT __attribute__((warn_unused_result))
101 #define WARN_UNUSED_RESULT
  /system/core/include/utils/
UniquePtr.h 75 T* release() __attribute__((warn_unused_result)) {
121 T* release() __attribute__((warn_unused_result)) {
  /external/chromium_org/base/
compiler_specific.h 142 // int foo() WARN_UNUSED_RESULT;
145 #define WARN_UNUSED_RESULT __attribute__((warn_unused_result))
147 #define WARN_UNUSED_RESULT
  /external/chromium_org/third_party/WebKit/Source/wtf/
Compiler.h 203 #define WARN_UNUSED_RETURN __attribute__ ((warn_unused_result))
  /external/chromium_org/third_party/skia/include/core/
SkPreConfig.h 90 #define SK_WARN_UNUSED_RESULT __attribute__((warn_unused_result))
  /external/skia/include/core/
SkPreConfig.h 90 #define SK_WARN_UNUSED_RESULT __attribute__((warn_unused_result))
  /external/sfntly/cpp/
CMakeLists.txt 25 add_definitions(-D__wur=__attribute__\(\(warn_unused_result\)\) -Wall -Werror -fno-exceptions)
  /external/chromium/sdch/open-vcdiff/src/gtest/internal/
gtest-port.h 272 #define GTEST_MUST_USE_RESULT __attribute__ ((warn_unused_result))
  /external/chromium_org/v8/src/
globals.h 379 #define MUST_USE_RESULT __attribute__ ((warn_unused_result))
  /external/v8/src/
globals.h 355 #define MUST_USE_RESULT __attribute__ ((warn_unused_result))
  /external/qemu/
qemu-common.h 9 #define QEMU_WARN_UNUSED_RESULT __attribute__((warn_unused_result))
  /external/open-vcdiff/gtest/include/gtest/internal/
gtest-port.h 546 #define GTEST_MUST_USE_RESULT_ __attribute__ ((warn_unused_result))
    [all...]
  /external/protobuf/gtest/include/gtest/internal/
gtest-port.h 541 #define GTEST_MUST_USE_RESULT_ __attribute__ ((warn_unused_result))
    [all...]
  /external/chromium/testing/gtest/include/gtest/internal/
gtest-port.h 621 # define GTEST_MUST_USE_RESULT_ __attribute__ ((warn_unused_result))
    [all...]
  /external/chromium_org/testing/gtest/include/gtest/internal/
gtest-port.h 732 # define GTEST_MUST_USE_RESULT_ __attribute__ ((warn_unused_result))
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/internal/
gtest-port.h 630 # define GTEST_MUST_USE_RESULT_ __attribute__ ((warn_unused_result))
    [all...]
  /external/gtest/include/gtest/internal/
gtest-port.h 648 # define GTEST_MUST_USE_RESULT_ __attribute__ ((warn_unused_result))
    [all...]

Completed in 1401 milliseconds

1 2