HomeSort by relevance Sort by last modified time
    Searched refs:is1 (Results 1 - 23 of 23) sorted by null

  /external/libcxx/test/std/input.output/iostream.format/input.streams/iostreamclass/iostream.assign/
member_swap.pass.cpp 42 test_iostream<char> is1(&sb1);
44 is1.swap(is2);
45 assert(is1.rdbuf() == &sb1);
46 assert(is1.tie() == 0);
47 assert(is1.fill() == ' ');
48 assert(is1.rdstate() == is1.goodbit);
49 assert(is1.exceptions() == is1.goodbit);
50 assert(is1.flags() == (is1.skipws | is1.dec))
    [all...]
move_assign.pass.cpp 48 test_iostream<char> is1(&sb1);
50 is2 = (std::move(is1));
51 assert(is1.rdbuf() == &sb1);
52 assert(is1.tie() == 0);
53 assert(is1.fill() == ' ');
54 assert(is1.rdstate() == is1.goodbit);
55 assert(is1.exceptions() == is1.goodbit);
56 assert(is1.flags() == (is1.skipws | is1.dec))
    [all...]
  /external/libcxx/test/std/input.output/iostream.format/input.streams/istream/istream.assign/
member_swap.pass.cpp 42 test_istream<char> is1(&sb1);
44 is1.swap(is2);
45 assert(is1.rdbuf() == &sb1);
46 assert(is1.tie() == 0);
47 assert(is1.fill() == ' ');
48 assert(is1.rdstate() == is1.goodbit);
49 assert(is1.exceptions() == is1.goodbit);
50 assert(is1.flags() == (is1.skipws | is1.dec))
    [all...]
move_assign.pass.cpp 48 test_istream<char> is1(&sb1);
50 is2 = (std::move(is1));
51 assert(is1.rdbuf() == &sb1);
52 assert(is1.tie() == 0);
53 assert(is1.fill() == ' ');
54 assert(is1.rdstate() == is1.goodbit);
55 assert(is1.exceptions() == is1.goodbit);
56 assert(is1.flags() == (is1.skipws | is1.dec))
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/input.streams/iostreamclass/iostream.assign/
member_swap.pass.cpp 42 test_iostream<char> is1(&sb1);
44 is1.swap(is2);
45 assert(is1.rdbuf() == &sb1);
46 assert(is1.tie() == 0);
47 assert(is1.fill() == ' ');
48 assert(is1.rdstate() == is1.goodbit);
49 assert(is1.exceptions() == is1.goodbit);
50 assert(is1.flags() == (is1.skipws | is1.dec))
    [all...]
move_assign.pass.cpp 48 test_iostream<char> is1(&sb1);
50 is2 = (std::move(is1));
51 assert(is1.rdbuf() == &sb1);
52 assert(is1.tie() == 0);
53 assert(is1.fill() == ' ');
54 assert(is1.rdstate() == is1.goodbit);
55 assert(is1.exceptions() == is1.goodbit);
56 assert(is1.flags() == (is1.skipws | is1.dec))
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/input.streams/istream/istream.assign/
member_swap.pass.cpp 42 test_istream<char> is1(&sb1);
44 is1.swap(is2);
45 assert(is1.rdbuf() == &sb1);
46 assert(is1.tie() == 0);
47 assert(is1.fill() == ' ');
48 assert(is1.rdstate() == is1.goodbit);
49 assert(is1.exceptions() == is1.goodbit);
50 assert(is1.flags() == (is1.skipws | is1.dec))
    [all...]
move_assign.pass.cpp 48 test_istream<char> is1(&sb1);
50 is2 = (std::move(is1));
51 assert(is1.rdbuf() == &sb1);
52 assert(is1.tie() == 0);
53 assert(is1.fill() == ' ');
54 assert(is1.rdstate() == is1.goodbit);
55 assert(is1.exceptions() == is1.goodbit);
56 assert(is1.flags() == (is1.skipws | is1.dec))
    [all...]
  /external/libcxx/test/std/input.output/iostream.format/input.streams/iostreamclass/iostream.cons/
