HomeSort by relevance Sort by last modified time
    Searched refs:is (Results 1 - 25 of 8960) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Modules/Inputs/NoUmbrella.framework/Headers/
Boom.h 1 this is gibberish
  /external/clang/test/CodeGen/
debug-info-block.c 3 // Verify that the desired debugging type is generated for a structure
4 // member that is a pointer to a block.
10 } is; variable in typeref:struct:inStruct
  /external/valgrind/main/cachegrind/tests/
dlclose.stdout.exp 1 This is myprint!
  /external/valgrind/main/memcheck/tests/
inline.stdout.exp 1 sum is 0
varinfo4.stdout.exp 1 answer is 0
clientperm.stdout.exp 1 m_na: returned value is -1
2 sum is non-positive
3 m_rm: returned value is 1
4 sum is non-positive
supp-dir.stderr.exp 2 FATAL: suppressions file "x86/" is a directory
  /external/valgrind/main/memcheck/tests/x86/
pushfpopf.stdout.exp 1 fooble: result is 22
  /external/valgrind/main/none/tests/darwin/
rlimit.stderr.exp 1 RLIMIT_NOFILE is 256
  /external/valgrind/main/none/tests/
floored.stdout.exp 1 the answer is 3
readline1.stdout.exp 1 HERE strlen is 2
  /ndk/sources/cxx-stl/llvm-libc++/test/input.output/iostream.format/input.streams/istream.unformatted/
putback.pass.cpp 5 // This file is dual licensed under the MIT and the University of Illinois Open
45 std::istream is(&sb);
46 is.get();
47 is.get();
48 is.get();
49 is.putback('a');
50 assert(is.bad());
51 assert(is.gcount() == 0);
52 is.clear();
53 is.putback('2')
    [all...]
unget.pass.cpp 5 // This file is dual licensed under the MIT and the University of Illinois Open
45 std::istream is(&sb);
46 is.get();
47 is.get();
48 is.get();
49 is.unget();
50 assert(is.good());
51 assert(is.gcount() == 0);
52 is.unget();
53 assert(is.good())
    [all...]
get_pointer_size.pass.cpp 5 // This file is dual licensed under the MIT and the University of Illinois Open
45 std::istream is(&sb);
47 is.get(s, 5);
48 assert(!is.eof());
49 assert(!is.fail());
51 assert(is.gcount() == 2);
52 is.get(s, 5);
53 assert(!is.eof());
54 assert( is.fail());
56 assert(is.gcount() == 0)
    [all...]
get_pointer_size_chart.pass.cpp 5 // This file is dual licensed under the MIT and the University of Illinois Open
45 std::istream is(&sb);
47 is.get(s, 5, '*');
48 assert(!is.eof());
49 assert(!is.fail());
51 assert(is.gcount() == 2);
52 is.get(s, 5, '*');
53 assert(!is.eof());
54 assert( is.fail());
56 assert(is.gcount() == 0)
    [all...]
get.pass.cpp 5 // This file is dual licensed under the MIT and the University of Illinois Open
45 std::istream is(&sb);
46 char c = is.get();
47 assert(!is.eof());
48 assert(!is.fail());
50 assert(is.gcount() == 1);
54 std::istream is(&sb);
55 char c = is.get();
56 assert(!is.eof());
57 assert(!is.fail())
    [all...]
get_chart.pass.cpp 5 // This file is dual licensed under the MIT and the University of Illinois Open
45 std::istream is(&sb);
47 is.get(c);
48 assert(!is.eof());
49 assert(!is.fail());
51 assert(is.gcount() == 1);
55 std::istream is(&sb);
57 is.get(c);
58 assert(!is.eof());
59 assert(!is.fail())
    [all...]
  /external/valgrind/main/none/tests/s390x/
tre.stdout.exp 1 Resulting cc is 0 and the string is
2 Resulting cc is 0 and the string is
3 Resulting cc is 0 and the string is
4 Resulting cc is 1 and the string is a
5 Resulting cc is 0 and the string is
    [all...]
tr.stdout.exp 1 the translated string is
2 the translated string is
3 the translated string is A
4 the translated string is ABC
5 the translated string is ABC
6 the translated string is ABCDEFGH
7 the translated string is abc
8 the translated string is abc
9 the translated string is abcdefgh
10 the translated string is 01234567
    [all...]
  /ndk/tests/build/stdint-c++/jni/
test_constant_macros.cpp 5 #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/sources/cxx-stl/llvm-libc++/test/input.output/iostream.format/input.streams/iostreamclass/iostream.cons/
streambuf.pass.cpp 5 // This file is dual licensed under the MIT and the University of Illinois Open
31 std::basic_iostream<char> is(&sb);
32 assert(is.rdbuf() == &sb);
33 assert(is.tie() == 0);
34 assert(is.fill() == ' ');
35 assert(is.rdstate() == is.goodbit);
36 assert(is.exceptions() == is.goodbit);
37 assert(is.flags() == (is.skipws | is.dec))
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/input.output/iostream.format/input.streams/istream/istream.cons/
streambuf.pass.cpp 5 // This file is dual licensed under the MIT and the University of Illinois Open
31 std::basic_istream<char> is(&sb);
32 assert(is.rdbuf() == &sb);
33 assert(is.tie() == 0);
34 assert(is.fill() == ' ');
35 assert(is.rdstate() == is.goodbit);
36 assert(is.exceptions() == is.goodbit);
37 assert(is.flags() == (is.skipws | is.dec))
    [all...]
  /external/valgrind/main/drd/tests/
annotate_rwlock_hg.stderr.exp 1 Total error count is below threshold.
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
RecognizerSharedState.pm 11 is => 'rw',
17 is => 'rw',
22 # This is true when we see an error and before having successfully
26 is => 'rw',
32 # This is used to prevent infinite loops where an error is found
33 # but no token is consumed during recovery...another error is found,
34 # ad naseum. This is a failsafe mechanism to guarantee that at least
35 # one token/tree node is consumed for two errors
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/
is_1.pass.cpp 5 // This file is dual licensed under the MIT and the University of Illinois Open
14 // bool is(mask m, char c) const;
26 assert(f.is(F::space, ' '));
27 assert(!f.is(F::space, 'A'));
29 assert(f.is(F::print, ' '));
30 assert(!f.is(F::print, '\x07'));
32 assert(f.is(F::cntrl, '\x07'));
33 assert(!f.is(F::cntrl, ' '));
35 assert(f.is(F::upper, 'A'));
36 assert(!f.is(F::upper, 'a'))
    [all...]

Completed in 525 milliseconds

1 2 3 4 5 6 7 8 91011>>