• Home
  • Raw
  • Download

Lines Matching refs:__attribute__

10 …har *pathname, int flags) __attribute__((enable_if(!(flags & O_CREAT), "must specify mode when usi…
11 int open(const char *pathname, int flags, mode_t mode) __attribute__((overloadable)); // expected-…
25 __attribute__((overloadable))
28 __attribute__((always_inline))
30 __attribute__((overloadable)) in strnlen()
31 __attribute__((enable_if(__builtin_object_size(s, 0) != -1, in strnlen()
38 __attribute__((overloadable))
39 __attribute__((enable_if(__builtin_object_size(s, 0) != -1,
41 __attribute__((enable_if(maxlen <= __builtin_object_size(s, 0),
46 __attribute__((overloadable))
47 __attribute__((enable_if(__builtin_object_size(s, 0) != -1,
49 __attribute__((enable_if(maxlen > __builtin_object_size(s, 0),
51 __attribute__((unavailable("'maxlen' is larger than the buffer size")));
69 int isdigit(int c) __attribute__((overloadable)); // expected-note{{candidate function}}
70 int isdigit(int c) __attribute__((overloadable)) // expected-note{{candidate function has been exp…
71__attribute__((enable_if(c <= -1 || c > 255, "'c' must have the value of an unsigned char or EOF")…
72 __attribute__((unavailable("'c' must have the value of an unsigned char or EOF")));
83 int isdigit2(int c) __attribute__((overloadable)); // expected-note{{candidate function}}
84 int isdigit2(int c) __attribute__((overloadable)) // expected-note{{candidate function has been ex…
85__attribute__((__enable_if__(c <= -1 || c > 255, "'c' must have the value of an unsigned char or E…
86 __attribute__((unavailable("'c' must have the value of an unsigned char or EOF")));
104 __attribute__((enable_if(n == 0, "chosen when 'n' is zero"))) void f1(int n); // expected-error{{us…
106 int n __attribute__((enable_if(1, "always chosen"))); // expected-warning{{'enable_if' attribute on…
108 void f(int n) __attribute__((enable_if("chosen when 'n' is zero", n == 0))); // expected-error{{'e…
110 void f(int n) __attribute__((enable_if())); // expected-error{{'enable_if' attribute requires exac…
112 void f(int n) __attribute__((enable_if(unresolvedid, "chosen when 'unresolvedid' is non-zero"))); …
115 void f(int n) __attribute__((enable_if(global == 0, "chosen when 'global' is zero"))); // expected…
118 void return_cst(void) __attribute__((overloadable)) __attribute__((enable_if(cst == 7, "chosen when…
121 void f2(void) __attribute__((overloadable)) __attribute__((enable_if(1, "always chosen")));
122 void f2(void) __attribute__((overloadable)) __attribute__((enable_if(0, "never chosen")));
123 void f2(void) __attribute__((overloadable)) __attribute__((enable_if(TRUE, "always chosen #2")));
131 void f3(int m) __attribute__((overloadable)) __attribute__((enable_if(m >= 0, "positive")));
132 void f3(int m) __attribute__((overloadable)) __attribute__((enable_if(m < 0, "negative")));
140 void f4(int m) __attribute__((enable_if(0, "")));