HomeSort by relevance Sort by last modified time
    Searched refs:oss (Results 1 - 25 of 129) sorted by null

1 2 3 4 5 6

  /art/runtime/base/
hex_dump_test.cc 35 std::ostringstream oss; local
36 oss << HexDump(test_text, strlen(test_text), false, "");
37 EXPECT_STREQ(oss.str().c_str(),
44 std::ostringstream oss; local
45 oss << HexDump(test_text, strlen(test_text), false, "");
46 EXPECT_STREQ(oss.str().c_str(),
56 std::ostringstream oss; local
57 oss << HexDump(&g16byte_aligned_number, 8, true, "");
59 EXPECT_STREQ(oss.str().c_str() + (kBitsPerIntPtrT / 4),
65 std::ostringstream oss; local
    [all...]
hash_set_test.cc 43 std::ostringstream oss; local
45 oss << static_cast<char>('A' + PRand() % 64);
48 oss << " " << unique_number_++; // Relies on ' ' < 'A'
49 return oss.str();
  /art/runtime/
reference_table_test.cc 39 std::ostringstream oss; local
40 rt.Dump(oss);
41 EXPECT_NE(oss.str().find("(empty)"), std::string::npos) << oss.str();
57 std::ostringstream oss; local
58 rt.Dump(oss);
59 EXPECT_NE(oss.str().find("1 of java.lang.String"), std::string::npos) << oss.str();
60 EXPECT_EQ(oss.str().find("short[]"), std::string::npos) << oss.str()
68 std::ostringstream oss; local
87 std::ostringstream oss; local
96 std::ostringstream oss; local
    [all...]
gc_root-inl.h 39 std::ostringstream oss; local
40 Describe(oss);
41 return oss.str();
indirect_reference_table_test.cc 30 std::ostringstream oss; local
31 irt->Dump(oss);
33 EXPECT_EQ(oss.str().find("java.lang.Object"), std::string::npos) << oss.str();
35 EXPECT_NE(oss.str().find("1 of java.lang.Object"), std::string::npos) << oss.str();
37 EXPECT_NE(oss.str().find(StringPrintf("%zd of java.lang.Object (%zd unique instances)",
42 << oss.str();
  /external/parameter-framework/remote-processor/
ConnectionSocket.cpp 68 std::ostringstream oss; local
69 oss << "CConnectionSocket::connect::connect on port: " << uiPort;
70 perror(oss.str().c_str());
ListeningSocket.cpp 66 std::ostringstream oss; local
67 oss << uiPort;
68 strError = "Could not bind socket to port " + oss.str() + ": " + strerror(errno);
74 std::ostringstream oss; local
75 oss << uiPort;
76 strError = "Could not listen to port " + oss.str() + ": " + strerror(errno);
  /external/v8/test/cctest/
test-ostreams.cc 16 OStringStream oss; local
18 CHECK(expected_size == oss.size());
19 CHECK_GT(oss.capacity(), 0);
20 CHECK_NE(NULL, oss.data());
21 CHECK_EQ("", oss.c_str());
32 OStringStream oss; local
36 oss.write(TEST_STRING, len);
46 CHECK(expected_len == oss.size());
47 CHECK_GT(oss.capacity(), 0);
48 CHECK_EQ(0, strncmp(expected, oss.data(), expected_len))
55 OStringStream oss; local
    [all...]
  /art/compiler/optimizing/
optimizing_compiler_stats.h 77 std::ostringstream oss; local
78 oss << "Attempted compilation of " << compile_stats_[kAttemptCompilation] << " methods: ";
80 oss << unoptimized_percent << "% (" << compile_stats_[kCompiledBaseline] << ") unoptimized, ";
81 oss << optimized_percent << "% (" << compile_stats_[kCompiledOptimized] << ") optimized, ";
82 oss << quick_percent << "% (" << compile_stats_[kCompiledQuick] << ") quick.";
84 LOG(INFO) << oss.str();
  /external/deqp/framework/common/
tcuFloatFormat.cpp 245 std::ostringstream oss; local
247 oss << (x < 0 ? "-" : "")
252 return oss.str();
325 ostringstream oss;
326 oss << expr << " returned " << result << ", expected " << reference;
327 TCU_FAIL(oss.str().c_str());
333 ostringstream oss;
335 oss << "ulp(" << arg << ")";
336 check(oss.str(), m_fmt->ulp(arg), ref);
342 ostringstream oss;
    [all...]
  /external/deqp/modules/gles31/functional/
es31fSeparateShaderTests.cpp 200 void printInputColor (ostringstream& oss, const VariableDeclaration& input)
229 oss << "hsv(vec3(" << exp << ", 1.0, 1.0))";
232 oss << "hsv(vec3(" << exp << ", 1.0))";
235 oss << "vec4(" << exp << ", 1.0)";
238 oss << exp;
250 oss << "hsv(vec3(determinant(" << exp << ")))";
261 oss << "hsv(" << exp << ")";
384 void printFloat (ostringstream& oss, double d)
386 oss.setf(oss.fixed | oss.internal)
    [all...]
  /external/jsoncpp/src/test_lib_json/
jsontest.h 93 std::ostringstream oss; local
94 oss.precision( 16 );
95 oss.setf( std::ios_base::floatfield );
96 oss << value;
97 return addToLastFailure(oss.str());
  /art/compiler/utils/arm/
assembler_arm_test.h 90 std::ostringstream oss; local
143 oss << "\n";
145 oss << base4;
154 oss << "\n";
156 return oss.str();
181 std::ostringstream oss; local
235 oss << "\n";
237 oss << after_reg2;
245 oss << "\n";
247 return oss.str()
267 std::ostringstream oss; local
333 std::ostringstream oss; local
397 std::ostringstream oss; local
453 std::ostringstream oss; local
    [all...]
assembler_arm32_test.cc 238 std::ostringstream oss; variable
239 oss << c;
240 return oss.str();
252 std::ostringstream oss; variable
256 oss << sop.GetRegister() << ", " << sop.GetShift();
258 oss << sop.GetRegister() << ", " << sop.GetShift() << " #" << sop.GetImmediate();
261 oss << sop.GetRegister();
264 oss << "#" << sop.GetImmediate();
266 return oss.str();
285 void ExecuteAndPrint(std::function<void()> f, std::string fmt, std::ostringstream& oss) {
361 after_reg, oss); local
379 after_shift, oss); local
396 after_cond, oss); local
428 std::ostringstream oss; local
    [all...]
  /art/runtime/jit/
jit_code_cache.cc 36 std::ostringstream oss; local
37 oss << "Failed to create read write execute cache: " << error_str << " size=" << capacity;
38 *error_msg = oss.str();
jit.cc 84 std::ostringstream oss; local
85 oss << "JIT could not load libart-compiler.so: " << dlerror();
86 *error_msg = oss.str();
  /external/zlib/src/contrib/iostream2/
zstream.h 243 ostrstream* oss = new ostrstream; local
244 oss->fill(m_os->fill());
245 oss->flags(m_os->flags());
246 oss->precision(m_os->precision());
247 oss->width(m_os->width());
249 delete[] m_os->str(); delete m_os; m_os = oss;
  /frameworks/av/services/audiopolicy/utilities/convert/
convert.h 153 std::stringstream oss; local
154 oss.precision(gFloatPrecision);
155 oss << value;
156 str = oss.str();
157 return !oss.fail() && !oss.bad();
  /art/runtime/gc/accounting/
mod_union_table_test.cc 119 std::ostream& operator<<(std::ostream& oss, ModUnionTableFactory::TableType type) {
122 oss << "CardCache";
126 oss << "ReferenceCache";
133 return oss;
222 std::ostringstream oss; local
223 table->Dump(oss);
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_linux.h 34 struct sigaltstack* oss);
  /external/owasp/sanitizer/tools/
stage_to_maven_central.sh 88 -Durl=https://oss.sonatype.org/service/local/staging/deploy/maven2/ \
91 echo "Follow instructions at https://docs.sonatype.org/display/Repository/Sonatype+OSS+Maven+Repository+Usage+Guide#SonatypeOSSMavenRepositoryUsageGuide-8a.ReleaseIt"
  /external/valgrind/coregrind/
pub_core_signals.h 59 vki_stack_t* oss );
  /art/runtime/interpreter/
interpreter_common.h 365 std::ostringstream oss; local
366 oss << PrettyMethod(shadow_frame.GetMethod())
372 oss << StringPrintf(" vreg%u=0x%08X", i, raw_value);
376 oss << "/java.lang.String \"" << ref_value->AsString()->ToModifiedUtf8() << "\"";
378 oss << "/" << PrettyTypeOf(ref_value);
382 TRACE_LOG << oss.str() << "\n";
  /development/ndk/platforms/android-8/include/
signal.h 130 extern int sigaltstack(const stack_t *ss, stack_t *oss);
  /prebuilts/ndk/5/platforms/android-8/arch-arm/usr/include/
signal.h 123 extern int sigaltstack(const stack_t *ss, stack_t *oss);

Completed in 740 milliseconds

1 2 3 4 5 6