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

1 2 3

  /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 45 std::ostringstream oss; local
47 oss << static_cast<char>('A' + PRand() % 64);
50 oss << " " << unique_number_++; // Relies on ' ' < 'A'
51 return oss.str();
  /art/runtime/
gc_root-inl.h 39 std::ostringstream oss; local
40 Describe(oss);
41 return oss.str();
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...]
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/webrtc/webrtc/base/
stringencode.h 185 std::ostringstream oss; local
186 oss << std::boolalpha << t;
187 *s = oss.str();
188 return !oss.fail();
optional_unittest.cc 80 std::ostringstream oss; local
81 oss << id_ << ':' << origin_ << ". " << msg;
82 log_->push_back(oss.str());
85 std::ostringstream oss; local
86 oss << id_ << ':' << origin_ << ". " << msg << " (from " << other.id_ << ':'
88 log_->push_back(oss.str());
91 std::ostringstream oss; local
92 oss << msg << ' ' << a.id_ << ':' << a.origin_ << ", " << b.id_ << ':'
94 log_->push_back(oss.str());
  /frameworks/av/media/libmedia/
MemoryLeakTrackUtil.cpp 71 std::ostringstream oss; local
72 oss << totalMemory << " bytes in " << count << " allocations\n";
73 oss << " ABI: '" ABI_STRING "'" << "\n\n";
88 oss << (e->size * e->allocations)
90 oss << backtrace_string(e->backtrace, backtraceSize) << "\n";
92 oss << "\n";
94 return oss.str();
  /external/opencv3/samples/cpp/tutorial_code/video/
bg_sub.cpp 167 ostringstream oss; local
168 oss << (frameNumber + 1);
169 string nextFrameNumberString = oss.str();
  /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();
  /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...]
  /art/compiler/utils/
dedupe_set-inl.h 213 std::ostringstream oss; local
214 oss << set_name << " lock " << i;
215 shards_[i].reset(new Shard(alloc, oss.str()));
  /art/compiler/utils/mips64/
assembler_mips64_test.cc 638 std::ostringstream oss; local
639 oss <<
654 std::string expected = oss.str();
808 std::ostringstream oss; local
809 oss <<
822 std::string expected = oss.str();
    [all...]
  /external/parameter-framework/upstream/parameter/
ArrayParameter.cpp 226 std::ostringstream oss; local
228 oss << "Provided index out of range (max is " << getArrayLength() - 1 << ")";
230 parameterAccessContext.setError(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;
  /hardware/bsp/intel/peripheral/libmraa/api/mraa/
iio.hpp 75 std::ostringstream oss; local
76 oss << "IIO device " << device << " is not valid";
77 throw std::invalid_argument(oss.str());
90 std::ostringstream oss; local
93 oss << "IIO device name " << deviceName << " not found";
94 throw std::invalid_argument(oss.str());
98 oss << "IIO device " << deviceName << " is not valid";
99 throw std::invalid_argument(oss.str());
138 std::ostringstream oss; local
139 oss << "IIO readInt for attibute " << attributeName << " failed"
160 std::ostringstream oss; local
180 std::ostringstream oss; local
200 std::ostringstream oss; local
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
sstream_test.cpp 476 ostringstream oss; local
477 oss << v;
478 return oss.str();
  /ndk/tests/device/test-stlport/unit/
sstream_test.cpp 476 ostringstream oss; local
477 oss << v;
478 return oss.str();
  /art/compiler/linker/
relative_patcher_test.h 233 std::ostringstream oss; local
234 oss << "[stripped " << remove << "]";
235 std::string replacement = oss.str();
  /art/compiler/utils/arm/
assembler_arm32_test.cc 243 std::ostringstream oss; variable
244 oss << c;
245 return oss.str();
266 std::ostringstream oss; variable
270 oss << sop.GetRegister() << ", " << sop.GetShift();
272 oss << sop.GetRegister() << ", " << sop.GetShift() << " #" << sop.GetImmediate();
275 oss << sop.GetRegister();
278 oss << "#" << sop.GetImmediate();
280 return oss.str();
299 void ExecuteAndPrint(std::function<void()> f, std::string fmt, std::ostringstream& oss) {
450 after_reg, after_reg_filter, oss); local
477 after_shift, after_shift_filter, oss); local
503 after_cond, after_cond_filter, oss); local
529 after_cond, after_cond_filter, oss); local
561 std::ostringstream oss; local
    [all...]
assembler_arm_test.h 96 std::ostringstream oss; local
149 oss << "\n";
151 oss << base4;
160 oss << "\n";
162 return oss.str();
187 std::ostringstream oss; local
241 oss << "\n";
243 oss << after_reg2;
251 oss << "\n";
253 return oss.str()
273 std::ostringstream oss; local
339 std::ostringstream oss; local
403 std::ostringstream oss; local
459 std::ostringstream oss; local
    [all...]
  /art/runtime/gc/accounting/
mod_union_table_test.cc 132 std::ostream& operator<<(std::ostream& oss, ModUnionTableFactory::TableType type) {
135 oss << "CardCache";
139 oss << "ReferenceCache";
146 return oss;
240 std::ostringstream oss; local
241 table->Dump(oss);
  /external/jsoncpp/src/lib_json/
json_writer.cpp 159 std::ostringstream oss; local
160 oss << "\\u" << std::hex << std::uppercase << std::setfill('0')
162 result += oss.str();
  /external/jsoncpp/src/test_lib_json/
jsontest.h 85 std::ostringstream oss; local
86 oss.precision(16);
87 oss.setf(std::ios_base::floatfield);
88 oss << value;
89 return addToLastFailure(oss.str());
  /external/libweave/third_party/chromium/base/time/
time_unittest.cc 547 std::ostringstream oss; local
548 oss << any;
549 return oss.str();
809 std::ostringstream oss; local
810 std::ios_base::fmtflags flags_before = oss.flags();
811 oss << TimeDelta();
812 EXPECT_EQ(flags_before, oss.flags());
816 std::ostringstream oss; local
817 oss << TimeDelta();
818 EXPECT_TRUE(oss.good())
826 std::ostringstream oss; local
833 std::ostringstream oss; local
855 std::ostringstream oss; local
862 std::ostringstream oss; local
    [all...]

Completed in 3054 milliseconds

1 2 3