move.pass.cpp 47 test_iostream<char> is1(&sb);
48 test_iostream<char> is(std::move(is1));
49 assert(is1.rdbuf() == &sb);
50 assert(is1.gcount() == 0);
63 test_iostream<wchar_t> is1(&sb);
64 test_iostream<wchar_t> is(std::move(is1));
65 assert(is1.gcount() == 0);
67 assert(is1.rdbuf() == &sb);
  /external/libcxx/test/std/input.output/iostream.format/input.streams/istream/istream.cons/
move.pass.cpp 47 test_istream<char> is1(&sb);
48 test_istream<char> is(std::move(is1));
49 assert(is1.rdbuf() == &sb);
50 assert(is1.gcount() == 0);
63 test_istream<wchar_t> is1(&sb);
64 test_istream<wchar_t> is(std::move(is1));
65 assert(is1.gcount() == 0);
67 assert(is1.rdbuf() == &sb);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/input.streams/iostreamclass/iostream.cons/
move.pass.cpp 47 test_iostream<char> is1(&sb);
48 test_iostream<char> is(std::move(is1));
49 assert(is1.rdbuf() == &sb);
50 assert(is1.gcount() == 0);
63 test_iostream<wchar_t> is1(&sb);
64 test_iostream<wchar_t> is(std::move(is1));
65 assert(is1.gcount() == 0);
67 assert(is1.rdbuf() == &sb);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/input.streams/istream/istream.cons/
move.pass.cpp 47 test_istream<char> is1(&sb);
48 test_istream<char> is(std::move(is1));
49 assert(is1.rdbuf() == &sb);
50 assert(is1.gcount() == 0);
63 test_istream<wchar_t> is1(&sb);
64 test_istream<wchar_t> is(std::move(is1));
65 assert(is1.gcount() == 0);
67 assert(is1.rdbuf() == &sb);
  /libcore/luni/src/test/java/libcore/java/util/zip/
OldZipFileTest.java 84 InputStream is1 = zf.getInputStream(zf.getEntry("File1.txt")); local
87 is1.read();
93 is1.read();
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/xml/parsers/
SAXParserFactoryTest.java 45 InputStream is1; field in class:SAXParserFactoryTest
56 is1 = getClass().getResourceAsStream("/simple.xml");
64 is1.close();
155 sp.parse(is1, new MyHandler());
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/zip/
ZipFileTest.java 126 InputStream is1 = zf.getInputStream(zf.getEntry("File1.txt")); local
129 is1.read();
135 is1.read();
  /cts/tests/tests/graphics/src/android/graphics/cts/
BitmapRegionDecoderTest.java 172 InputStream is1 = obtainInputStream(RES_IDS[i]); local
173 BitmapRegionDecoder decoder = BitmapRegionDecoder.newInstance(is1, false);
198 InputStream is1 = obtainInputStream(RES_IDS[i]); local
199 BitmapRegionDecoder decoder = BitmapRegionDecoder.newInstance(is1, false);
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
CertificateFactory1Test.java 503 InputStream is1 = null; local
508 certFs[i].generateCertPath(is1);
522 certFs[i].generateCertPath(is1, enc);
  /libcore/luni/src/test/java/tests/security/cert/
CertificateFactory1Test.java 488 InputStream is1 = null; local
493 certFs[i].generateCertPath(is1);
507 certFs[i].generateCertPath(is1, enc);
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
crypto.js 1127 var j = e.t-1, w, is1 = true, r2 = nbi(), t;
1139 if(is1) { // ret == 1, don't bother squaring or multiplying it
1141 is1 = false;
    [all...]
  /external/v8/benchmarks/
crypto.js 1127 var j = e.t-1, w, is1 = true, r2 = nbi(), t;
1139 if(is1) { // ret == 1, don't bother squaring or multiplying it
1141 is1 = false;
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.team.core_3.5.100.R36x_v20100825-0800.jar 
org.eclipse.jdt.apt.core_3.3.401.R36_v20100727-0110.jar 
  /external/v8/test/cctest/
test-api.cc     [all...]

Completed in 2813 milliseconds