Home
last modified time | relevance | path

Searched refs:is (Results 1 – 25 of 468) sorted by relevance

12345678910>>...19

/ndk/tests/build/stdint-c++/jni/
Dtest_limit_macros.cpp5 #error INT8_MIN is not defined!
8 #error INT8_MAX is not defined!
11 #error INT_LEAST8_MIN is not defined!
14 #error INT_LEAST8_MAX is not defined!
17 #error INT_FAST8_MIN is not defined!
20 #error INT_FAST8_MAX is not defined!
23 #error UINT8_MAX is not defined!
26 #error UINT_LEAST8_MAX is not defined!
29 #error UINT_FAST8_MAX is not defined!
32 #error INT16_MIN is not defined!
[all …]
Dtest_constant_macros.cpp5 #error INT8_MIN is defined!
8 #error INT8_MAX is defined!
11 #error INT_LEAST8_MIN is defined!
14 #error INT_LEAST8_MAX is defined!
17 #error INT_FAST8_MIN is defined!
20 #error INT_FAST8_MAX is defined!
23 #error UINT8_MAX is defined!
26 #error UINT_LEAST8_MAX is defined!
29 #error UINT_FAST8_MAX is defined!
32 #error INT16_MIN is defined!
[all …]
/ndk/tests/device/test-gnustl-full/unit/
Dctype_facets_test.cpp33 CPPUNIT_ASSERT( ct.is(ctype_base::digit, '0') ); in _ctype_facet()
34 CPPUNIT_ASSERT( ct.is(ctype_base::upper, 'A') ); in _ctype_facet()
35 CPPUNIT_ASSERT( ct.is(ctype_base::lower, 'a') ); in _ctype_facet()
36 CPPUNIT_ASSERT( ct.is(ctype_base::alpha, 'A') ); in _ctype_facet()
37 CPPUNIT_ASSERT( ct.is(ctype_base::space, ' ') ); in _ctype_facet()
38 CPPUNIT_ASSERT( !ct.is(ctype_base::space, '2') ); in _ctype_facet()
39 CPPUNIT_ASSERT( ct.is(ctype_base::punct, '.') ); in _ctype_facet()
40 CPPUNIT_ASSERT( ct.is(ctype_base::xdigit, 'a') ); in _ctype_facet()
47 ct.is(values, values + sizeof(values), res); in _ctype_facet()
177 CPPUNIT_CHECK( wct.is(ctype_base::digit, L'0') ); in _ctype_facet_w()
[all …]
/ndk/tests/device/test-stlport/unit/
Dctype_facets_test.cpp33 CPPUNIT_ASSERT( ct.is(ctype_base::digit, '0') ); in _ctype_facet()
34 CPPUNIT_ASSERT( ct.is(ctype_base::upper, 'A') ); in _ctype_facet()
35 CPPUNIT_ASSERT( ct.is(ctype_base::lower, 'a') ); in _ctype_facet()
36 CPPUNIT_ASSERT( ct.is(ctype_base::alpha, 'A') ); in _ctype_facet()
37 CPPUNIT_ASSERT( ct.is(ctype_base::space, ' ') ); in _ctype_facet()
38 CPPUNIT_ASSERT( !ct.is(ctype_base::space, '2') ); in _ctype_facet()
39 CPPUNIT_ASSERT( ct.is(ctype_base::punct, '.') ); in _ctype_facet()
40 CPPUNIT_ASSERT( ct.is(ctype_base::xdigit, 'a') ); in _ctype_facet()
47 ct.is(values, values + sizeof(values), res); in _ctype_facet()
177 CPPUNIT_CHECK( wct.is(ctype_base::digit, L'0') ); in _ctype_facet_w()
[all …]
/ndk/sources/host-tools/sed-4.2.1/testsuite/
Dmac-mf.inp7 # This first part is long enough that NFS/Share doesn't notice the non-ASCII
8 # characters in the rest of the file, so it claims that the file is type
9 # TEXT, which is what we want. The non-ASCII chars are necessary for MPW
12 # This first part is long enough that NFS/Share doesn't notice the non-ASCII
13 # characters in the rest of the file, so it claims that the file is type
14 # TEXT, which is what we want. The non-ASCII chars are necessary for MPW
17 # This first part is long enough that NFS/Share doesn't notice the non-ASCII
18 # characters in the rest of the file, so it claims that the file is type
19 # TEXT, which is what we want. The non-ASCII chars are necessary for MPW
22 # This first part is long enough that NFS/Share doesn't notice the non-ASCII
[all …]
Dmac-mf.good7 # This first part is long enough that NFS:Share doesn't notice the non-ASCII
8 # characters in the rest of the file, so it claims that the file is type
9 # TEXT, which is what we want. The non-ASCII chars are necessary for MPW
12 # This first part is long enough that NFS:Share doesn't notice the non-ASCII
13 # characters in the rest of the file, so it claims that the file is type
14 # TEXT, which is what we want. The non-ASCII chars are necessary for MPW
17 # This first part is long enough that NFS:Share doesn't notice the non-ASCII
18 # characters in the rest of the file, so it claims that the file is type
19 # TEXT, which is what we want. The non-ASCII chars are necessary for MPW
22 # This first part is long enough that NFS:Share doesn't notice the non-ASCII
[all …]
/ndk/sources/cxx-stl/stlport/stlport/
Dlocale8 * This material is provided "as is", with absolutely no warranty expressed
9 * or implied. Any use is at your own risk.
11 * Permission to use or copy this software for any purpose is hereby granted
13 * Permission to modify the code and to distribute modified code is granted,
15 * modified is included with the above copyright notice.
59 // Strictly speaking, _istream.h portion is only required for <iterator>, but it may break too many
84 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::space, c); }
88 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::print, c); }
92 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::cntrl, c); }
96 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::upper, c); }
[all …]
Dstrstream8 * This material is provided "as is", with absolutely no warranty expressed
9 * or implied. Any use is at your own risk.
11 * Permission to use or copy this software for any purpose is hereby granted
13 * Permission to modify the code and to distribute modified code is granted,
15 * modified is included with the above copyright notice.
19 // header is defined in section D.7.1 of the C++ standard, and it
42 /* Even if deprecated strstream header is still part of the Standard. Remove
Dbitset8 * This material is provided "as is", with absolutely no warranty expressed
9 * or implied. Any use is at your own risk.
11 * Permission to use or copy this software for any purpose is hereby granted
13 * Permission to modify the code and to distribute modified code is granted,
15 * modified is included with the above copyright notice.
23 // THIS FEATURE*. It is experimental, and it may be removed in
28 // order bits in the highest word.) It is a class invariant
34 // important special case where the bitset is only a single word.
37 // In this implementation the const version of operator[] is equivalent
/ndk/sources/host-tools/sed-4.2.1/doc/
Dsed.texi2 @c Do not edit this file!! It is automatically generated from sed-in.texi.
41 This document is released under the terms of the @acronym{GNU} Free
155 @command{sed} is a stream editor.
156 A stream editor is used to perform basic text
162 input(s), and is consequently more efficient.
163 But it is @command{sed}'s ability to filter text in a pipeline
171 Normally @command{sed} is invoked like this:
177 The full format for invoking @command{sed} is:
183 If you do not specify @var{INPUTFILE}, or if @var{INPUTFILE} is @file{-},
185 is actually the first non-option parameter, which @command{sed} specially
[all …]
Dsed-in.texi40 This document is released under the terms of the @acronym{GNU} Free
154 @command{sed} is a stream editor.
155 A stream editor is used to perform basic text
161 input(s), and is consequently more efficient.
162 But it is @command{sed}'s ability to filter text in a pipeline
170 Normally @command{sed} is invoked like this:
176 The full format for invoking @command{sed} is:
182 If you do not specify @var{INPUTFILE}, or if @var{INPUTFILE} is @file{-},
184 is actually the first non-option parameter, which @command{sed} specially
186 other @var{options} specifies a script to be executed, that is if neither
[all …]
Dsed.info1 This is ../../doc/sed.info, produced by makeinfo version 4.12 from
15 This document is released under the terms of the GNU Free
38 This document is released under the terms of the GNU Free
104 `sed' is a stream editor. A stream editor is used to perform basic text
108 and is consequently more efficient. But it is `sed''s ability to
118 Normally `sed' is invoked like this:
122 The full format for invoking `sed' is:
126 If you do not specify INPUTFILE, or if INPUTFILE is `-', `sed'
127 filters the contents of the standard input. The SCRIPT is actually the
130 specifies a script to be executed, that is if neither of the `-e' and
[all …]
/ndk/sources/host-tools/make-3.81/tests/scripts/functions/
Derror13 $(error error is $(ERROR1))
17 $(error error is $(ERROR2))
21 all: some; @echo $(error error is $(ERROR3))
25 all: some; @echo error is $(ERROR4)
26 @echo $(error error is $(ERROR4))
39 $answer = "$makefile:4: *** error is yes. Stop.\n";
45 $answer = "$makefile:8: *** error is no. Stop.\n";
51 $answer = "Some stuff\n$makefile:12: *** error is maybe. Stop.\n";
57 $answer = "Some stuff\n$makefile:16: *** error is definitely. Stop.\n";
Dwarning12 $(warning warning is $(WARNING1))
16 $(warning warning is $(WARNING2))
20 all: some; @echo hi $(warning warning is $(WARNING3))
25 @echo there $(warning warning is $(WARNING4))
37 $answer = "$makefile:2: warning is yes\nSome stuff\n";
43 $answer = "$makefile:6: warning is no\nSome stuff\n";
49 $answer = "Some stuff\n$makefile:10: warning is maybe\nhi\n";
55 $answer = "Some stuff\n$makefile:14: warning is definitely\nhi\nthere\n";
/ndk/sources/cxx-stl/stlport/
DLICENSE9 This material is provided "as is", with absolutely no warranty expressed or implied. Any use is at …
10is hereby granted without fee, provided the above notices are retained on all copies. Permission t…
23is hereby granted without fee, provided that the above copyright notice appear in all copies and t…
25is hereby granted without fee, provided that the above copyright notice appear in all copies and t…
27is hereby granted without fee, provided that the above copyright notice appear in all copies and t…
/ndk/sources/host-tools/sed-4.2.1/m4/
Dlocale-fr.m43 dnl This file is free software; the Free Software Foundation
5 dnl with or without modifications, as long as this notice is preserved.
27 /* Check whether the given locale name is recognized by the system. */
29 /* Check whether nl_langinfo(CODESET) is nonempty and not "ASCII" or "646".
31 is empty, and the behaviour of Tcl 8.4 in this locale is not useful.
32 On OpenBSD 4.0, when an unsupported locale is specified, setlocale()
33 succeeds but then nl_langinfo(CODESET) is "646". In this situation,
45 LC_ALL is set on the command line. */
49 character (should be U+00E9: LATIN SMALL LETTER E WITH ACUTE) is only
53 /* Check whether the decimal separator is a comma.
[all …]
Dstdbool.m44 dnl This file is free software; the Free Software Foundation
6 dnl with or without modifications, as long as this notice is preserved.
8 # Prepare for substituting <stdbool.h> if it is not supported.
34 # This macro is only needed in autoconf <= 2.59. Newer versions of autoconf
44 "error: bool is not defined"
47 "error: false is not defined"
50 "error: false is not 0"
53 "error: true is not defined"
56 "error: true is not 1"
59 "error: __bool_true_false_are_defined is not defined"
[all …]
Dlocale-zh.m43 dnl This file is free software; the Free Software Foundation
5 dnl with or without modifications, as long as this notice is preserved.
30 /* Check whether the given locale name is recognized by the system. */
32 /* Check whether nl_langinfo(CODESET) is nonempty and not "ASCII" or "646".
34 is empty, and the behaviour of Tcl 8.4 in this locale is not useful.
35 On OpenBSD 4.0, when an unsupported locale is specified, setlocale()
36 succeeds but then nl_langinfo(CODESET) is "646". In this situation,
48 LC_ALL is set on the command line. */
58 /* Check whether a typical GB18030 multibyte sequence is recognized as a
67 # Setting LC_ALL is not enough. Need to set LC_TIME to empty, because
[all …]
/ndk/sources/host-tools/make-3.81/doc/
Dmake.info-11 This is
10 This is Edition 0.70, last updated 13 October 2011, of `The GNU Make
17 Permission is granted to copy, distribute and/or modify this
22 below. A copy of the license is included in the section entitled
25 (a) The FSF's Back-Cover Text is: "You have freedom to copy and
44 This is Edition 0.70, last updated 13 October 2011, of `The GNU Make
51 Permission is granted to copy, distribute and/or modify this
56 below. A copy of the license is included in the section entitled
59 (a) The FSF's Back-Cover Text is: "You have freedom to copy and
121 * Secondary Expansion:: How and when secondary expansion is performed.
[all …]
/ndk/sources/host-tools/make-3.81/
Dreadme.vms1 This is the VMS version of GNU Make, updated by Hartmut Becker
38 globfree is a known CRTL whose name was mapped by the compiler to
39 DECC$GLOBFREE. This is done in glob.c as well, so this name is defined
40 twice. One possible solution is to use the VMS versions of glob and
42 there is a new CRTL supporting these or not. This adds complexity. Even
43 more, these functions return VMS file specifications, which is not
44 expected by the other make sources. There is a switch at run time (a VMS
47 for this is to set this switch just prior to calling main: in an
49 code. It is easier to tell the compiler NOT to map the routine names
54 WANT_CASE_SENSITIVE_TARGETS. For recent version of VMS there is a case
[all …]
Daclocal.m45 # This file is free software; the Free Software Foundation
7 # with or without modifications, as long as this notice is preserved.
9 # This program is distributed in the hope that it will be useful,
16 # This file is free software; the Free Software Foundation
18 # with or without modifications, as long as this notice is preserved.
29 # This function is AC_REQUIREd by AC_INIT_AUTOMAKE.
37 # This file is free software; the Free Software Foundation
39 # with or without modifications, as long as this notice is preserved.
42 # $ac_aux_dir to `$srcdir/foo'. In other projects, it is set to
46 # tool from the auxiliary directory. The problem is that $srcdir (and
[all …]
DREADME.DOS19 including pipes and redirection, even when COMMAND.COM is your
39 Simply unzip the makNNNb.zip file (where NNN is the version number)
43 unzipping, make sure the directory with make.exe is on your PATH,
55 either DJTAR (which is part of the DJGPP development
120 (If your Info directory is other than C:\DJGPP\INFO, change this
136 This is probably the most significant improvement, first
139 The original behavior of GNU Make is to invoke commands
141 the shell or internal shell commands, because that is faster.
153 internal shell commands. The only difference is that, since
154 there is no standard way to pass command lines longer than the
[all …]
DNEWS8 manual, which is contained in this distribution as the file doc/make.texi.
14 * GNU make is ported to OS/2.
16 * GNU make is ported to MinGW. The MinGW build is only supported by
33 feature is enabled then after all rules have been parsed the
38 as well, where the second expansion occurs when the rule is matched.
39 However, this means that when '.SECONDEXPANSION' is enabled you must
42 which used to be available by default, is now ONLY available when the
43 .SECONDEXPANSION target is defined. If your makefiles take advantage
60 backslash is now preserved, so you'll need to remove it.
63 support symbolic links, if this option is given then GNU make will
[all …]
/ndk/sources/host-tools/sed-4.2.1/
Daclocal.m45 # This file is free software; the Free Software Foundation
7 # with or without modifications, as long as this notice is preserved.
9 # This program is distributed in the hope that it will be useful,
18 You have another version of autoconf. It may work, but is not guaranteed to.
24 # This file is free software; the Free Software Foundation
26 # with or without modifications, as long as this notice is preserved.
44 # This is a private macro too. Using m4_define simplifies
51 # This function is AC_REQUIREd by AC_INIT_AUTOMAKE.
62 # This file is free software; the Free Software Foundation
64 # with or without modifications, as long as this notice is preserved.
[all …]
DBUGS22 smaller a stand-alone test case is, the better. A test case should
24 frobme-1.3.4''. Yes, that is in principle enough information to look
25 for the bug, but that is not a very practical prospect.
34 command is issued on the last line of a file. GNU sed instead
43 the standard, the meaning of some escape sequences is undefined in
60 versions interpret this as removing the string `abc|def'. This is
62 is arguably more robust: the older one, for example, required that
64 a slash, which is again undefined behavior; the new behavior avoids
65 this, and this is good because the regex matcher is only partially
78 one clobber protected files. This is not a bug, but rather a
[all …]

12345678910>>...19