HomeSort by relevance Sort by last modified time
    Searched refs:ToString (Results 626 - 650 of 1208) sorted by null

<<21222324252627282930>>

  /external/chromium_org/dbus/
exported_object.cc 201 LOG(WARNING) << "Interface is missing: " << method_call->ToString();
211 LOG(WARNING) << "Unknown method: " << method_call->ToString();
  /external/chromium_org/net/base/
ip_endpoint_unittest.cc 158 TEST_F(IPEndPointTest, ToString) {
165 const std::string result = endpoint.ToString();
  /external/chromium_org/ppapi/native_client/tests/nacl_browser/fault_injection/
fault_pm_nameservice_test.cc 230 reply = sb.ToString();
233 // fprintf(stderr, "posting reply \"%s\".\n", sb.ToString().c_str());
240 PostMessage(pp::Var(sb.ToString()));
  /external/chromium_org/ppapi/native_client/tests/nacl_browser/nameservice/
pm_nameservice_test.cc 230 reply = sb.ToString();
233 // fprintf(stderr, "posting reply \"%s\".\n", sb.ToString().c_str());
240 PostMessage(pp::Var(sb.ToString()));
  /external/chromium_org/third_party/WebKit/Source/core/html/
TimeRangesTest.cpp 41 static std::string ToString(const TimeRanges& ranges)
52 #define ASSERT_RANGE(expected, range) ASSERT_EQ(expected, ToString(*range))
  /external/chromium_org/third_party/libjingle/source/talk/base/
httpcommon.cc 144 const char* ToString(HttpVersion version) {
152 const char* ToString(HttpVerb verb) {
160 const char* ToString(HttpHeader header) {
413 ? address.hostname() : address.ToString();
525 return sprintfn(buffer, size, "%s %.*s HTTP/%s", ToString(verb), path.size(),
526 path.data(), ToString(version));
642 size_t len = sprintfn(buffer, size, "HTTP/%s %lu", ToString(version), scode);
890 sprintfn(spn, MAX_SPN, "HTTP/%s", server.ToString().c_str());
  /external/chromium_org/third_party/re2/re2/
tostring.cc 48 string Regexp::ToString() {
57 #define ToString DontCallToString // Avoid accidental recursion.
  /external/chromium_org/tools/grit/grit/format/policy_templates/writers/
adm_writer.py 58 def ToString(self):
256 return self.lines.ToString()
  /external/chromium_org/v8/test/webkit/
dfg-to-string-bad-toString.js 25 "Tests that we do ToString conversions correctly when String.prototype.valueOf is not what we wanted."
28 String.prototype.toString = function() { return 42; }
dfg-to-string-bad-valueOf.js 25 "Tests that we do ToString conversions correctly when String.prototype.valueOf is not what we wanted."
dfg-to-string-int-or-string.js 25 "Tests that we do ToString conversions correctly when String.prototype.valueOf is not what we wanted."
dfg-to-string-int.js 25 "Tests that we do ToString conversions correctly when String.prototype.valueOf is not what we wanted."
dfg-to-string-on-cell.js 24 description("Tests that ToString on a cell works.");
dfg-to-string-on-value.js 24 description("Tests that ToString on a possible-non-cell value works.");
dfg-to-string-side-effect-clobbers-toString.js 25 "Tests what happens when you do ToString twice, and it has a side effect that clobbers the toString method in between the two ToStrings."
37 var code = "(function(s) { " + (i < 150 ? "return " + i + ";" : "count++; debug(\"hi!\"); s.toString = function() { return " + i + "; };") + " })";
dfg-to-string-side-effect.js 25 "Tests that we do ToString conversions correctly when String.prototype.valueOf is not what we wanted."
35 shouldBe("\"\" + foo({toString:function() { debug(\"hello\"); return 42; }})", "\"42\"");
dfg-to-string-toString-becomes-bad.js 25 "Tests that we do ToString conversions correctly when String.prototype.valueOf is initially fine but then gets clobbered."
37 String.prototype.toString = function() { return 42; }
dfg-to-string-toString-in-string.js 25 "Tests that we do ToString conversions correctly when String.prototype.valueOf is fine but we define our own on the String object itself."
39 argument.toString = function() { return 42; }
dfg-to-string-valueOf-in-string.js 25 "Tests that we do ToString conversions correctly when String.prototype.valueOf is fine but we define our own on the String object itself."
  /external/chromium_org/webkit/browser/fileapi/
sandbox_directory_database.cc 200 std::string key = itr->key().ToString();
209 !base::StringToInt64(itr->value().ToString(), &last_file_id_))
218 !base::StringToInt64(itr->value().ToString(), &last_integer_))
474 StartsWithASCII(iter->key().ToString(), child_key_prefix, true)) {
475 std::string child_id_string = iter->value().ToString();
708 status.ToString();
924 << from_here.ToString() << " with error: " << status.ToString();
  /external/regex-re2/re2/
tostring.cc 48 string Regexp::ToString() {
57 #define ToString DontCallToString // Avoid accidental recursion.
  /external/v8/test/mjsunit/
stack-traces.js 102 CustomError.prototype.toString = function () {
154 toString: function () {
185 ReferenceError.prototype.toString = function () { NESTED_FAIL; };
200 toString: function() { FAIL; } };
261 testTraceNativeConversion(String); // Does ToString on argument.
263 testTraceNativeConversion(RegExp); // Does ToString on argument.
265 testTraceNativeConstructor(String); // Does ToString on argument.
267 testTraceNativeConstructor(RegExp); // Does ToString on argument.
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
Antlr.Runtime.Tree.Tests.pas 636 Result := Buf.ToString;
663 CheckEquals(Stream.ToString, ' 101 2 102 2 103 3 104 3');
676 CheckEquals(Stream.ToString, ' 101 2 102 3');
708 CheckEquals(GetStringOfEntireStreamContentsWithNodeTypesOnly(Stream), Buf.ToString);
709 CheckEquals(Stream.ToString, Buf2.ToString);
776 CheckEquals(Stream.ToString, ' 101 102 103');
798 CheckEquals(Stream.ToString, ' 101 2 102 2 103 3 104 3 105');
811 CheckEquals(Stream.ToString, ' 101');
1001 CheckEquals(Stream.ToString, ' 101 2 102 2 103 3 104 2 105 3 106 2 107 3 108 109 3')
    [all...]
  /external/chromium_org/base/message_loop/
message_loop.cc 285 DCHECK(!task.is_null()) << from_here.ToString();
292 DCHECK(!task.is_null()) << from_here.ToString();
300 DCHECK(!task.is_null()) << from_here.ToString();
307 DCHECK(!task.is_null()) << from_here.ToString();
315 DCHECK(!task.is_null()) << from_here.ToString();
  /external/chromium_org/net/http/
http_network_layer_unittest.cc 54 return HostPortPair::FromURL(GURL(SPDY_PROXY_AUTH_ORIGIN)).ToString();
60 return HostPortPair::FromURL(GURL(DATA_REDUCTION_FALLBACK_HOST)).ToString();
450 HostPortPair::FromURL(GURL(DATA_REDUCTION_FALLBACK_HOST)).ToString();
459 HostPortPair::FromURL(GURL(DATA_REDUCTION_FALLBACK_HOST)).ToString();
488 HostPortPair::FromURL(GURL(SPDY_PROXY_AUTH_ORIGIN)).ToString());

Completed in 498 milliseconds

<<21222324252627282930>>