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

1 2

  /external/clang/test/SemaObjC/
nonnull.h 2 #define NONNULL_ATTR __attribute__((nonnull))
  /external/clang/test/SemaCXX/
attr-nonnull.cpp 3 S(const char *) __attribute__((nonnull(2)));
5 static void f(const char*, const char*) __attribute__((nonnull(1)));
9 void g(const char*, const char*, const char*) __attribute__((nonnull(3)));
11 void h(const char*) __attribute__((nonnull(1))); // \
25 __attribute__((nonnull)) void f0(int *&p);
26 __attribute__((nonnull)) void f1(int * const &p);
27 __attribute__((nonnull(2))) void f2(int i, int * const &p);
36 __attribute__((nonnull(1))) void f(void *ptr);
46 bool operator!=(const void *) const __attribute__((nonnull(2)));
48 bool operator==(const X&, const void *) __attribute__((nonnull(2)))
    [all...]
value-dependent-exprs.cpp 29 __attribute__((nonnull(1 + I)))
cxx11-gnu-attrs.cpp 39 void nonnull [[gnu::nonnull]] (); // expected-warning {{applied to function with no pointer arguments}}
  /external/clang/test/Sema/
nonnull.c 12 __attribute__((nonnull(1))) void Class_init(Instance this, char *str) {
22 void foo(const char *str) __attribute__((nonnull("foo"))); // expected-error{{'nonnull' attribute requires parameter 1 to be an integer constant}}
23 void bar(int i) __attribute__((nonnull(1))); // expected-warning {{'nonnull' attribute only applies to pointer arguments}} expected-warning {{'nonnull' attribute applied to function with no pointer arguments}}
25 void baz(__attribute__((nonnull)) const char *str);
26 void baz2(__attribute__((nonnull(1))) const char *str); // expected-warning {{'nonnull' attribute when used on parameters takes no arguments}}
27 void baz3(__attribute__((nonnull)) int x); // expected-warning {{'nonnull' attribute only applies to pointer arguments}
    [all...]
  /external/clang/test/Parser/
attributes.c 67 int testFundef1(int *a) __attribute__((nonnull(1))) { // \
68 // expected-warning {{GCC does not allow 'nonnull' attribute in this position on a function definition}}
78 int testFundef3(int *a) __attribute__((nonnull(1), // \
79 // expected-warning {{GCC does not allow 'nonnull' attribute in this position on a function definition}}
85 int testFundef4(int *a) __attribute__((nonnull(1))) // \
86 // expected-warning {{GCC does not allow 'nonnull' attribute in this position on a function definition}}
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/
predicate_result.hpp 44 struct dummy { void nonnull() {}; }; function in struct:boost::test_tools::predicate_result::dummy
59 operator safe_bool() const { return !!p_predicate_value ? &dummy::nonnull : 0; }
mock_object.hpp 140 struct dummy { void nonnull() {}; }; function in struct:boost::itest::mock_object::dummy
241 (BOOST_ITEST_DPOINT() ? 0 : &dummy::nonnull) );
  /external/clang/test/Analysis/
null-deref-ps.c 88 int bar(int* p, int q) __attribute__((nonnull));
91 return !p ? bar(p, 1) // expected-warning {{Null pointer passed as an argument to a 'nonnull' parameter}}
95 int bar2(int* p, int q) __attribute__((nonnull(1)));
98 return !p ? bar2(p, 1) // expected-warning {{Null pointer passed as an argument to a 'nonnull' parameter}}
102 int bar3(int*p, int q, int *r) __attribute__((nonnull(1,3)));
105 return !p ? bar3(q, 2, p) // expected-warning {{Null pointer passed as an argument to a 'nonnull' parameter}}
285 void pr4759_aux(int *p) __attribute__((nonnull));
uninit-vals-ps.c 85 // PR 4630 - false warning with nonnull attribute
88 // the nonnull attribute.
89 void pr_4630_aux(char *x, int *y) __attribute__ ((nonnull (1)));
  /external/clang/test/Analysis/inlining/
inline-defensive-checks.cpp 42 Ty notNullArg(Ty cf) __attribute__((nonnull));
  /external/jemalloc/include/jemalloc/
jemalloc_protos.h 14 size_t size) JEMALLOC_ATTR(nonnull(1));
jemalloc_protos_jet.h 14 size_t size) JEMALLOC_ATTR(nonnull(1));
jemalloc_protos.h.in 14 size_t size) JEMALLOC_ATTR(nonnull(1));
jemalloc.h 125 size_t size) JEMALLOC_ATTR(nonnull(1));
  /external/bison/lib/
gnulib.mk     [all...]
  /external/chromium_org/third_party/libjingle/overrides/talk/base/
logging.cc 109 tmp << " " << nonnull(GetMacOSStatusErrorString(err), "Unknown error");
  /external/chromium_org/third_party/libjingle/source/talk/base/
proxydetect.cc 899 if (!ProxyListMatch(purl, nonnull(options[2].Value.pszValue), _T(';'))) {
900 ParseProxy(nonnull(options[1].Value.pszValue), proxy);
937 if (!ProxyListMatch(purl, nonnull(reinterpret_cast<const char*>(
939 ParseProxy(nonnull(reinterpret_cast<const char*>(info->lpszProxy)),
    [all...]
stringutils.h 159 inline const CTYPE* nonnull(const CTYPE* str, const CTYPE* def_str = NULL) { function in namespace:talk_base
  /external/chromium_org/third_party/webrtc/base/
proxydetect.cc 882 if (!ProxyListMatch(purl, nonnull(options[2].Value.pszValue), _T(';'))) {
883 ParseProxy(nonnull(options[1].Value.pszValue), proxy);
920 if (!ProxyListMatch(purl, nonnull(reinterpret_cast<const char*>(
922 ParseProxy(nonnull(reinterpret_cast<const char*>(info->lpszProxy)),
    [all...]
stringutils.h 142 inline const CTYPE* nonnull(const CTYPE* str, const CTYPE* def_str = NULL) { function in namespace:rtc
  /external/chromium_org/third_party/webrtc/overrides/webrtc/base/
logging.cc 115 tmp << " " << nonnull(GetMacOSStatusErrorString(err), "Unknown error");
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
RecognizerSharedState.as 64 * something nonnull so that the auto token emit mechanism will not
  /external/chromium_org/third_party/opus/src/
ltmain.sh     [all...]
  /external/libcap-ng/libcap-ng-0.7/
ltmain.sh     [all...]

Completed in 475 milliseconds

1 2