Home
last modified time | relevance | path

Searched refs:os1 (Results 1 – 20 of 20) sorted by relevance

/external/libcxx/test/std/input.output/iostream.format/output.streams/ostream.assign/
Dmember_swap.pass.cpp42 test_ostream<char> os1(&sb1); in main() local
44 os1.swap(os2); in main()
45 assert(os1.rdbuf() == &sb1); in main()
46 assert(os1.tie() == 0); in main()
47 assert(os1.fill() == ' '); in main()
48 assert(os1.rdstate() == os1.goodbit); in main()
49 assert(os1.exceptions() == os1.goodbit); in main()
50 assert(os1.flags() == (os1.skipws | os1.dec)); in main()
51 assert(os1.precision() == 6); in main()
52 assert(os1.getloc().name() == "C"); in main()
[all …]
Dmove_assign.pass.cpp47 test_ostream<char> os1(&sb1); in main() local
49 os2 = (std::move(os1)); in main()
50 assert(os1.rdbuf() == &sb1); in main()
51 assert(os1.tie() == 0); in main()
52 assert(os1.fill() == ' '); in main()
53 assert(os1.rdstate() == os1.goodbit); in main()
54 assert(os1.exceptions() == os1.goodbit); in main()
55 assert(os1.flags() == (os1.skipws | os1.dec)); in main()
56 assert(os1.precision() == 6); in main()
57 assert(os1.getloc().name() == "C"); in main()
[all …]
/external/libcxx/test/std/input.output/iostream.format/output.streams/ostream.cons/
Dmove.pass.cpp46 test_ostream<char> os1(&sb); in main() local
47 test_ostream<char> os(std::move(os1)); in main()
48 assert(os1.rdbuf() == &sb); in main()
60 test_ostream<wchar_t> os1(&sb); in main() local
61 test_ostream<wchar_t> os(std::move(os1)); in main()
62 assert(os1.rdbuf() == &sb); in main()
/external/libutf/
Drunestrncpy.c23 Rune *os1; in runestrncpy() local
25 os1 = s1; in runestrncpy()
30 return os1; in runestrncpy()
32 return os1; in runestrncpy()
Drunestrcpy.c22 Rune *os1; in runestrcpy() local
24 os1 = s1; in runestrcpy()
27 return os1; in runestrcpy()
Drunestrncat.c22 Rune *os1; in runestrncat() local
24 os1 = s1; in runestrncat()
31 return os1; in runestrncat()
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/Support/
DDebugTest.cpp20 raw_string_ostream os1(s1), os2(s2); in TEST() local
25 DEBUG_WITH_TYPE("A", os1 << "A"); in TEST()
26 DEBUG_WITH_TYPE("B", os1 << "B"); in TEST()
27 EXPECT_EQ("AB", os1.str()); in TEST()
/external/python/cpython2/Modules/
D_localemodule.c285 PyObject *os1, *os2, *result = NULL; in PyLocale_strcoll()
289 if (!PyArg_UnpackTuple(args, "strcoll", 2, 2, &os1, &os2)) in PyLocale_strcoll()
292 if (PyString_Check(os1) && PyString_Check(os2)) in PyLocale_strcoll()
293 return PyInt_FromLong(strcoll(PyString_AS_STRING(os1), in PyLocale_strcoll()
296 if (!PyUnicode_Check(os1) && !PyUnicode_Check(os2)) { in PyLocale_strcoll()
300 if (!PyUnicode_Check(os1)) { in PyLocale_strcoll()
301 os1 = PyUnicode_FromObject(os1); in PyLocale_strcoll()
302 if (!os1) in PyLocale_strcoll()
310 Py_DECREF(os1); in PyLocale_strcoll()
317 len1 = PyUnicode_GET_SIZE(os1) + 1; in PyLocale_strcoll()
[all …]
/external/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/
Dpointer.pass.cpp63 std::ostream os1(&sb1); in main() local
65 os1 << &n1; in main()
66 assert(os1.good()); in main()
/external/clang/lib/StaticAnalyzer/Checkers/
DCheckSecuritySyntaxOnly.cpp611 llvm::raw_svector_ostream os1(buf1); in checkCall_rand() local
612 os1 << '\'' << *FD << "' is a poor random number generator"; in checkCall_rand()
622 BR.EmitBasicReport(AC->getDecl(), filter.checkName_rand, os1.str(), in checkCall_rand()
727 llvm::raw_svector_ostream os1(buf1); in checkUncheckedReturnValue() local
728 os1 << "Return value is not checked in call to '" << *FD << '\''; in checkUncheckedReturnValue()
738 BR.EmitBasicReport(AC->getDecl(), filter.checkName_UncheckedReturn, os1.str(), in checkUncheckedReturnValue()
/external/python/cpython3/Modules/
D_localemodule.c305 PyObject *os1, *os2, *result = NULL; in PyLocale_strcoll() local
308 if (!PyArg_ParseTuple(args, "UU:strcoll", &os1, &os2)) in PyLocale_strcoll()
311 ws1 = PyUnicode_AsWideCharString(os1, NULL); in PyLocale_strcoll()
/external/swiftshader/third_party/LLVM/lib/Analysis/
DAliasAnalysisEvaluator.cpp94 raw_string_ostream os1(o1), os2(o2); in PrintResults() local
95 WriteAsOperand(os1, V1, true, M); in PrintResults()
/external/llvm/lib/Analysis/
DAliasAnalysisEvaluator.cpp45 raw_string_ostream os1(o1), os2(o2); in PrintResults() local
46 V1->printAsOperand(os1, true, M); in PrintResults()
/external/bcc/src/cc/frontends/clang/
Dloader.cc375 llvm::raw_string_ostream os1(out_str1); in do_compile() local
376 BFrontendAction bact(os1, flags_, ts, id, main_path, func_src, mod_src, maps_ns); in do_compile()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
DAliasAnalysisEvaluator.cpp49 raw_string_ostream os1(o1), os2(o2); in PrintResults() local
50 V1->printAsOperand(os1, true, M); in PrintResults()
/external/hyphenation-patterns/ga/
Dhyph-ga.pat.txt4387 os1ó
4399 os1ú
/external/hyphenation-patterns/hu/
Dhyph-hu.pat.txt39853 os1áld
39855 os1á2lom
39863 os1á2t1a
39864 os1áté
39865 os1átj
39866 os1átk
39915 os1ök
39916 os1ö2l
39917 os1ön
39918 os1ö2v
[all …]
/external/hyphenation-patterns/en-GB/
Dhyph-en-gb.pat.txt337 .os1
/external/toolchain-utils/android_bench_suite/panorama_input/
Dtest_006.ppm598 H?/IF,B?%4:<B >E);B&38&38&a`Z����������������������os1133* -
/external/honggfuzz/examples/apache-httpd/corpus_http1/
D7145012b5b575a0f12c17d6e14bd32fc.000f35d9.honggfuzz.cov1280 Ӟ���32z�M�*~��]�~��N�[ʹ$.M��0�����B�9��hu��q��~���Sx;G*�J��Aΐ����<,��J����1$os1�P �����4…