OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:__attribute__
(Results
351 - 375
of
7811
) sorted by null
<<
11
12
13
14
15
16
17
18
19
20
>>
/external/clang/test/Parser/
access-spec-attrs.cpp
4
public
__attribute__
((unavailable)): // expected-error {{access specifier can only have annotation attributes}}
6
private
__attribute__
((annotate("foobar"))):
objc-interfaces.m
6
- (int*) foo2
__attribute__
((deprecated)) : (int) x1
__attribute__
((deprecated)); // expected-error {{expected ';' after method prototype}} expected-error {{method type specifier must start with '-' or '+'}}
/external/clang/test/Sema/
attr-msp430.c
4
void f(void)
__attribute__
((interrupt(i))); /* expected-error {{'interrupt' attribute requires an integer constant}} */
6
void f2(void)
__attribute__
((interrupt(12)));
block-printf-attribute-1.c
6
void (^b) (int arg, const char * format, ...)
__attribute__
((__format__ (__printf__, 1, 3))) = // expected-error {{format argument not a string type}}
7
^
__attribute__
((__format__ (__printf__, 1, 3))) (int arg, const char * format, ...) {}; // expected-error {{format argument not a string type}}
9
void (^z) (int arg, const char * format, ...)
__attribute__
((__format__ (__printf__, 2, 3))) = ^
__attribute__
((__format__ (__printf__, 2, 3))) (int arg, const char * format, ...) {};
17
void (^vprintf_scanf) (const char *, va_list, const char *, ...)
__attribute__
((__format__(__printf__, 1, 0)))
__attribute__
((__format__(__scanf__, 3, 4))) =
18
^
__attribute__
((__format__(__printf__, 1, 0)))
__attribute__
((__format__(__scanf__, 3, 4))) (const char *str, va_list args, const char *fmt, ...) {};
initialize-noreturn.c
4
typedef void (*Fn_noret)(void)
__attribute__
((noreturn));
8
void foo_noret(void)
__attribute__
((noreturn));
mips16_attr_not_allowed.c
3
void
__attribute__
((nomips16)) foo32(); // expected-warning {{unknown attribute 'nomips16' ignored}}
4
void
__attribute__
((mips16)) foo16(); // expected-warning {{unknown attribute 'mips16' ignored}}
neon-vector-types-support.c
3
typedef
__attribute__
((neon_vector_type(2))) int int32x2_t; // expected-error{{'neon_vector_type' attribute is not supported for this target}}
4
typedef
__attribute__
((neon_polyvector_type(16))) short poly8x16_t; // expected-error{{'neon_polyvector_type' attribute is not supported for this target}}
weak-import-on-enum.c
6
enum
__attribute__
((deprecated))
__attribute__
((weak_import)) A {
/external/clang/test/SemaCXX/
attr-after-definition.cpp
8
__attribute__
((__visibility__("hidden"))) bool f0(X); // expected-warning{{attribute}}
9
__attribute__
((__visibility__("hidden"))) bool f1(Y);
attr-flatten.cpp
3
int i
__attribute__
((flatten)); // expected-error {{'flatten' attribute only applies to functions}}
5
void f1()
__attribute__
((flatten));
6
void f2()
__attribute__
((flatten(1))); // expected-error {{'flatten' attribute takes no arguments}}
9
void tf1()
__attribute__
((flatten));
11
int f3(int
__attribute__
((flatten)), int); // expected-error{{'flatten' attribute only applies to functions}}
14
int f
__attribute__
((flatten)); // expected-error{{'flatten' attribute only applies to functions}}
15
void mf1()
__attribute__
((flatten));
16
static void mf2()
__attribute__
((flatten));
attr-no-split-stack.cpp
3
int i
__attribute__
((no_split_stack)); // expected-error {{'no_split_stack' attribute only applies to functions}}
5
void f1()
__attribute__
((no_split_stack));
6
void f2()
__attribute__
((no_split_stack(1))); // expected-error {{'no_split_stack' attribute takes no arguments}}
9
void tf1()
__attribute__
((no_split_stack));
11
int f3(int
__attribute__
((no_split_stack)), int); // expected-error{{'no_split_stack' attribute only applies to functions}}
14
int f
__attribute__
((no_split_stack)); // expected-error{{'no_split_stack' attribute only applies to functions}}
15
void mf1()
__attribute__
((no_split_stack));
16
static void mf2()
__attribute__
((no_split_stack));
builtin_objc_msgSend.cpp
8
extern "C"
__attribute__
((visibility("default"))) id objc_msgSend(id self, SEL op, ...)
9
__attribute__
((visibility("default")));
nonnull.cpp
5
__attribute__
((returns_nonnull))
10
__attribute__
((returns_nonnull))
ns_returns_retained_block_return.cpp
9
BT br()
__attribute__
((ns_returns_retained)) {
12
BT br1()
__attribute__
((ns_returns_retained));
virtual-override-x86.cpp
6
virtual void
__attribute__
((thiscall)) f(); // expected-note{{overridden virtual function is here}}
11
void
__attribute__
((cdecl)) f(); // expected-error{{virtual function 'f' has different calling convention attributes ('void ()
__attribute__
((cdecl))') than the function it overrides (which has calling convention 'void ()
__attribute__
((thiscall))'}}
16
void
__attribute__
((thiscall)) f(); // This override is correct
26
virtual void
__attribute__
((stdcall)) g(); // expected-note{{overridden virtual function is here}}
31
void g(); // expected-error{{virtual function 'g' has different calling convention attributes ('void ()
__attribute__
((thiscall))') than the function it overrides (which has calling convention 'void ()
__attribute__
((stdcall))'}}
/external/clang/test/SemaObjC/
block-return.m
6
- (
__attribute__
((objc_gc(strong))) const char *)UTF8String;
10
__attribute__
((objc_gc(strong))) char const *(^libraryNameForIndex)() = ^() {
/external/clang/test/SemaOpenCL/
sampler_t_overload.cl
3
void
__attribute__
((overloadable)) foo(sampler_t, read_only image1d_t);
4
void
__attribute__
((overloadable)) foo(sampler_t, read_only image2d_t);
vec_compare.cl
4
typedef
__attribute__
((ext_vector_type(2))) unsigned int uint2;
5
typedef
__attribute__
((ext_vector_type(2))) int int2;
/external/kernel-headers/original/uapi/asm-x86/asm/
siginfo.h
6
typedef long long __kernel_si_clock_t
__attribute__
((aligned(4)));
8
# define __ARCH_SI_ATTRIBUTES
__attribute__
((aligned(8)))
/external/oprofile/m4/
mallocattribute.m4
1
dnl AX_MALLOC_ATTRIBUTE - see if gcc will take
__attribute__
((malloc))
8
void monkey()
__attribute__
((malloc));
/external/valgrind/main/memcheck/tests/
recursive-merge.c
19
__attribute__
((noinline)) void f_a(char *calls, char*seq);
20
__attribute__
((noinline)) void f_b(char *calls, char*seq);
21
__attribute__
((noinline)) void f_c(char *calls, char*seq);
22
__attribute__
((noinline)) void f_d(char *calls, char*seq);
24
__attribute__
((noinline)) void f_a(char *calls, char*seq)
27
__attribute__
((noinline)) void f_b(char *calls, char*seq)
30
__attribute__
((noinline)) void f_c(char *calls, char*seq)
33
__attribute__
((noinline)) void f_d(char *calls, char*seq)
/prebuilts/clang/darwin-x86/host/3.4/lib/clang/3.4/include/
fma4intrin.h
37
static __inline__ __m128
__attribute__
((__always_inline__, __nodebug__))
43
static __inline__ __m128d
__attribute__
((__always_inline__, __nodebug__))
49
static __inline__ __m128
__attribute__
((__always_inline__, __nodebug__))
55
static __inline__ __m128d
__attribute__
((__always_inline__, __nodebug__))
61
static __inline__ __m128
__attribute__
((__always_inline__, __nodebug__))
67
static __inline__ __m128d
__attribute__
((__always_inline__, __nodebug__))
73
static __inline__ __m128
__attribute__
((__always_inline__, __nodebug__))
79
static __inline__ __m128d
__attribute__
((__always_inline__, __nodebug__))
85
static __inline__ __m128
__attribute__
((__always_inline__, __nodebug__))
91
static __inline__ __m128d
__attribute__
((__always_inline__, __nodebug__)
[
all
...]
fmaintrin.h
35
static __inline__ __m128
__attribute__
((__always_inline__, __nodebug__))
41
static __inline__ __m128d
__attribute__
((__always_inline__, __nodebug__))
47
static __inline__ __m128
__attribute__
((__always_inline__, __nodebug__))
53
static __inline__ __m128d
__attribute__
((__always_inline__, __nodebug__))
59
static __inline__ __m128
__attribute__
((__always_inline__, __nodebug__))
65
static __inline__ __m128d
__attribute__
((__always_inline__, __nodebug__))
71
static __inline__ __m128
__attribute__
((__always_inline__, __nodebug__))
77
static __inline__ __m128d
__attribute__
((__always_inline__, __nodebug__))
83
static __inline__ __m128
__attribute__
((__always_inline__, __nodebug__))
89
static __inline__ __m128d
__attribute__
((__always_inline__, __nodebug__)
[
all
...]
/prebuilts/clang/darwin-x86/host/3.5/lib/clang/3.5/include/
fma4intrin.h
37
static __inline__ __m128
__attribute__
((__always_inline__, __nodebug__))
43
static __inline__ __m128d
__attribute__
((__always_inline__, __nodebug__))
49
static __inline__ __m128
__attribute__
((__always_inline__, __nodebug__))
55
static __inline__ __m128d
__attribute__
((__always_inline__, __nodebug__))
61
static __inline__ __m128
__attribute__
((__always_inline__, __nodebug__))
67
static __inline__ __m128d
__attribute__
((__always_inline__, __nodebug__))
73
static __inline__ __m128
__attribute__
((__always_inline__, __nodebug__))
79
static __inline__ __m128d
__attribute__
((__always_inline__, __nodebug__))
85
static __inline__ __m128
__attribute__
((__always_inline__, __nodebug__))
91
static __inline__ __m128d
__attribute__
((__always_inline__, __nodebug__)
[
all
...]
fmaintrin.h
35
static __inline__ __m128
__attribute__
((__always_inline__, __nodebug__))
41
static __inline__ __m128d
__attribute__
((__always_inline__, __nodebug__))
47
static __inline__ __m128
__attribute__
((__always_inline__, __nodebug__))
53
static __inline__ __m128d
__attribute__
((__always_inline__, __nodebug__))
59
static __inline__ __m128
__attribute__
((__always_inline__, __nodebug__))
65
static __inline__ __m128d
__attribute__
((__always_inline__, __nodebug__))
71
static __inline__ __m128
__attribute__
((__always_inline__, __nodebug__))
77
static __inline__ __m128d
__attribute__
((__always_inline__, __nodebug__))
83
static __inline__ __m128
__attribute__
((__always_inline__, __nodebug__))
89
static __inline__ __m128d
__attribute__
((__always_inline__, __nodebug__)
[
all
...]
Completed in 485 milliseconds
<<
11
12
13
14
15
16
17
18
19
20
>>