Home
last modified time | relevance | path

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

/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/locale.ctype.byname/
Dis_many.pass.cpp47 assert(!(m[0] & F::blank)); in main()
61 assert( (m[1] & F::blank)); in main()
75 assert(!(m[2] & F::blank)); in main()
89 assert(!(m[3] & F::blank)); in main()
103 assert(!(m[4] & F::blank)); in main()
117 assert(!(m[5] & F::blank)); in main()
131 assert(!(m[6] & F::blank)); in main()
156 assert(!(m[0] & F::blank)); in main()
170 assert( (m[1] & F::blank)); in main()
184 assert(!(m[2] & F::blank)); in main()
[all …]
Dscan_is.pass.cpp43 assert(f.scan_is(F::blank, in.data(), in.data() + in.size()) - in.data() == 1); in main()
64 assert(f.scan_is(F::blank, in.data(), in.data() + in.size()) - in.data() == 1); in main()
Dscan_not.pass.cpp43 assert(f.scan_not(F::blank, in.data(), in.data() + in.size()) - in.data() == 0); in main()
64 assert(f.scan_not(F::blank, in.data(), in.data() + in.size()) - in.data() == 0); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/locale.ctype/locale.ctype.members/
Dis_many.pass.cpp44 assert( (m[0] & F::blank)); in main()
58 assert(!(m[1] & F::blank)); in main()
72 assert(!(m[2] & F::blank)); in main()
86 assert(!(m[3] & F::blank)); in main()
100 assert(!(m[4] & F::blank)); in main()
114 assert(!(m[5] & F::blank)); in main()
Dscan_not.pass.cpp40 assert(f.scan_not(F::blank, in.data(), in.data() + in.size()) - in.data() == 1); in main()
Dscan_is.pass.cpp40 assert(f.scan_is(F::blank, in.data(), in.data() + in.size()) - in.data() == 0); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/
Dis_many.pass.cpp44 assert( (m[0] & F::blank)); in main()
58 assert(!(m[1] & F::blank)); in main()
72 assert(!(m[2] & F::blank)); in main()
86 assert(!(m[3] & F::blank)); in main()
100 assert(!(m[4] & F::blank)); in main()
114 assert(!(m[5] & F::blank)); in main()
Dscan_is.pass.cpp40 assert(f.scan_is(F::blank, in.data(), in.data() + in.size()) - in.data() == 0); in main()
Dscan_not.pass.cpp40 assert(f.scan_not(F::blank, in.data(), in.data() + in.size()) - in.data() == 1); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.traits/
Dlookup_classname.pass.cpp63 test("blank", std::ctype_base::blank); in main()
64 test("Blank", std::ctype_base::blank); in main()
65 test("blank", std::ctype_base::blank, true); in main()
66 test("Blank", std::ctype_base::blank, true); in main()
151 test(L"blank", std::ctype_base::blank); in main()
152 test(L"Blank", std::ctype_base::blank); in main()
153 test(L"blank", std::ctype_base::blank, true); in main()
154 test(L"Blank", std::ctype_base::blank, true); in main()
/ndk/sources/host-tools/make-3.81/tests/scripts/functions/
Dstrip25 blank lines
48 and these test out some blank lines
Dsort29 ."blank:= \n"
32 ."\t\@echo \$(sort \$(blank) \$(foo) \$(bar2) \$(t1) \$(p1) )\n"
/ndk/sources/cxx-stl/llvm-libc++/patches.android/
D0001-android-Add-locale-support.patch25 static const mask blank = _ISBLANK;
39 + static const mask blank = 0x100;
47 static const mask blank = 1<<9;
179 +// have a proper bit-flag for blank characters.
191 +// - Bit flag _BLANK (0x100) is used to indicate blank characters.
196 +// Used to tag blank characters, this doesn't appear in <ctype.h> nor
D0009-Fix-locale-stuff-for-LP64.patch17 static const mask blank = _ISBLANK;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/
Dctype_base.pass.cpp75 test(std::ctype_base::blank); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
Dregex.cpp221 {"blank", ctype_base::blank},
Dlocale.cpp795 const ctype_base::mask ctype_base::blank; member in ctype_base
1267 if (m & blank) result |= (iswblank_l(ch, __l) != 0); in do_is()
1325 if (m & blank && iswblank_l(ch, __l)) break; in do_scan_is()
1350 if (m & blank && iswblank_l(ch, __l)) continue; in do_scan_not()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
D__locale331 static const mask blank = _ISblank;
343 static const mask blank = _BLANK;
362 static const mask blank = _CTYPE_BL;
364 static const mask blank = _CTYPE_B;
377 static const mask blank = _ISBLANK;
403 static const mask blank = 0x100;
415 static const mask blank = 1<<9;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/support/solaris/
Dxlocale.c125 LOCALE_ISCTYPE(blank, _ISALPHA) in LOCALE_ISCTYPE()
/ndk/sources/host-tools/make-3.81/
Dread.c146 int stop2, int blank, int ignorevars));
2142 find_char_unquote (char *string, int stop1, int stop2, int blank, in find_char_unquote() argument
2153 if (stop2 && blank) in find_char_unquote()
2160 else if (blank) in find_char_unquote()
DChangeLog1271 previous blank if we're beyond the beginning of the string, not
/ndk/sources/host-tools/make-3.81/config/
Dtexinfo.tex2185 % If we use the new definition of \page, we always get a blank page
2425 % horizontal list on a line by itself, resulting in extra blank space.
2874 % blank line, when TeX decides to break the line at the space before the
3022 % would result in a blank line in the output.
3754 % with blank space.
3786 % this line with blank space. (The \hfil is overwhelmed with the
5005 \let\par = \lisppar % don't ignore blank lines
5252 % of the @verbatim input line itself. Otherwise we get an extra blank
6366 % Remove inadvertent blank space before typesetting the footnote number.
/ndk/sources/host-tools/make-3.81/doc/
Dmake.texi1007 it) is effectively blank, and is ignored. If you want a literal
2325 @c Extra blank line makes sure this gets two lines.
3539 A blank line that begins with a tab is not blank: it's an empty
7616 @comment Extra blank lines make it print better.
7906 @c Extra blank line here makes the table look better.
7918 @c Extra blank line here makes the table look better.
7975 @c Extra blank line here makes the table look better.
8044 @c Extra blank line here makes the table look better.
8117 @c Extra blank line here makes the table look better.
8128 @c Extra blank line here makes the table look better.
[all …]
Dmake-stds.texi754 @comment The gratuitous blank line here is to make the table look better
Dmake.info-1875 spaces before it) is effectively blank, and is ignored. If you
2982 * A blank line that begins with a tab is not blank: it's an empty