Lines Matching refs:toString
83 toString(): void {
84 console.log('Web Component toString');
107 … this.webviewController.registerJavaScriptProxy(this.testObj, "testObjName", ["test", "toString"],
231 toString(param: String): void {
232 console.log('Web Component toString' + param);
255 … this.webviewController.registerJavaScriptProxy(this.testObj, "testObjName", ["test", "toString"]);
283 testObjName.toString(testObjName.test());
310 toString(param: ESObject): void {
311 console.log('Web Component toString' + param["name"]);
334 … this.webviewController.registerJavaScriptProxy(this.testObj, "testObjName", ["test", "toString"]);
362 testObjName.toString(testObjName.test());
383 toString(param: String): void {
384 console.log('Web Component toString' + param);
407 … this.webviewController.registerJavaScriptProxy(this.testObj, "testObjName", ["test", "toString"]);
435 testObjName.test(function(param){testObjName.toString(param)});
456 toString(param: String): void {
457 console.log('Web Component toString' + param);
480 … this.webviewController.registerJavaScriptProxy(this.testObj, "testObjName", ["test", "toString"]);
514 testObjName.toString(param)
524 testObjName.toString(param)
568 toString(param: string): void {
569 console.log('Web Component toString' + param);
592 … this.webviewController.registerJavaScriptProxy(this.testObj, "testObjName", ["test", "toString"]);
648 toString(param: String): void {
672 … this.webviewController.registerJavaScriptProxy(this.testObj, "testObjName", ["test", "toString"]);
700 …testObjName.test().then((param)=>{testObjName.toString(param)}).catch((param)=>{testObjName.toStri…
720 toString(param:String): void {
744 … this.webviewController.registerJavaScriptProxy(this.testObj, "testObjName", ["test", "toString"]);
775 p.then((param)=>{testObjName.toString(param)})