HomeSort by relevance Sort by last modified time
    Searched refs:is (Results 126 - 150 of 10574) sorted by null

1 2 3 4 56 7 8 91011>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/input.streams/istream.formatted/istream_extractors/
signed_char.pass.cpp 5 // This file is dual licensed under the MIT and the University of Illinois Open
46 std::istream is(&sb);
48 is >> c;
49 assert( is.eof());
50 assert( is.fail());
55 std::istream is(&sb);
57 is >> c;
58 assert(!is.eof());
59 assert(!is.fail());
61 is >> c
    [all...]
unsigned_char.pass.cpp 5 // This file is dual licensed under the MIT and the University of Illinois Open
46 std::istream is(&sb);
48 is >> c;
49 assert( is.eof());
50 assert( is.fail());
55 std::istream is(&sb);
57 is >> c;
58 assert(!is.eof());
59 assert(!is.fail());
61 is >> c
    [all...]
  /external/valgrind/none/tests/s390x/
stfle.stdout.exp 1 the value of cc is 0 and #double words is 2
2 the value of cc is 0 and #double words is 2
3 The z/Architecture architectural mode is installed and active
4 the value of cc is 0 and #double words is 2
5 STFLE facility is installed
6 the value of cc is 3 and #double words is
    [all...]
trtt.stdout.exp 2 the translated values is
4 the translated values is
6 the translated values is
8 the translated values is ffff dddd
10 the translated values is ffff dddd ffff cccc abab
12 the translated values is 0 0 0 0 0
14 the translated values is ffff dddd ffff 0 0
16 the translated values is ffff dddd ffff cccc abab caca bcbc cccc dada 0
  /external/eigen/failtest/
failtest_sanity_check.cpp 2 This is just some text that won't compile as a C++ file, as a basic sanity check for failtest.
  /external/strace/linux/
arch_sigreturn.c 1 #warning sigreturn/rt_sigreturn signal mask decoding is not implemented for this architecture
  /external/valgrind/memcheck/tests/
xml1.stdout.exp 1 hello from frame3(). The answer is not 42.
  /external/valgrind/none/tests/
pth_cancel1.stdout.exp 3 result is correct
  /frameworks/base/obex/javax/obex/
