Searched refs:opt_message (Results 1 – 4 of 4) sorted by relevance
/external/v8/test/mjsunit/tools/ |
D | profile.js | 37 function assertPathExists(root, path, opt_message) { argument 38 var message = opt_message ? ' (' + opt_message + ')' : ''; 43 }), opt_message); 47 function assertNoPathExists(root, path, opt_message) { argument 48 var message = opt_message ? ' (' + opt_message + ')' : ''; 49 assertNull(root.descendToChild(path), opt_message);
|
/external/webkit/Source/WebKit/chromium/src/js/ |
D | Tests.js | 74 TestSuite.prototype.assertEquals = function(expected, actual, opt_message) argument 78 if (opt_message) 79 message = opt_message + "(" + message + ")"; 89 TestSuite.prototype.assertTrue = function(value, opt_message) argument 91 this.assertEquals(true, !!value, opt_message);
|
/external/chromium/chrome/browser/resources/ntp4/ |
D | new_tab.js | 187 function assert(condition, opt_message) { argument 191 if (opt_message) 192 msg = msg + ': ' + opt_message;
|
/external/chromium/chrome/browser/resources/touch_ntp/ |
D | newtab.js | 184 function assert(condition, opt_message) { argument 188 if (opt_message) 189 msg = msg + ': ' + opt_message;
|