/external/chromium_org/tools/gn/ |
path_output_unittest.cc | 14 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/Debug/foo.cc")) 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/ |
printvars.py | 13 out = open(sys.argv[2], 'w') variable 14 out.write(sys.argv[1]);
|
/external/clang/test/CodeGen/ |
2007-05-11-str-const.c | 3 static unsigned char out[]={0,1}; variable
|
mips-constraints-mem.c | 17 int out = 0; local 22 : "=r"(out)
|
mmx-inline-asm-error.c | 5 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/ |
freeze.pass.cpp | 22 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.str() == std::string("a")) [all...] |
pcount.pass.cpp | 22 std::ostrstream out; local 23 assert(out.pcount() == 0); 24 out << 123 << ' ' << 4.5 << ' ' << "dog"; 25 assert(out.pcount() == 11);
|
str.pass.cpp | 22 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/ |
freeze.pass.cpp | 22 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.str() == std::string("a")) [all...] |
pcount.pass.cpp | 22 std::strstream out; local 23 assert(out.pcount() == 0); 24 out << 123 << ' ' << 4.5 << ' ' << "dog"; 25 assert(out.pcount() == 11);
|
str.pass.cpp | 22 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/ |
stream_inserter.pass.cpp | 24 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/ |
test_fcsr.c | 5 long out [] = {0, 0}; local 21 : "r" (out) 24 printf("FCSR::1: 0x%lx, 2: 0x%lx\n", out[0], out[1]);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.str.strstreams/depr.ostrstream/depr.ostrstream.members/ |
freeze.pass.cpp | 22 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.str() == std::string("a")) [all...] |
pcount.pass.cpp | 22 std::ostrstream out; local 23 assert(out.pcount() == 0); 24 out << 123 << ' ' << 4.5 << ' ' << "dog"; 25 assert(out.pcount() == 11);
|
str.pass.cpp | 22 std::ostrstream out; local 23 out << 123 << ' ' << 4.5 << ' ' << "dog" << std::ends; 24 assert(out.str() == std::string("123 4.5 dog"));
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.str.strstreams/depr.strstream/depr.strstream.oper/ |
freeze.pass.cpp | 22 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.str() == std::string("a")) [all...] |
pcount.pass.cpp | 22 std::strstream out; local 23 assert(out.pcount() == 0); 24 out << 123 << ' ' << 4.5 << ' ' << "dog"; 25 assert(out.pcount() == 11);
|
str.pass.cpp | 22 std::strstream out; local 23 out << 123 << ' ' << 4.5 << ' ' << "dog" << std::ends; 24 assert(out.str() == std::string("123 4.5 dog"));
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/syserr/syserr.errcode/syserr.errcode.nonmembers/ |
stream_inserter.pass.cpp | 24 std::ostringstream out; local 25 out << std::error_code(std::io_errc::stream); 26 assert(out.str() == "iostream:1");
|
/frameworks/base/core/tests/coretests/src/com/android/internal/util/ |
FastXmlSerializerTest.java | 32 final XmlSerializer out = new FastXmlSerializer(); local 33 out.setOutput(stream, "utf-8"); 34 out.startDocument(null, true); 35 out.setFeature("http://xmlpull.org/v1/doc/features.html#indent-output", true); 37 out.startTag(null, "string"); 38 out.attribute(null, "name", "meow"); 39 out.text(""); 40 out.endTag(null, "string"); 42 out.endDocument();
|
/external/chromium_org/third_party/WebKit/Source/core/frame/ |
DOMWindowBase64.cpp | 29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 65 Vector<char> out; local 66 if (!base64Decode(encodedString, out, isHTMLSpace<UChar>, Base64ValidatePadding)) { 71 return String(out.data(), out.size());
|
/external/chromium_org/third_party/opus/src/silk/ |
log2lin.c | 24 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 40 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; [all...] |
/external/e2fsprogs/lib/uuid/ |
pack.c | 29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE 41 unsigned char *out = ptr; local 44 out[3] = (unsigned char) tmp; 46 out[2] = (unsigned char) tmp; 48 out[1] = (unsigned char) tmp; 50 out[0] = (unsigned char) tmp; 53 out[5] = (unsigned char) tmp; 55 out[4] = (unsigned char) tmp; 58 out[7] = (unsigned char) tmp; 60 out[6] = (unsigned char) tmp [all...] |
/external/libcxx/test/input.output/file.streams/fstreams/ifstream.cons/ |
string.pass.cpp | 29 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
|