OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:have
(Results
101 - 125
of
39030
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/bison/
config.hin
7
/* Define on systems for which file names may
have
a so-called `drive letter'
23
/* Define to 1 if you
have
the MacOS X function CFLocaleCopyCurrent in the
27
/* Define to 1 if you
have
the MacOS X function CFPreferencesCopyAppValue in
38
/* Define to 1 if you
have
the declaration of `clearerr_unlocked', and to 0 if
42
/* Define to 1 if you
have
the declaration of `clock', and to 0 if you don't.
46
/* Define to 1 if you
have
the declaration of `feof_unlocked', and to 0 if you
50
/* Define to 1 if you
have
the declaration of `ferror_unlocked', and to 0 if
54
/* Define to 1 if you
have
the declaration of `fflush_unlocked', and to 0 if
58
/* Define to 1 if you
have
the declaration of `fgets_unlocked', and to 0 if
62
/* Define to 1 if you
have
the declaration of `fputc_unlocked', and to 0 i
[
all
...]
/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/
p6-0x.cpp
3
void f0() &; // expected-error {{non-member function cannot
have
'&' qualifier}}
4
void f1() &&; // expected-error {{non-member function cannot
have
'&&' qualifier}}
5
void f2() const volatile &&; // expected-error {{non-member function cannot
have
'const volatile &&' qualifier}}
10
static void f2() &; // expected-error{{static member function cannot
have
'&' qualifier}}
11
static void f3() &&; // expected-error{{static member function cannot
have
'&&' qualifier}}
17
typedef func_type_lvalue *func_type_lvalue_ptr; // expected-error{{pointer to function type 'func_type_lvalue' (aka 'void () &') cannot
have
'&' qualifier}}
18
typedef func_type_rvalue *func_type_rvalue_ptr; // expected-error{{pointer to function type 'func_type_rvalue' (aka 'void () &&') cannot
have
'&&' qualifier}}
20
typedef func_type_lvalue &func_type_lvalue_ref; // expected-error{{reference to function type 'func_type_lvalue' (aka 'void () &') cannot
have
'&' qualifier}}
21
typedef func_type_rvalue &func_type_rvalue_ref; // expected-error{{reference to function type 'func_type_rvalue' (aka 'void () &&') cannot
have
'&&' qualifier}}
41
func_type_lvalue f2; // expected-error{{non-member function of type 'func_type_lvalue' (aka 'void () &') cannot
have
'&' qualifier}
[
all
...]
/external/clang/test/Preprocessor/
warning_tests.c
3
#error Should
have
__has_warning
10
#warning Should
have
-Wparentheses // expected-warning {{Should
have
-Wparentheses}}
import_self.c
3
// This #import should
have
no effect, as we're importing the current file.
/external/libusb/
config.h
14
/* Define to 1 if you
have
the <dlfcn.h> header file. */
17
/* Define to 1 if you
have
the <inttypes.h> header file. */
20
/* Define to 1 if you
have
the `rt' library (-lrt). */
23
/* Define to 1 if you
have
the <memory.h> header file. */
26
/* Define to 1 if you
have
the <stdint.h> header file. */
29
/* Define to 1 if you
have
the <stdlib.h> header file. */
32
/* Define to 1 if you
have
the <strings.h> header file. */
35
/* Define to 1 if you
have
the <string.h> header file. */
38
/* Define to 1 if you
have
the <sys/stat.h> header file. */
41
/* Define to 1 if you
have
the <sys/types.h> header file. *
[
all
...]
config.h.in
12
/* Define to 1 if you
have
the <dlfcn.h> header file. */
15
/* Define to 1 if you
have
the <inttypes.h> header file. */
18
/* Define to 1 if you
have
the `rt' library (-lrt). */
21
/* Define to 1 if you
have
the <memory.h> header file. */
24
/* Define to 1 if you
have
the <stdint.h> header file. */
27
/* Define to 1 if you
have
the <stdlib.h> header file. */
30
/* Define to 1 if you
have
the <strings.h> header file. */
33
/* Define to 1 if you
have
the <string.h> header file. */
36
/* Define to 1 if you
have
the <sys/stat.h> header file. */
39
/* Define to 1 if you
have
the <sys/types.h> header file. *
[
all
...]
THANKS
2
members who
have
made significant contributions in other areas are listed
/external/stlport/test/compiler/
ttei4.cpp
16
*
have
to appear out-of-class; 2. specialized struct C
have
to
17
*
have
function f.
/cts/tests/tests/webkitsecurity/assets/
exception-no-frame-timeout-crash-iframe.html
4
/* Ensure we
have
no frame when the exception is thrown. */
/dalvik/dx/tests/116-leb128/
info.txt
3
The run script requires vogar, so you must
have
vogar on your $PATH to run this
/development/samples/
README
1
Adding a new folder in development/samples is not enough to
have
it
/external/clang/test/Sema/
2009-07-17-VoidParameter.c
4
void (*func_ptr)(vt my_vt); // expected-error {argument may not
have
'void' type}
/external/clang/test/SemaCUDA/
qualifiers.cu
6
__global__ int g2(int x) { // expected-error {{must
have
void return type}}
/external/clang/test/SemaCXX/
trivial-constructor.cpp
22
static_assert(__has_trivial_constructor(T5), "All the direct base classes of T5
have
trivial constructors!");
29
static_assert(__has_trivial_constructor(T6), "All nonstatic data members of T6
have
trivial constructors!");
34
static_assert(!__has_trivial_constructor(T7), "t4 does not
have
a trivial constructor!");
38
static_assert(!__has_trivial_constructor(T8), "The base class T2 does not
have
a trivial constructor!");
trivial-destructor.cpp
22
static_assert(__has_trivial_destructor(T5), "All the direct base classes of T5
have
trivial destructors!");
29
static_assert(__has_trivial_destructor(T6), "All nonstatic data members of T6
have
trivial destructors!");
34
static_assert(!__has_trivial_destructor(T7), "t2 does not
have
a trivial destructor!");
38
static_assert(!__has_trivial_destructor(T8), "The base class T2 does not
have
a trivial destructor!");
/external/dbus/test/data/auth/
extra-bytes.auth-script
1
## this tests that we
have
the expected extra bytes at the end
/external/dhcpcd/dhcpcd-hooks/
01-test
1
# Just echo our DHCP options we
have
/external/elfutils/
THANKS
1
At least the following
have
submitted valuable patches:
/external/expat/
expat_config.h
7
/* Define to 1 if you
have
the `bcopy' function. */
10
/* Define to 1 if you
have
the <dlfcn.h> header file. */
13
/* Define to 1 if you
have
the <fcntl.h> header file. */
16
/* Define to 1 if you
have
the `getpagesize' function. */
19
/* Define to 1 if you
have
the <inttypes.h> header file. */
22
/* Define to 1 if you
have
the `memmove' function. */
25
/* Define to 1 if you
have
the <memory.h> header file. */
28
/* Define to 1 if you
have
a working `mmap' system call. */
31
/* Define to 1 if you
have
the <stdint.h> header file. */
34
/* Define to 1 if you
have
the <stdlib.h> header file. *
[
all
...]
/external/expat/lib/
amigaconfig.h
7
/* Define to 1 if you
have
the `bcopy' function. */
10
/* Define to 1 if you
have
the <check.h> header file. */
13
/* Define to 1 if you
have
the `memmove' function. */
16
/* Define to 1 if you
have
the <unistd.h> header file. */
/external/expat/tests/
runtestspp.cpp
4
// and
have
everything work as expected.
/external/genext2fs/
INSTALL
1
If you're using CVS, you will
have
to first run:
config.h
4
/* Define to 1 if you
have
the <dirent.h> header file, and it defines `DIR'.
8
/* Define to 1 if you
have
the <fcntl.h> header file. */
11
/* Define to 1 if you
have
the `getline' function. */
14
/* Define to 1 if you
have
the <getopt.h> header file. */
17
/* Define to 1 if you
have
the `getopt_long' function. */
20
/* Define to 1 if you
have
the <inttypes.h> header file. */
23
/* Define to 1 if you
have
the <libgen.h> header file. */
26
/* Define to 1 if you
have
the <limits.h> header file. */
29
/* Define to 1 if you
have
the <memory.h> header file. */
32
/* Define to 1 if you
have
the <ndir.h> header file, and it defines `DIR'. *
[
all
...]
/external/icu4c/common/
icucfg.h.in
6
/* Define to 1 if you
have
the <dirent.h> header file. */
9
/* Define to 1 if you
have
the <dlfcn.h> header file. */
12
/* Define to 1 if you
have
the `dlopen' function. */
15
/* Define to 1 if you
have
the `gettimeofday' function. */
18
/* Define to 1 if you
have
the <inttypes.h> header file. */
21
/* Define to 1 if you
have
the `m' library (-lm). */
24
/* Define to 1 if you
have
the `pthread' library (-lpthread). */
27
/* Define to 1 if you
have
the <memory.h> header file. */
30
/* Define to 1 if you
have
the <stdint.h> header file. */
33
/* Define to 1 if you
have
the <stdlib.h> header file. *
[
all
...]
/external/llvm/test/CodeGen/Generic/
2007-04-27-InlineAsm-X-Dest.ll
3
; Test that we can
have
an "X" output constraint.
Completed in 408 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>