Home | History | Annotate | Download | only in dumprendertree2

Lines Matching refs:output

52         StringBuilder output = getStringBuilderForType(OutputType.EXCEEDED_DB_QUOTA_MESSAGE);
70 output.append("UI DELEGATE DATABASE CALLBACK: ");
71 output.append("exceededDatabaseQuotaForSecurityOrigin:{");
72 output.append(protocol + ", " + host + ", " + port + "} ");
73 output.append("database:" + databaseIdentifier + "\n");
77 StringBuilder output = getStringBuilderForType(OutputType.CONSOLE_MESSAGE);
79 output.append("CONSOLE MESSAGE: line " + consoleMessage.lineNumber());
80 output.append(": " + consoleMessage.message() + "\n");
84 StringBuilder output = getStringBuilderForType(OutputType.JS_DIALOG);
86 output.append("ALERT: ");
87 output.append(message);
88 output.append('\n');
92 StringBuilder output = getStringBuilderForType(OutputType.JS_DIALOG);
94 output.append("CONFIRM: ");
95 output.append(message);
96 output.append('\n');
100 StringBuilder output = getStringBuilderForType(OutputType.JS_DIALOG);
102 output.append("PROMPT: ");
103 output.append(message);
104 output.append(", default text: ");
105 output.append(defaultValue);
106 output.append('\n');