Searched defs:out (Results 1 - 25 of 2458) sorted by relevance

1234567891011>>

/external/chromium_org/tools/gn/
H A Dpath_output_unittest.cc14 SourceDir build_dir("//out/Debug/");
18 std::ostringstream out; local
19 writer.WriteFile(out, SourceFile("//foo/bar.cc"));
20 EXPECT_EQ("../../foo/bar.cc", out.str());
24 std::ostringstream out; local
25 writer.WriteFile(out, SourceFile("//foo.cc"));
26 EXPECT_EQ("../../foo.cc", out.str());
30 std::ostringstream out; local
31 writer.WriteFile(out, SourceFile("//out/Debu
39 std::ostringstream out; local
46 std::ostringstream out; local
59 std::ostringstream out; local
65 std::ostringstream out; local
76 std::ostringstream out; local
82 std::ostringstream out; local
95 std::ostringstream out; local
103 std::ostringstream out; local
111 std::ostringstream out; local
120 std::ostringstream out; local
129 std::ostringstream out; local
135 std::ostringstream out; local
149 std::ostringstream out; local
157 std::ostringstream out; local
168 std::ostringstream out; local
174 std::ostringstream out; local
182 std::ostringstream out; local
188 std::ostringstream out; local
196 std::ostringstream out; local
202 std::ostringstream out; local
208 std::ostringstream out; local
216 std::ostringstream out; local
222 std::ostringstream out; local
228 std::ostringstream out; local
234 std::ostringstream out; local
242 std::ostringstream out; local
248 std::ostringstream out; local
254 std::ostringstream out; local
264 std::ostringstream out; local
270 std::ostringstream out; local
[all...]
/external/chromium_org/tools/gyp/test/rules-dirname/src/subdir/
H A Dprintvars.py13 out = open(sys.argv[2], 'w') variable
14 out.write(sys.argv[1]);
/external/clang/test/CodeGen/
H A D2007-05-11-str-const.c3 static unsigned char out[]={0,1}; variable
H A Dmips-constraints-mem.c17 int out = 0; local
22 : "=r"(out)
H A Dmmx-inline-asm-error.c5 vec256 out; local
8 asm("something %0" : "=y"(out)); // expected-error {{invalid type 'vec256' (vector of 8 'int' values) in asm input for constraint 'y'}}
9 asm("something %0, %0" : "+y"(out)); // expected-error {{invalid type 'vec256' (vector of 8 'int' values) in asm input for constraint 'y'}}
11 return out;
/external/libcxx/test/depr/depr.str.strstreams/depr.ostrstream/depr.ostrstream.members/
H A Dfreeze.pass.cpp22 std::ostrstream out; local
23 out.freeze();
24 assert(!out.fail());
25 out << 'a';
26 assert(out.fail());
27 out.clear();
28 out.freeze(false);
29 out << 'a';
30 out << char(0);
31 assert(out
[all...]
H A Dpcount.pass.cpp22 std::ostrstream out; local
23 assert(out.pcount() == 0);
24 out << 123 << ' ' << 4.5 << ' ' << "dog";
25 assert(out.pcount() == 11);
H A Dstr.pass.cpp22 std::ostrstream out; local
23 out << 123 << ' ' << 4.5 << ' ' << "dog" << std::ends;
24 assert(out.str() == std::string("123 4.5 dog"));
/external/libcxx/test/depr/depr.str.strstreams/depr.strstream/depr.strstream.oper/
H A Dfreeze.pass.cpp22 std::strstream out; local
23 out.freeze();
24 assert(!out.fail());
25 out << 'a';
26 assert(out.fail());
27 out.clear();
28 out.freeze(false);
29 out << 'a';
30 out << char(0);
31 assert(out
[all...]
H A Dpcount.pass.cpp22 std::strstream out; local
23 assert(out.pcount() == 0);
24 out << 123 << ' ' << 4.5 << ' ' << "dog";
25 assert(out.pcount() == 11);
H A Dstr.pass.cpp22 std::strstream out; local
23 out << 123 << ' ' << 4.5 << ' ' << "dog" << std::ends;
24 assert(out.str() == std::string("123 4.5 dog"));
/external/libcxx/test/diagnostics/syserr/syserr.errcode/syserr.errcode.nonmembers/
H A Dstream_inserter.pass.cpp24 std::ostringstream out; local
25 out << std::error_code(std::io_errc::stream);
26 assert(out.str() == "iostream:1");
/external/valgrind/main/none/tests/mips64/
H A Dtest_fcsr.c5 long out [] = {0, 0}; local
21 : "r" (out)
24 printf("FCSR::1: 0x%lx, 2: 0x%lx\n", out[0], out[1]);
/external/chromium_org/base/strings/
H A Dnullable_string16.cc13 std::ostream& operator<<(std::ostream& out, const NullableString16& value) { argument
14 return value.is_null() ? out << "(null)" : out << UTF16ToUTF8(value.string());
/external/chromium_org/third_party/WebKit/Source/platform/exported/linux/
H A DWebFontRenderStyle.cpp40 void WebFontRenderStyle::toFontRenderStyle(FontRenderStyle* out) argument
42 out->useBitmaps = useBitmaps;
43 out->useAutoHint = useAutoHint;
44 out->useHinting = useHinting;
45 out->hintStyle = hintStyle;
46 out->useAntiAlias = useAntiAlias;
47 out->useSubpixelRendering = useSubpixelRendering;
48 out->useSubpixelPositioning = useSubpixelPositioning;
/external/chromium_org/third_party/opus/src/silk/
H A Dlog2lin.c40 opus_int32 out, frac_Q7; local
48 out = silk_LSHIFT( 1, silk_RSHIFT( inLog_Q7, 7 ) );
52 out = silk_ADD_RSHIFT32( out, silk_MUL( out, silk_SMLAWB( frac_Q7, silk_SMULBB( frac_Q7, 128 - frac_Q7 ), -174 ) ), 7 );
55 out = silk_MLA( out, silk_RSHIFT( out, 7 ), silk_SMLAWB( frac_Q7, silk_SMULBB( frac_Q7, 128 - frac_Q7 ), -174 ) );
57 return out;
/external/eigen/bench/spbench/
H A Dspbenchstyle.h13 void printBenchStyle(std::ofstream& out) argument
15 out << "<xsl:stylesheet id='stylesheet' version='1.0' \
26 out<<"<table border='1' width='100%' height='100%'>\n \
40 out<<" <xsl:for-each select='BENCH/LINEARSYSTEM'>\n \
53 out<<" <TR>\n \
74 out<<" <TR>\n \
/external/libcxx/test/input.output/file.streams/fstreams/ifstream.cons/
H A Dstring.pass.cpp29 std::ifstream fs(std::string("test.dat"), std::ios_base::out); member in class:std::ios_base
41 std::wifstream fs(std::string("test.dat"), std::ios_base::out); member in class:std::ios_base
/external/libcxx/test/strings/basic.string/string.nonmembers/string.io/
H A Dstream_insert.pass.cpp26 std::ostringstream out; local
28 out << s;
29 assert(out.good());
30 assert(s == out.str());
33 std::ostringstream out; local
35 out.width(12);
36 out << s;
37 assert(out.good());
38 assert(" " + s == out.str());
41 std::wostringstream out; local
48 std::wostringstream out; local
58 std::basic_ostringstream<S::value_type, S::traits_type, S::allocator_type> out; local
66 std::basic_ostringstream<S::value_type, S::traits_type, S::allocator_type> out; local
75 std::basic_ostringstream<S::value_type, S::traits_type, S::allocator_type> out; local
83 std::basic_ostringstream<S::value_type, S::traits_type, S::allocator_type> out; local
[all...]
/external/libopus/silk/
H A Dlog2lin.c40 opus_int32 out, frac_Q7; local
48 out = silk_LSHIFT( 1, silk_RSHIFT( inLog_Q7, 7 ) );
52 out = silk_ADD_RSHIFT32( out, silk_MUL( out, silk_SMLAWB( frac_Q7, silk_SMULBB( frac_Q7, 128 - frac_Q7 ), -174 ) ), 7 );
55 out = silk_MLA( out, silk_RSHIFT( out, 7 ), silk_SMLAWB( frac_Q7, silk_SMULBB( frac_Q7, 128 - frac_Q7 ), -174 ) );
57 return out;
/external/qemu/android/filesystems/
H A Dfstab_parser_unittest.cpp29 char* out = NULL; local
31 "/system", &out));
32 EXPECT_STREQ("ext4", out);
33 free(out);
36 "/data", &out));
37 EXPECT_STREQ("yaffs2", out);
38 free(out);
41 "/cache", &out));
42 EXPECT_STREQ("ntfs", out);
43 free(out);
[all...]
/external/valgrind/main/none/tests/mips32/
H A Dtest_fcsr.c5 int out [] = {0, 0}; local
20 : "r" (in), "r" (out)
23 printf("FCSR::1: 0x%x, 2: 0x%x\n", out[0], out[1]);
/external/chromium_org/media/filters/
H A Din_memory_url_protocol_unittest.cc16 uint8 out[sizeof(kData)]; local
17 EXPECT_EQ(4, protocol.Read(sizeof(out), out));
18 EXPECT_EQ(0, memcmp(out, kData, sizeof(out)));
24 uint8 out[sizeof(kData)]; local
25 EXPECT_EQ(AVERROR(EIO), protocol.Read(-2, out));
31 uint8 out; local
32 EXPECT_EQ(0, protocol.Read(0, &out));
41 uint8 out; local
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/testing/
H A DWTFTestHelpers.cpp40 std::ostream& operator<<(std::ostream& out, const String& string) argument
43 return out << "<null>";
45 out << '"';
51 out << "\\t";
54 out << "\\n";
57 out << "\\r";
60 out << "\\\"";
63 out << "\\\\";
67 out << static_cast<char>(character);
70 out << "\\
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/d3d1xshader/src/
H A Ddxbc_dump.cpp32 std::ostream& operator <<(std::ostream& out, const dxbc_container& container) argument
40 out << "# DXBC chunk " << std::setw(2) << i << ": " << fourcc_str << " offset " << ((char*)chunk - (char*)container.data) << " size " << bswap_le32(chunk->size) << "\n";
42 return out;

Completed in 8714 milliseconds

1234567891011>>