OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:tostring
(Results
251 - 275
of
6261
) sorted by null
<<
11
12
13
14
15
16
17
18
19
20
>>
/external/chromium/chrome/browser/resources/options/
certificate_edit_ca_trust_overlay.js
55
$('certificateCaTrustSSLCheckbox').checked.
toString
(),
56
$('certificateCaTrustEmailCheckbox').checked.
toString
(),
57
$('certificateCaTrustObjSignCheckbox').checked.
toString
()]);
79
[$('certificateCaTrustSSLCheckbox').checked.
toString
(),
80
$('certificateCaTrustEmailCheckbox').checked.
toString
(),
81
$('certificateCaTrustObjSignCheckbox').checked.
toString
()]);
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
ALoopCommand.java
183
public String
toString
()
186
+
toString
(this._position_)
187
+
toString
(this._variable_)
188
+
toString
(this._start_)
189
+
toString
(this._end_)
190
+
toString
(this._command_);
/external/v8/test/mjsunit/regress/
regress-485.js
56
var builtin2 = Object.prototype.
toString
;
58
// Global object has class "Object" according to Object.prototype.
toString
.
60
assertTrue("[object builtins]" != builtin2(), "Direct call to
toString
");
61
assertTrue("[object builtins]" != builtin2.call(), "call() to
toString
");
62
assertTrue("[object builtins]" != builtin2.apply(), "call() to
toString
");
64
"call.call() to
toString
");
/external/webkit/LayoutTests/storage/indexeddb/
keyrange.html
134
testPassed("Caught exception: " + e.
toString
());
142
testPassed("Caught exception: " + e.
toString
());
150
testPassed("Caught exception: " + e.
toString
());
158
testPassed("Caught exception: " + e.
toString
());
166
testPassed("Caught exception: " + e.
toString
());
174
testPassed("Caught exception: " + e.
toString
());
/external/webkit/Source/JavaScriptCore/runtime/
ExceptionHelpers.cpp
53
virtual UString
toString
(ExecState*) const { return "JavaScript execution exceeded timeout."; }
70
virtual UString
toString
(ExecState*) const { return "JavaScript execution terminated."; }
96
UString errorMessage = makeUString("'", value.
toString
(exec), "' is not a valid argument for '", op, "'");
105
UString errorMessage = makeUString("'", value.
toString
(exec), "' is not a constructor");
114
UString errorMessage = makeUString("'", value.
toString
(exec), "' is not a function");
123
UString errorMessage = makeUString("'", value.
toString
(exec), "' is not an object");
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Array/
15.4.2.3.js
51
"var arr = new Array(); arr.getClass = Object.prototype.
toString
; arr.getClass()",
53
eval("var arr = new Array(); arr.getClass = Object.prototype.
toString
; arr.getClass()") );
56
array[item++] = new TestCase( SECTION, "(new Array()).
toString
== Array.prototype.
toString
", true, (new Array()).
toString
== Array.prototype.
toString
);
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/ExecutionContexts/
10.2.2-2.js
74
testcases[tc++] = new TestCase( SECTION, "eval(new MyObject('hello').
toString
())", "hello", eval("
toString
()") );
75
testcases[tc++] = new TestCase( SECTION, "eval('getClass') == Object.prototype.
toString
", true, eval("getClass") == Object.prototype.
toString
);
102
this.getClass = Object.prototype.
toString
;
103
this.
toString
= new Function( "return this.value+''" );
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/FunctionObjects/
15.3.4-1.js
59
"var myfunc = Function.prototype; myfunc.
toString
= Object.prototype.
toString
; myfunc.
toString
()",
61
eval("var myfunc = Function.prototype; myfunc.
toString
= Object.prototype.
toString
; myfunc.
toString
()"));
15.3.4.js
58
"var myfunc = Function.prototype; myfunc.
toString
= Object.prototype.
toString
; myfunc.
toString
()",
60
eval("var myfunc = Function.prototype; myfunc.
toString
= Object.prototype.
toString
; myfunc.
toString
()"));
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Number/
15.7.4.js
59
"Number.prototype.
toString
=Object.prototype.
toString
;Number.prototype.
toString
()",
61
eval("Number.prototype.
toString
=Object.prototype.
toString
;Number.prototype.
toString
()") );
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Object/
shell.js
25
* Then obj.
toString
() invokes Number.prototype.
toString
().
26
* We would also like to access Object.prototype.
toString
().
29
* Invoking Number.prototype.
toString
() on this just returns 7.
30
* Object.prototype.
toString
() on this returns '[object Number]'.
39
var cnObjectToString = Object.prototype.
toString
;
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_4/Regress/
function-002.js
44
* via Function.prototype.
toString
(), into some other string that compiles to
61
dec2 = "function f2(){var y; f1(1,2); y=new Date(); print(y.
toString
())}";
76
"f1.
toString
() == dec1",
78
StripSpaces(f1.
toString
()) == StripSpaces(dec1));
90
"f2.
toString
() == dec2",
92
StripSpaces(f2.
toString
()) == StripSpaces(dec2));
/frameworks/base/core/tests/coretests/src/com/android/internal/http/multipart/
MultipartTest.java
39
out.write(filebuffer.
toString
());
58
assertEquals("Multipart content type error", contentType.
toString
(), h.getValue());
113
// System.out.print(output.
toString
());
114
assertEquals("Multipart content error", output.
toString
(), os.
toString
());
116
// System.out.print(os.
toString
());
/libcore/luni/src/main/java/java/security/cert/
PKIXCertPathValidatorResult.java
110
public String
toString
() {
111
StringBuilder sb = new StringBuilder(super.
toString
());
113
sb.append(trustAnchor.
toString
());
116
: policyTree.
toString
());
118
sb.append(subjectPublicKey.
toString
());
120
return sb.
toString
();
/libcore/luni/src/main/java/org/apache/harmony/security/utils/
Array.java
42
return result.
toString
();
53
public static String
toString
(byte[] array, String prefix) {
55
// in <code>String
toString
(byte[], String)</code> method
93
sb.append(charForm.
toString
());
107
sb.append(charForm.
toString
());
110
return sb.
toString
();
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
CodeSignerTest.java
120
* Tests CodeSigner.
toString
()
123
assertTrue(new CodeSigner(cpath, null).
toString
().contains(""));
124
assertTrue(new CodeSigner(cpath, ts).
toString
().contains(""));
126
assertTrue(new CodeSigner(cpath, null).
toString
().contains("Signer"));
127
assertTrue(new CodeSigner(cpath, ts).
toString
().contains(ts.
toString
()));
/packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
MockSuggestionProviderCursor.java
115
return Double.valueOf(o.
toString
());
122
return Float.valueOf(o.
toString
());
128
return Integer.valueOf(o.
toString
());
134
return Long.valueOf(o.
toString
());
140
return Short.valueOf(o.
toString
());
147
return o.
toString
();
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
KeyboardShiftState.java
63
Log.d(TAG, "setShifted(" + newShiftState + "): " +
toString
(oldState) + " > " + this);
87
Log.d(TAG, "setShiftLocked(" + newShiftLockState + "): " +
toString
(oldState)
95
Log.d(TAG, "setAutomaticTemporaryUpperCase: " +
toString
(oldState) + " > " + this);
124
public String
toString
() {
125
return
toString
(mState);
128
private static String
toString
(int state) {
/cts/tests/tests/provider/src/android/provider/cts/
Contacts_OrganizationsTest.java
38
Organizations.TYPE_CUSTOM, label).
toString
();
44
Organizations.TYPE_OTHER, label).
toString
();
48
Organizations.TYPE_WORK, label).
toString
();
/cts/tests/tests/text/src/android/text/cts/
InputFilter_AllCapsTest.java
49
assertEquals(expectedString1 , dest.
toString
());
53
assertEquals(expectedString2, dest.
toString
());
57
assertEquals(expectedString3, dest.
toString
());
/cts/tools/dex-tools/src/dex/reader/
DexAnnotationImpl.java
68
public String
toString
() {
75
builder.append(value.
toString
());
80
return builder.
toString
();
/dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstAnnotation.java
67
public String
toString
() {
68
return annotation.
toString
();
85
return annotation.
toString
();
/dalvik/dx/src/com/android/dx/rop/cst/
CstAnnotation.java
67
public String
toString
() {
68
return annotation.
toString
();
85
return annotation.
toString
();
/development/samples/ToyVpn/src/com/example/android/toyvpn/
ToyVpnClient.java
60
.putExtra(prefix + ".ADDRESS", mServerAddress.getText().
toString
())
61
.putExtra(prefix + ".PORT", mServerPort.getText().
toString
())
62
.putExtra(prefix + ".SECRET", mSharedSecret.getText().
toString
());
/development/tools/mkstubs/tests/com/android/mkstubs/sourcer/
MethodSourcerTest.java
59
mWriter.
toString
());
75
mWriter.
toString
());
91
mWriter.
toString
());
Completed in 1468 milliseconds
<<
11
12
13
14
15
16
17
18
19
20
>>