HomeSort by relevance Sort by last modified time
    Searched full:have (Results 51 - 75 of 60805) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/clang/test/Modules/Inputs/macro-ambiguity/d/system/
d_system.h 4 // FIXME: We have to use this to mark the header as a system header in
5 // a module because header search didn't actually occur and so we can't have
7 // header and load the module we will have mapped to the header by finding it
  /external/libunwind/include/
config.h 20 /* Define to 1 if you have the <asm/ptrace_offsets.h> header file. */
23 /* Define to 1 if you have the <atomic_ops.h> header file. */
26 /* Define to 1 if you have the <byteswap.h> header file. */
29 /* Define to 1 if you have the declaration of `PTRACE_CONT', and to 0 if you
33 /* Define to 1 if you have the declaration of `PTRACE_POKEDATA', and to 0 if
37 /* Define to 1 if you have the declaration of `PTRACE_POKEUSER', and to 0 if
45 /* Define to 1 if you have the declaration of `PTRACE_SINGLESTEP', and to 0 if
49 /* Define to 1 if you have the declaration of `PTRACE_SYSCALL', and to 0 if
53 /* Define to 1 if you have the declaration of `PTRACE_TRACEME', and to 0 if
57 /* Define to 1 if you have the declaration of `PT_CONTINUE', and to 0 if yo
    [all...]
  /external/libvncserver/libvncserver/
rfbconfig.h 10 /* Define to 1 if you have the <arpa/inet.h> header file. */
13 /* Define to 1 if you don't have `vprintf' but do have `_doprnt.' */
16 /* Define to 1 if you have the <fcntl.h> header file. */
19 /* Define to 1 if you have the `fork' function. */
22 /* Define to 1 if you have the `ftime' function. */
25 /* Define to 1 if you have the `gethostbyname' function. */
28 /* Define to 1 if you have the `gethostname' function. */
31 /* Define to 1 if you have the `gettimeofday' function. */
34 /* Define to 1 if you have the `inet_ntoa' function. *
    [all...]
  /external/protobuf/gtest/build-aux/
config.h.in 3 /* Define to 1 if you have the <dlfcn.h> header file. */
6 /* Define to 1 if you have the <inttypes.h> header file. */
9 /* Define to 1 if you have the <memory.h> header file. */
12 /* Define if you have POSIX threads libraries and header files. */
15 /* Define to 1 if you have the <stdint.h> header file. */
18 /* Define to 1 if you have the <stdlib.h> header file. */
21 /* Define to 1 if you have the <strings.h> header file. */
24 /* Define to 1 if you have the <string.h> header file. */
27 /* Define to 1 if you have the <sys/stat.h> header file. */
30 /* Define to 1 if you have the <sys/types.h> header file. *
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/build-aux/
config.h.in 3 /* Define to 1 if you have the <dlfcn.h> header file. */
6 /* Define to 1 if you have the <inttypes.h> header file. */
9 /* Define to 1 if you have the <memory.h> header file. */
12 /* Define if you have POSIX threads libraries and header files. */
15 /* Define to 1 if you have the <stdint.h> header file. */
18 /* Define to 1 if you have the <stdlib.h> header file. */
21 /* Define to 1 if you have the <strings.h> header file. */
24 /* Define to 1 if you have the <string.h> header file. */
27 /* Define to 1 if you have the <sys/stat.h> header file. */
30 /* Define to 1 if you have the <sys/types.h> header file. *
    [all...]
  /art/test/471-deopt-environment/
info.txt 3 HEnvironment that does not have the uses lists updated.
  /art/test/519-bound-load-class/
info.txt 2 used to crash when a `HCheckCast` did not have a `HLoadClass`
  /art/test/574-irreducible-and-constant-area/
info.txt 2 a HInvokeStaticOrDirect must have a special input (does not apply for irreducible
  /art/test/588-checker-irreducible-lifetime-hole/
info.txt 1 Regression test for optimizing that used to have a too
  /art/test/594-load-string-regression/
info.txt 1 Regression test for LoadString listing side effects when it doesn't have any
  /build/core/
apicheck_msg_last.txt 3 You have tried to change the API from what has been previously released in
  /development/ndk/platforms/android-21/samples/native-codec/
README.txt 2 For demonstration purposes we have supplied such a file.
  /device/moto/shamu/sepolicy/
app.te 1 # Only allow gpu ioctl commands that have been demonstrated to be necessary.
  /external/clang/test/CXX/dcl.dcl/dcl.link/
p2.cpp 11 extern u8"C" {} // expected-error {{string literal in language linkage specifier cannot have an encoding-prefix}}
12 extern L"C" {} // expected-error {{string literal in language linkage specifier cannot have an encoding-prefix}}
13 extern u"C++" {} // expected-error {{string literal in language linkage specifier cannot have an encoding-prefix}}
14 extern U"C" {} // expected-error {{string literal in language linkage specifier cannot have an encoding-prefix}}
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/dcl.fct.def.default/
p1.cpp 5 // -- not have default arguments
8 DefArg(int n = 5) = default; // expected-error {{an explicitly-defaulted constructor cannot have default arguments}}
9 DefArg(const DefArg &DA = make()) = default; // expected-error {{an explicitly-defaulted constructor cannot have default arguments}}
10 DefArg(const DefArg &DA, int k = 3) = default; // expected-error {{an explicitly-defaulted copy constructor cannot have default arguments}}
11 DefArg(DefArg &&DA = make()) = default; // expected-error {{an explicitly-defaulted constructor cannot have default arguments}}
12 DefArg(DefArg &&DA, int k = 3) = default; // expected-error {{an explicitly-defaulted move constructor cannot have default arguments}}
13 DefArg &operator=(const DefArg&, int k = 4) = default; // expected-error {{parameter of overloaded 'operator=' cannot have a default argument}}
14 DefArg &operator=(DefArg&&, int k = 4) = default; // expected-error {{parameter of overloaded 'operator=' cannot have a default argument}}
15 ~DefArg(int k = 5) = default; // expected-error {{destructor cannot have any parameters}}
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/
p6.cpp 5 void f() const; // expected-error {{non-member function cannot have 'const' qualifier}}
6 F g; // expected-error {{non-member function of type 'F' (aka 'void () const') cannot have 'const' qualifier}}
10 friend void g() const; // expected-error {{non-member function cannot have 'const' qualifier}}
11 static void h() const; // expected-error {{static member function cannot have 'const' qualifier}}
13 friend F j; // expected-error {{non-member function of type 'F' (aka 'void () const') cannot have 'const' qualifier}}
14 static F k; // expected-error {{static member function of type 'F' (aka 'void () const') cannot have 'const' qualifier}}
19 friend void ::f() const; // expected-error {{non-member function cannot have 'const' qualifier}}
24 typedef T *P; // expected-error {{pointer to function type 'void () const' cannot have 'const' qualifier}}
25 typedef T &R; // expected-error {{reference to function type 'void () const' cannot have 'const' qualifier}}
  /external/clang/test/SemaCUDA/
config-type.cu 3 void cudaConfigureCall(unsigned gridSize, unsigned blockSize); // expected-error {{must have scalar return type}}
  /external/clang/test/SemaCXX/
virtual-function-in-union.cpp 4 virtual void f(); // expected-error {{unions cannot have virtual functions}}
  /external/curl/lib/
config-tpf.h 13 * you should have received as part of this distribution. The terms
92 /* Define to 1 if you have the alarm function. */
95 /* Define to 1 if you have the <arpa/inet.h> header file. */
98 /* Define to 1 if you have the <arpa/tftp.h> header file. */
101 /* Define to 1 if you have the <assert.h> header file. */
104 /* Define to 1 if you have the `basename' function. */
107 /* Define to 1 if you have the `closesocket' function. */
110 /* Define to 1 if you have the `CRYPTO_cleanup_all_ex_data' function. */
114 /* Define to 1 if you have the <crypto.h> header file. */
118 /* Define to 1 if you have the <des.h> header file. *
    [all...]
  /external/dhcpcd-6.8.2/dhcpcd-hooks/
02-dump 1 # Just echo our DHCP options we have
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/
README.txt 3 This contains template scripts and files that are still being modified and have yet to be tested.
  /external/iptables/
config.h 4 /* Define to 1 if you have the <dlfcn.h> header file. */
7 /* Define to 1 if you have the <inttypes.h> header file. */
10 /* Define to 1 if you have the `pcap' library (-lpcap). */
13 /* Define to 1 if you have the <linux/dccp.h> header file. */
16 /* Define to 1 if you have the <linux/ip_vs.h> header file. */
19 /* Define to 1 if you have the <linux/magic.h> header file. */
22 /* Define to 1 if you have the <linux/proc_fs.h> header file. */
25 /* Define to 1 if you have the <memory.h> header file. */
28 /* Define to 1 if you have the <stdint.h> header file. */
31 /* Define to 1 if you have the <stdlib.h> header file. *
    [all...]
  /external/libmtp/
config.h 7 /* Define to 1 if you have the <arpa/inet.h> header file. */
10 /* Define to 1 if you have the `basename' function. */
13 /* Define to 1 if you have the <byteswap.h> header file. */
16 /* Define to 1 if you have the <ctype.h> header file. */
19 /* Define to 1 if you have the <dlfcn.h> header file. */
22 /* Define to 1 if you have the <errno.h> header file. */
25 /* Define to 1 if you have the <fcntl.h> header file. */
28 /* Define to 1 if you have the <getopt.h> header file. */
31 /* Define if you have the iconv() function and it works. */
34 /* Define to 1 if you have the <iconv.h> header file. *
    [all...]
config.h.in 6 /* Define to 1 if you have the <arpa/inet.h> header file. */
9 /* Define to 1 if you have the `basename' function. */
12 /* Define to 1 if you have the <byteswap.h> header file. */
15 /* Define to 1 if you have the <ctype.h> header file. */
18 /* Define to 1 if you have the <dlfcn.h> header file. */
21 /* Define to 1 if you have the <errno.h> header file. */
24 /* Define to 1 if you have the <fcntl.h> header file. */
27 /* Define to 1 if you have the <getopt.h> header file. */
30 /* Define if you have the iconv() function and it works. */
33 /* Define to 1 if you have the <iconv.h> header file. *
    [all...]
  /external/libxml2/result/schematron/
zvon11_1.err 2 /AAA/BBB line 2: The element must not have an isolated bbb attribute

Completed in 621 milliseconds

1 23 4 5 6 7 8 91011>>