OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:have
(Results
76 - 100
of
39030
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/dbus/
config.h
55
/* Defined if we
have
gcc 3.3 and thus the new gcov format */
97
/*
Have
abstract socket namespace */
100
/* Define to 1 if you
have
the `backtrace' function. */
103
/*
Have
cmsgcred structure */
106
/*
Have
console owner file */
109
/*
Have
the ddfd member of DIR */
112
/*
Have
dirfd function */
115
/* Define to 1 if you
have
the <dlfcn.h> header file. */
118
/* Define to 1 if you
have
the <errno.h> header file. */
121
/* Define to 1 if you
have
the <execinfo.h> header file. *
[
all
...]
/external/protobuf/
config.h.in
18
/* Define to 1 if you
have
the <dlfcn.h> header file. */
21
/* Define to 1 if you
have
the <fcntl.h> header file. */
24
/* Define to 1 if you
have
the `ftruncate' function. */
33
/* Define to 1 if you
have
the <inttypes.h> header file. */
36
/* Define to 1 if you
have
the <limits.h> header file. */
39
/* Define to 1 if you
have
the <memory.h> header file. */
42
/* Define to 1 if you
have
the `memset' function. */
45
/* Define to 1 if you
have
the `mkdir' function. */
48
/* Define if you
have
POSIX threads libraries and header files. */
51
/* Define to 1 if you
have
the <stdint.h> header file. *
[
all
...]
/ndk/sources/host-tools/make-3.81/
config.ami
14
You should
have
received a copy of the GNU General Public License along with
51
/* Define if you
have
alloca, as a function or macro. */
54
/* Define if you
have
<alloca.h> and it should be used (not on Ultrix). */
57
/* Define if you don't
have
vprintf but do
have
_doprnt. */
66
/* Define if you
have
the getmntent function. */
75
/* Define if you
have
a working `mmap' system call. */
88
/* Define if you
have
the strcoll function and it is properly defined. */
94
/* Define if you
have
the strftime function. */
97
/* Define if you
have
<sys/wait.h> that is POSIX.1 compatible. *
[
all
...]
config.h.W32
15
You should
have
received a copy of the GNU General Public License along with
57
/* Define to 1 if you
have
`alloca', as a function or macro. */
60
/* Define to 1 if you
have
<alloca.h> and it should be used (not on Ultrix).
67
/* Define to 1 if you
have
the `bsd_signal' function. */
73
/* Define if you
have
the clock_gettime function. */
80
/* Define to 1 if you
have
the <dirent.h> header file, and it defines `DIR'.
84
/* Define to 1 if you don't
have
`vprintf' but do
have
`_doprnt.' */
90
/* Define to 1 if you
have
the `dup2' function. */
93
/* Define to 1 if you
have
the <fcntl.h> header file. *
[
all
...]
config.h.in
31
/* Define to 1 if you
have
`alloca', as a function or macro. */
34
/* Define to 1 if you
have
<alloca.h> and it should be used (not on Ultrix).
41
/* Define to 1 if you
have
the `atexit' function. */
44
/* Define to 1 if you
have
the `bsd_signal' function. */
50
/* Define if you
have
the clock_gettime function. */
57
/* Define to 1 if you
have
the declaration of `sys_siglist', and to 0 if you
61
/* Define to 1 if you
have
the declaration of `_sys_siglist', and to 0 if you
65
/* Define to 1 if you
have
the declaration of `__sys_siglist', and to 0 if you
69
/* Define to 1 if you
have
the <dirent.h> header file, and it defines `DIR'.
73
/* Define to 1 if you don't
have
`vprintf' but do have `_doprnt.' *
[
all
...]
/external/tcpdump/
config.h
6
/* Define if you
have
SSLeay 0.9.0b with the buggy cast128. */
15
/* Define if you
have
the <smi.h> header file. */
18
/* define if you
have
struct __res_state_ext */
32
/* define if you
have
the addrinfo function. */
38
/* define ifyou
have
the h_errno variable. */
59
/* define if you
have
struct sockaddr_storage */
62
/* define if you
have
both getipnodebyname() and getipnodebyaddr() */
65
/* define if you
have
ether_ntohost() and it works */
92
/* define if you
have
getrpcbynumber() */
121
*
have
different implementation details so for now w
[
all
...]
config.h.in
5
/* Define if you
have
SSLeay 0.9.0b with the buggy cast128. */
14
/* Define if you
have
the <smi.h> header file. */
17
/* define if you
have
struct __res_state_ext */
31
/* define if you
have
the addrinfo function. */
37
/* define ifyou
have
the h_errno variable. */
58
/* define if you
have
struct sockaddr_storage */
61
/* define if you
have
both getipnodebyname() and getipnodebyaddr() */
64
/* define if you
have
ether_ntohost() and it works */
91
/* define if you
have
getrpcbynumber() */
120
*
have
different implementation details so for now w
[
all
...]
/dalvik/dx/src/com/android/dx/cf/iface/
package.html
3
doesn't
have
any parsing but does
have
basic container implementations.</p>
/external/clang/test/Sema/
fp16-sema.c
3
// Functions cannot
have
parameters of type __fp16.
4
extern void f (__fp16); // expected-error {{parameters cannot
have
__fp16 type; did you forget * ?}}
7
extern void (*pf) (__fp16); // expected-error {{parameters cannot
have
__fp16 type; did you forget * ?}}
10
typedef void(*tf) (__fp16); // expected-error {{parameters cannot
have
__fp16 type; did you forget * ?}}
14
__fp16 a; { // expected-error {{parameters cannot
have
__fp16 type; did you forget * ?}}
22
extern __fp16 f1 (void); // expected-error {{function return value cannot
have
__fp16 type; did you forget * ?}}
25
extern __fp16 (*pf1) (void); // expected-error {{function return value cannot
have
__fp16 type; did you forget * ?}}
28
typedef __fp16 (*tf1) (void); // expected-error {{function return value cannot
have
__fp16 type; did you forget * ?}}
/frameworks/wilhelm/doc/
README.txt
1
When building applications using the OpenSL-ES API you should compile and link the OpenSLES_IID.c file into your project. This file contains unique interface IDs for all OpenSL-ES API interfaces. These IDs
have
2
have
been automatically generated. Application developers should not edit these interface IDs
/external/grub/
config.h.in
18
/* Define to 1 if you
have
the <curses.h> header file. */
27
/* Define to 1 if you
have
the <inttypes.h> header file. */
30
/* Define if you
have
a curses library */
33
/* Define to 1 if you
have
the <memory.h> header file. */
36
/* Define to 1 if you
have
the <ncurses/curses.h> header file. */
39
/* Define to 1 if you
have
the <ncurses.h> header file. */
48
/* Define to 1 if you
have
the <stdint.h> header file. */
51
/* Define to 1 if you
have
the <stdlib.h> header file. */
54
/* Define to 1 if you
have
the <strings.h> header file. */
57
/* Define to 1 if you
have
the <string.h> header file. *
[
all
...]
/external/clang/test/SemaCXX/
attr-weak.cpp
3
static int test0 __attribute__((weak)); // expected-error {{weak declaration cannot
have
internal linkage}}
4
static void test1() __attribute__((weak)); // expected-error {{weak declaration cannot
have
internal linkage}}
10
int test3 __attribute__((weak)); // expected-error {{weak declaration cannot
have
internal linkage}}
11
void test4() __attribute__((weak)); // expected-error {{weak declaration cannot
have
internal linkage}}
20
static void test6() __attribute__((weak)); // expected-error {{weak declaration cannot
have
internal linkage}}
/external/webkit/Tools/android/flex-2.5.4a/MISC/Amiga/
config.h
9
/* Define if you
have
the ANSI C header files. */
12
/* Define if you
have
the <malloc.h> header file. */
15
/* Define if you
have
the <string.h> header file. */
18
/* Define if you
have
the <sys/types.h> header file. */
21
/* Define if you
have
<alloca.h> and it should be used (not on Ultrix). */
/external/webkit/Tools/android/flex-2.5.4a/MISC/VMS/
vms-conf.h
9
/* Define if you
have
the ANSI C header files. */
12
/* Define if you
have
the <malloc.h> header file. */
15
/* Define if you
have
the <string.h> header file. */
18
/* Define if you
have
the <sys/types.h> header file. */
25
/* Define if you
have
<alloca.h> and it should be used (not on Ultrix). */
/external/webkit/Tools/android/flex-2.5.4a/
conf.in
9
/* Define if you
have
the ANSI C header files. */
12
/* Define if you
have
the <malloc.h> header file. */
15
/* Define if you
have
the <string.h> header file. */
18
/* Define if you
have
the <sys/types.h> header file. */
21
/* Define if you
have
<alloca.h> and it should be used (not on Ultrix). */
/external/bluetooth/glib/
config.h.win32.in
84
/*
Have
inline keyword */
91
/*
Have
__inline keyword */
94
/*
Have
__inline__ keyword */
114
/* Define to 1 if you
have
`alloca', as a function or macro. */
117
/* Define to 1 if you
have
<alloca.h> and it should be used (not on Ultrix).
121
/* Define to 1 if you
have
the `atexit' function. */
124
/* Define to 1 if you
have
the <attr/xattr.h> header file. */
127
/* Define to 1 if you
have
the `bind_textdomain_codeset' function. */
130
/* Define if you
have
a version of the snprintf function with semantics as
134
/* Define if you
have
a version of the vsnprintf function with semantics a
[
all
...]
/external/qemu/slirp/
slirp_config.h
39
* This is mainly for sysadmins who
have
many slirp users
57
/* Define if you
have
unistd.h */
60
/* Define if you
have
stdlib.h */
63
/* Define if you
have
sys/ioctl.h */
69
/* Define if you
have
sys/filio.h */
75
/* Define if you
have
strerror */
78
/* Define if you
have
strdup() */
85
/* Define if you
have
sys/bitypes.h */
94
/* Define if you
have
readv */
106
/* Define if you
have
a POSIX.1 sys/wait.h *
[
all
...]
/external/qemu/slirp-android/
slirp_config.h
39
* This is mainly for sysadmins who
have
many slirp users
57
/* Define if you
have
unistd.h */
60
/* Define if you
have
stdlib.h */
63
/* Define if you
have
sys/ioctl.h */
69
/* Define if you
have
sys/filio.h */
75
/* Define if you
have
strerror */
78
/* Define if you
have
strdup() */
85
/* Define if you
have
sys/bitypes.h */
94
/* Define if you
have
readv */
106
/* Define if you
have
a POSIX.1 sys/wait.h *
[
all
...]
/external/chromium/third_party/libjingle/overrides/
config.h
18
/* Define to 1 if you
have
the <alsa/asoundlib.h> header file. */
21
/* Define to 1 if you
have
the <dlfcn.h> header file. */
24
/*
Have
GIPS Voice Engine */
30
/* Defined when we
have
ilbc codec lib */
33
/* Define to 1 if you
have
the <iLBC_decode.h> header file. */
36
/* Define to 1 if you
have
the <inttypes.h> header file. */
39
/* Define to 1 if you
have
the <memory.h> header file. */
42
/* Define if you
have
the <openssl/ssl.h> header file. */
45
/* Define if you
have
semtimedop() for SysV semaphares. */
51
/* Define to 1 if you
have
the <speex.h> header file. *
[
all
...]
/external/flac/
config.h
16
/* define if you are compiling for PowerPC and
have
the 'as' assembler */
19
/* define if you
have
docbook-to-man or docbook2man */
22
/* define if you are compiling for PowerPC and
have
the 'gas' assembler */
25
/* define if you are compiling for x86 and
have
the NASM assembler */
28
/* define if you
have
the ogg library */
49
/* Define to 1 if you
have
the <dlfcn.h> header file. */
55
/* Define to 1 if you
have
the `getopt_long' function. */
58
/* Define if you
have
the iconv() function. */
61
/* Define to 1 if you
have
the <inttypes.h> header file. */
64
/* Define if you
have
<langinfo.h> and nl_langinfo(CODESET). *
[
all
...]
/external/bluetooth/glib/glib/
config.h
93
/*
Have
inline keyword */
96
/*
Have
__inline keyword */
99
/*
Have
__inline__ keyword */
111
/* Define to 1 if you
have
`alloca', as a function or macro. */
114
/* Define to 1 if you
have
<alloca.h> and it should be used (not on Ultrix).
118
/* Define to 1 if you
have
the `atexit' function. */
121
/* Define to 1 if you
have
the <attr/xattr.h> header file. */
124
/* Define to 1 if you
have
the `bind_textdomain_codeset' function. */
127
/* Define if you
have
a version of the snprintf function with semantics as
131
/* Define if you
have
a version of the vsnprintf function with semantics a
[
all
...]
/external/llvm/device/include/llvm/Config/
config.h
37
/* Define to 1 if you
have
the `argz_append' function. */
40
/* Define to 1 if you
have
the `argz_create_sep' function. */
43
/* Define to 1 if you
have
the <argz.h> header file. */
46
/* Define to 1 if you
have
the `argz_insert' function. */
49
/* Define to 1 if you
have
the `argz_next' function. */
52
/* Define to 1 if you
have
the `argz_stringify' function. */
55
/* Define to 1 if you
have
the <assert.h> header file. */
58
/* Define to 1 if you
have
the `backtrace' function. */
61
/* Define to 1 if you
have
the `bcopy' function. */
64
/* Define to 1 if you
have
the `ceilf' function. *
[
all
...]
/external/llvm/host/include/llvm/Config/
config.h
40
/* Define to 1 if you
have
the `argz_append' function. */
43
/* Define to 1 if you
have
the `argz_create_sep' function. */
46
/* Define to 1 if you
have
the <argz.h> header file. */
49
/* Define to 1 if you
have
the `argz_insert' function. */
52
/* Define to 1 if you
have
the `argz_next' function. */
55
/* Define to 1 if you
have
the `argz_stringify' function. */
58
/* Define to 1 if you
have
the <assert.h> header file. */
61
/* Define to 1 if you
have
the `bcopy' function. */
64
/* Define to 1 if you
have
the `ceilf' function. */
70
/* Define to 1 if you
have
the `closedir' function. *
[
all
...]
/external/clang/test/SemaObjC/
illegal-nonarc-bridged-cast.m
19
id obj1 = (__bridge_transfer id)CFCreateSomething(); // expected-warning {{'__bridge_transfer' casts
have
no effect when not using ARC}}
20
id obj2 = (__bridge_transfer NSString*)CFCreateString(); // expected-warning {{'__bridge_transfer' casts
have
no effect when not using ARC}}
21
(__bridge int*)CFCreateSomething(); // expected-warning {{'__bridge' casts
have
no effect when not using ARC}} \
23
id obj3 = (__bridge id)CFGetSomething(); // expected-warning {{'__bridge' casts
have
no effect when not using ARC}}
24
id obj4 = (__bridge NSString*)CFGetString(); // expected-warning {{'__bridge' casts
have
no effect when not using ARC}}
28
CFTypeRef cf1 = (__bridge_retained CFTypeRef)CreateSomething(); // expected-warning {{'__bridge_retained' casts
have
no effect when not using ARC}}
29
CFStringRef cf2 = (__bridge_retained CFStringRef)CreateNSString(); // expected-warning {{'__bridge_retained' casts
have
no effect when not using ARC}}
30
CFTypeRef cf3 = (__bridge CFTypeRef)CreateSomething(); // expected-warning {{'__bridge' casts
have
no effect when not using ARC}}
31
CFStringRef cf4 = (__bridge CFStringRef)CreateNSString(); // expected-warning {{'__bridge' casts
have
no effect when not using ARC}}
/external/bison/
config.h
8
/* Define on systems for which file names may
have
a so-called `drive letter'
24
/* Define to 1 if you
have
the MacOS X function CFLocaleCopyCurrent in the
28
/* Define to 1 if you
have
the MacOS X function CFPreferencesCopyAppValue in
39
/* Define to 1 if you
have
the declaration of `clearerr_unlocked', and to 0 if
43
/* Define to 1 if you
have
the declaration of `clock', and to 0 if you don't.
47
/* Define to 1 if you
have
the declaration of `feof_unlocked', and to 0 if you
51
/* Define to 1 if you
have
the declaration of `ferror_unlocked', and to 0 if
55
/* Define to 1 if you
have
the declaration of `fflush_unlocked', and to 0 if
59
/* Define to 1 if you
have
the declaration of `fgets_unlocked', and to 0 if
63
/* Define to 1 if you
have
the declaration of `fputc_unlocked', and to 0 i
[
all
...]
Completed in 963 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>