ObexPacket.java 12 * distributed under the License is distributed on an "AS IS" BASIS,
35 * @param is the input stream to read from.
39 public static ObexPacket read(InputStream is) throws IOException {
40 int headerId = is.read();
41 return read(headerId, is);
47 * @param is the stream to read from, assuming 1 byte have already been read.
51 public static ObexPacket read(int headerId, InputStream is) throws IOException {
53 int length = is.read();
54 length = (length << 8) + is.read()
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
issperr.h 2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the mingw-w64 runtime package.
4 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
6 #warning The header issperr.h is an obsolete file.
  /external/libcxx/test/std/input.output/iostream.format/input.streams/istream.unformatted/
ignore_0xff.pass.cpp 5 // This file is dual licensed under the MIT and the University of Illinois Open
28 std::istringstream is(s);
30 size_t a=is.tellg();
31 is.ignore(ignoreLen);
32 size_t b=is.tellg();
  /external/mesa3d/src/gallium/drivers/svga/
svga_resource.h 6 * Permission is hereby granted, free of charge, to any person obtaining a
11 * permit persons to whom the Software is furnished to do so, subject to
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
38 void svga_init_screen_resource_functions(struct svga_screen *is);
  /external/mesa3d/src/glsl/glcpp/tests/
019-define-func-1-arg-multi.c 2 foo(this is more than one word)
  /external/sfntly/cpp/src/test/
memory_io_test.cc 11 * distributed under the License is distributed on an "AS IS" BASIS,
41 MemoryInputStream is; local
42 is.Attach(&(test_buffer[0]), kTestBufferLen);
43 EXPECT_EQ(is.Available(), (int32_t)kTestBufferLen);
46 EXPECT_EQ(is.Read(), '0'); // position 1
47 EXPECT_EQ(is.Read(), '1'); // position 2
48 EXPECT_EQ(is.Read(), '2'); // position 3
53 EXPECT_EQ(is.Read(&b), 7); // position 10
57 EXPECT_EQ(is.Read(&b, 7, 10), 10); // position 2
    [all...]
  /external/valgrind/none/tests/arm/
ldrt.stdout.exp 1 result is 0x87868584 (should be 0x87868584)
2 result is 131 200 150 100 10 136 (should be 131 200 150 100 10 136)
3 result is 131 255 133 (should be 131 255 133)
4 result is 131 255 255 134 (should be 131 255 255 134)
5 result is 137 (should be 137)
6 result is 4294967294 (should be 4294967294)
7 result is 65277 (should be 65277)
8 result is 0xffffbadf (should be 0xffffbadf)
  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
pv_mp3_huffman.h 11 * distributed under the License is distributed on an "AS IS" BASIS,
84 int32 pvmp3_huffman_parsing(int32 is[SUBBANDS_NUMBER*FILTERBANK_BANDS],
92 int32 *is,
96 int32 *is,
101 int32 *is,
  /frameworks/opt/vcard/java/com/android/vcard/
VCardParser.java 11 * distributed under the License is distributed on an "AS IS" BASIS,
40 * @param is The source to parse.
43 public abstract void parse(InputStream is) throws IOException, VCardException;
55 * <p>This happens when the first entry contains nested vCards, which is allowed in vCard 2.1.
71 * @param is The source to parse.
74 public abstract void parseOne(InputStream is) throws IOException, VCardException;
81 public void parse(InputStream is, VCardInterpreter interpreter)
84 parse(is);
92 * Actual cancel is done after parsing the current vcard
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/input.streams/istream.unformatted/
ignore_0xff.pass.cpp 5 // This file is dual licensed under the MIT and the University of Illinois Open
28 std::istringstream is(s);
30 size_t a=is.tellg();
31 is.ignore(ignoreLen);
32 size_t b=is.tellg();
  /ndk/tests/build/test-inet-defs/jni/
test-in6.c 11 * distributed under the License is distributed on an "AS IS" BASIS,
19 #error IN6_IS_ADDR_MC_NODELOCAL is not defined by <inet/in6.h>
22 #error IN6_IS_ADDR_MC_GLOBAL is not defined by <inet/in6.h>
25 #error IN6ADDR_ANY_INIT is not defined by <inet/in6.h>
28 #error IN6_IS_ADDR_MULTICAST is not defined by <inet/in6.h>
  /ndk/tests/device/test-gnustl-full/unit/
strstream_test.cpp 35 istrstream is("652208307");
37 is >> rval;
41 istrstream is("-652208307");
43 is >> rval;
  /ndk/tests/device/test-stlport/unit/
strstream_test.cpp 35 istrstream is("652208307");
37 is >> rval;
41 istrstream is("-652208307");
43 is >> rval;
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
CharStreamState.pm 7 is => 'rw',
12 # What line number is the scanner at before processing buffer[p]?
14 is => 'rw',
19 # What char position 0..n-1 in line is scanner before processing buffer[p]?
21 is => 'rw',
NoViableAltException.pm 8 is => 'ro',
14 is => 'ro',
20 is => 'ro',
  /external/libcxx/test/std/input.output/iostream.format/ext.manip/
get_money.pass.cpp 5 // This file is dual licensed under the MIT and the University of Illinois Open
45 std::istream is(&sb);
46 is.imbue(std::locale(LOCALE_en_US_UTF_8));
48 is >> std::get_money(x, false);
53 std::istream is(&sb);
54 is.imbue(std::locale(LOCALE_en_US_UTF_8));
56 is >> std::get_money(x, true);
61 std::wistream is(&sb);
62 is.imbue(std::locale(LOCALE_en_US_UTF_8));
64 is >> std::get_money(x, false)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/ext.manip/
get_money.pass.cpp 5 // This file is dual licensed under the MIT and the University of Illinois Open
46 std::istream is(&sb);
47 is.imbue(std::locale(LOCALE_en_US_UTF_8));
49 is >> std::get_money(x, false);
54 std::istream is(&sb);
55 is.imbue(std::locale(LOCALE_en_US_UTF_8));
57 is >> std::get_money(x, true);
62 std::wistream is(&sb);
63 is.imbue(std::locale(LOCALE_en_US_UTF_8));
65 is >> std::get_money(x, false)
    [all...]

Completed in 2017 milliseconds

1 2 3 4 56 7 8 91011>>