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

1 2

  /external/chromium_org/third_party/libaddressinput/src/cpp/test/
format_element_test.cc 29 std::ostringstream oss; local
30 oss << FormatElement();
31 EXPECT_EQ("Newline", oss.str());
35 std::ostringstream oss; local
36 oss << FormatElement("Text");
37 EXPECT_EQ("Literal: Text", oss.str());
41 std::ostringstream oss; local
42 oss << FormatElement(SORTING_CODE);
43 EXPECT_EQ("Field: SORTING_CODE", oss.str());
address_field_test.cc 27 std::ostringstream oss; local
28 oss << SORTING_CODE;
29 EXPECT_EQ("SORTING_CODE", oss.str());
33 std::ostringstream oss; local
34 oss << static_cast<AddressField>(-42);
35 EXPECT_EQ("[INVALID ENUM VALUE -42]", oss.str());
address_problem_test.cc 27 std::ostringstream oss; local
28 oss << UNKNOWN_VALUE;
29 EXPECT_EQ("UNKNOWN_VALUE", oss.str());
33 std::ostringstream oss; local
34 oss << static_cast<AddressProblem>(-42);
35 EXPECT_EQ("[INVALID ENUM VALUE -42]", oss.str());
address_data_test.cc 147 std::ostringstream oss; local
160 oss << address;
171 "recipient: \"N\"\n", oss.str());
  /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() + (kBitsPerWord / 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 37 std::ostringstream oss; local
38 rt.Dump(oss);
39 EXPECT_NE(oss.str().find("(empty)"), std::string::npos) << oss.str();
55 std::ostringstream oss; local
56 rt.Dump(oss);
57 EXPECT_NE(oss.str().find("1 of java.lang.String"), std::string::npos) << oss.str();
58 EXPECT_EQ(oss.str().find("short[]"), std::string::npos) << oss.str()
66 std::ostringstream oss; local
85 std::ostringstream oss; local
94 std::ostringstream oss; local
    [all...]
indirect_reference_table_test.cc 29 std::ostringstream oss; local
30 irt->Dump(oss);
32 EXPECT_EQ(oss.str().find("java.lang.Object"), std::string::npos) << oss.str();
34 EXPECT_NE(oss.str().find("1 of java.lang.Object"), std::string::npos) << oss.str();
36 EXPECT_NE(oss.str().find(StringPrintf("%zd of java.lang.Object (%zd unique instances)",
41 << oss.str();
  /external/chromium_org/content/browser/renderer_host/media/
audio_input_sync_writer.cc 59 std::ostringstream oss; local
63 oss << "AISW::Write: audio input data received for the first time: delay "
69 oss << "AISW::Write: audio input data delay unexpectedly long: delay = "
73 if (!oss.str().empty()) {
74 MediaStreamManager::SendMessageToNativeLog(oss.str());
75 DVLOG(1) << oss.str();
audio_input_renderer_host.cc 25 std::ostringstream oss; local
26 oss << "[stream_id=" << stream_id << "] ";
28 oss << "AIRH::";
29 oss << msg;
30 content::MediaStreamManager::SendMessageToNativeLog(oss.str());
31 DVLOG(1) << oss.str();
239 std::ostringstream oss; local
240 oss << "AIC reports error_code=" << error_code;
241 LogMessage(entry->stream_id, oss.str(), false);
306 std::ostringstream oss; local
    [all...]
  /external/chromium_org/third_party/webrtc/base/
stringencode.h 171 std::ostringstream oss; local
172 oss << std::boolalpha << t;
173 *s = oss.str();
174 return !oss.fail();
  /external/chromium_org/chrome/browser/history/android/
android_urls_database.cc 91 std::ostringstream oss; local
96 oss << ", ";
99 oss << *i;
104 sql.append(oss.str());
android_cache_database.cc 71 std::ostringstream oss; local
75 oss << ", ";
78 oss << *i;
86 sql.append(oss.str());
  /external/chromium_org/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...]
  /external/chromium_org/native_client_sdk/src/examples/api/input_event/
input_event.cc 232 std::stringstream oss; local
233 oss << "Default (unhandled) event, type=" << event.GetType();
234 PostMessage(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...]
  /art/compiler/utils/
dedupe_set.h 104 std::ostringstream oss; local
105 oss << set_name << " lock " << i;
106 lock_name_[i] = oss.str();
  /art/runtime/interpreter/
interpreter_common.h 352 std::ostringstream oss; local
353 oss << PrettyMethod(shadow_frame.GetMethod())
359 oss << StringPrintf(" vreg%u=0x%08X", i, raw_value);
363 oss << "/java.lang.String \"" << ref_value->AsString()->ToModifiedUtf8() << "\"";
365 oss << "/" << PrettyTypeOf(ref_value);
369 TRACE_LOG << oss.str() << "\n";
  /external/chromium_org/content/renderer/media/
audio_input_message_filter.cc 20 std::ostringstream oss; local
21 oss << "[stream_id=" << stream_id << "] AIMF::" << msg;
22 content::WebRtcLogMessage(oss.str());
23 DVLOG(1) << oss.str();
  /external/stlport/test/unit/
sstream_test.cpp 476 ostringstream oss; local
477 oss << v;
478 return 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;
  /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();
  /sdk/emulator/opengl/host/tools/emugen/
EntryPoint.cpp 144 std::ostringstream oss; local
145 oss << "var" << nvars;
146 varname = oss.str();
  /external/jsoncpp/src/lib_json/
json_writer.cpp 169 std::ostringstream oss; local
170 oss << "\\u" << std::hex << std::uppercase << std::setfill('0') << std::setw(4) << static_cast<int>(*c);
171 result += oss.str();

Completed in 1229 milliseconds

1 2