Lines Matching refs:enable_if
8 int open(const char *pathname, int flags) __attribute__((enable_if(!(flags & O_CREAT), "must specif…
29 __attribute__((enable_if(__builtin_object_size(s, 0) != -1, in strnlen()
37 __attribute__((enable_if(__builtin_object_size(s, 0) != -1,
39 __attribute__((enable_if(maxlen <= __builtin_object_size(s, 0),
45 __attribute__((enable_if(__builtin_object_size(s, 0) != -1,
47 __attribute__((enable_if(maxlen > __builtin_object_size(s, 0),
69 …__attribute__((enable_if(c <= -1 || c > 255, "'c' must have the value of an unsigned char or EOF")…
81 __attribute__((enable_if(n == 0, "chosen when 'n' is zero"))) void f1(int n); // expected-error{{us…
83 int n __attribute__((enable_if(1, "always chosen"))); // expected-warning{{'enable_if' attribute on…
85 void f(int n) __attribute__((enable_if("chosen when 'n' is zero", n == 0))); // expected-error{{'e…
87 void f(int n) __attribute__((enable_if())); // expected-error{{'enable_if' attribute requires exac…
89 void f(int n) __attribute__((enable_if(unresolvedid, "chosen when 'unresolvedid' is non-zero"))); …
92 void f(int n) __attribute__((enable_if(global == 0, "chosen when 'global' is zero"))); // expected…
95 void return_cst(void) __attribute__((overloadable)) __attribute__((enable_if(cst == 7, "chosen when…