Lines Matching refs:toString
85 toString(): void {
86 console.log('Web Component toString');
109 … this.webviewController.registerJavaScriptProxy(this.testObj, "testObjName", ["test", "toString"],
233 toString(param: String): void {
234 console.log('Web Component toString' + param);
257 … this.webviewController.registerJavaScriptProxy(this.testObj, "testObjName", ["test", "toString"]);
285 testObjName.toString(testObjName.test());
312 toString(param: ESObject): void {
313 console.log('Web Component toString' + param["name"]);
336 … this.webviewController.registerJavaScriptProxy(this.testObj, "testObjName", ["test", "toString"]);
364 testObjName.toString(testObjName.test());
385 toString(param: String): void {
386 console.log('Web Component toString' + param);
409 … this.webviewController.registerJavaScriptProxy(this.testObj, "testObjName", ["test", "toString"]);
437 testObjName.test(function(param){testObjName.toString(param)});
458 toString(param: String): void {
459 console.log('Web Component toString' + param);
482 … this.webviewController.registerJavaScriptProxy(this.testObj, "testObjName", ["test", "toString"]);
516 testObjName.toString(param)
526 testObjName.toString(param)
570 toString(param: string): void {
571 console.log('Web Component toString' + param);
594 … this.webviewController.registerJavaScriptProxy(this.testObj, "testObjName", ["test", "toString"]);
650 toString(param: String): void {
674 … this.webviewController.registerJavaScriptProxy(this.testObj, "testObjName", ["test", "toString"]);
702 …testObjName.test().then((param)=>{testObjName.toString(param)}).catch((param)=>{testObjName.toStri…
722 toString(param:String): void {
746 … this.webviewController.registerJavaScriptProxy(this.testObj, "testObjName", ["test", "toString"]);
777 p.then((param)=>{testObjName.toString(param)})