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

1 2 3 4 5 6 7 8 91011>>

  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
MismatchedRangeException.as 39 public function toString():String {
MismatchedSetException.as 38 public function toString():String {
MismatchedTokenException.as 39 public function toString():String {
MismatchedTreeNodeException.as 12 public function toString():String {
CommonToken.as 165 public function toString():String {
NoViableAltException.as 46 public function toString():String {
  /external/chromium_org/v8/test/mjsunit/
function.js 74 var x = {}; x.toString = function() { return 'x'; };
75 var y = {}; y.toString = function() { return 'y'; };
76 var z = {}; z.toString = function() { return 'return x*y'; }
property-object-key.js 28 var key = { toString: function() { return 'baz'; } }
array-join.js 28 // Test that array join calls toString on subarrays.
46 // Replace array.prototype.toString.
47 var oldToString = Array.prototype.toString;
48 Array.prototype.toString = function() { return "array"; };
56 Array.prototype.toString = function() { throw 42; };
64 Array.prototype.toString = function() { return "array"; };
72 // Restore original toString.
73 delete Array.prototype.toString;
74 if (Array.prototype.toString != oldToString) {
75 Array.prototype.toString = oldToString
    [all...]
  /art/test/022-interface/src/
ObjectOverridingInterface.java 23 public String toString();
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
CommonTree.as 152 public function toString():String {
  /external/chromium_org/third_party/WebKit/Source/platform/network/
ProxyServer.cpp 58 String toString(const Vector<ProxyServer>& proxyServers)
71 return stringBuilder.toString();
  /external/chromium_org/v8/test/mjsunit/harmony/
string-repeat.js 68 toString: function() {
  /external/chromium_org/v8/test/mjsunit/regress/
regress-1711.js 28 // string.split needs to evaluate the separator's toString even if limit
29 // is 0 because toString may have side effects.
33 separator.toString = function() {
regress-1980.js 34 Error.prototype.toString.call(invalid_this[i]);
37 assertEquals("Error.prototype.toString called on non-object", e.message);
regress-2263.js 29 var sep = { toString: function(){ throw { type: "toString" }}};
  /external/chromium_org/v8/test/webkit/
array-tostring-and-join.js 26 "This test checks that toString and join share the same HashSet for visited elements."
32 obj.__proto__.toString = function() { return "*" + arr + "*"; }
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-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; }
sort-randomly.js 37 this.toString = function() { return (Math.random() * 100).toString(); }
static-scope-object.js 26 this.toString = function() { return "the global object" };
tostring-exception-in-property-access.js 26 var toStringThrower = { toString: function() { throw "Exception thrown by toString"; }};
  /frameworks/base/media/java/android/media/
AudioPatch.java 57 public String toString() {
60 s.append(mHandle.toString());
64 s.append(source.toString());
69 s.append(sink.toString());
74 return s.toString();
  /libcore/luni/src/main/java/java/lang/
AssertionError.java 90 this(Integer.toString(detailMessage));
101 this(Long.toString(detailMessage));
112 this(Float.toString(detailMessage));
123 this(Double.toString(detailMessage));
  /cts/tools/signature-tools/src/signature/model/impl/
SigParameter.java 39 public String toString() {
41 builder.append(super.toString());
43 builder.append(getType().toString());
44 return builder.toString();

Completed in 4383 milliseconds

1 2 3 4 5 6 7 8 91011>>