HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 1 - 25 of 3043) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/tools/gn/
path_output_unittest.cc 13 SourceDir build_dir("//out/Debug/");
17 std::ostringstream out; local
18 writer.WriteFile(out, SourceFile("//foo/bar.cc"));
19 EXPECT_EQ("../../foo/bar.cc", out.str());
23 std::ostringstream out; local
24 writer.WriteFile(out, SourceFile("//foo.cc"));
25 EXPECT_EQ("../../foo.cc", out.str());
29 std::ostringstream out; local
30 writer.WriteFile(out, SourceFile("//out/Debug/foo.cc"))
38 std::ostringstream out; local
45 std::ostringstream out; local
58 std::ostringstream out; local
64 std::ostringstream out; local
75 std::ostringstream out; local
81 std::ostringstream out; local
94 std::ostringstream out; local
102 std::ostringstream out; local
110 std::ostringstream out; local
119 std::ostringstream out; local
128 std::ostringstream out; local
134 std::ostringstream out; local
148 std::ostringstream out; local
156 std::ostringstream out; local
167 std::ostringstream out; local
173 std::ostringstream out; local
181 std::ostringstream out; local
187 std::ostringstream out; local
195 std::ostringstream out; local
201 std::ostringstream out; local
207 std::ostringstream out; local
215 std::ostringstream out; local
223 std::ostringstream out; local
229 std::ostringstream out; local
235 std::ostringstream out; local
245 std::ostringstream out; local
251 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

Completed in 5482 milliseconds

1 2 3 4 5 6 7 8 91011>>