Home | History | Annotate | Download | only in base

Lines Matching refs:print

19   print('usage: ' +
65 print('Invalid test type: ' + testType);
118 print('// GENERATED FILE');
119 print(argHint);
120 print('// PLEASE DO NOT HAND EDIT!');
121 print();
132 print('#include "chrome/test/base/extension_js_browser_test.h"');
137 print('#include "chrome/test/base/v8_unit_test.h"');
142 print('#include "chrome/test/base/web_ui_browser_test.h"');
147 print('#include "url/gurl.h"');
148 print('#include "testing/gtest/include/gtest/gtest.h"');
151 print();
227 print('Can\'t have closure dependencies without a deps file.');
247 print('Unknown object', require, 'required by', path);
266 print('Unknown dependency:', dep);
280 print(code);
343 print('typedef ' + typedefCppFixture + ' ' + testFixture + ';');
347 print(testF + '(' + testFixture + ', ' + testFunction + ') {');
349 print(' AddLibrary(base::FilePath(FILE_PATH_LITERAL("' +
352 print(' AddLibrary(base::FilePath(FILE_PATH_LITERAL("' +
355 print(' set_preload_test_fixture("' + testFixture + '");');
356 print(' set_preload_test_name("' + testFunction + '");');
361 print(' BrowsePreload(GURL("' + browsePreload + '"));');
363 print(' BrowsePrintPreload(GURL(WebUITestDataPathToURL(\n' +
366 print(' ' + testPredicate + '(RunJavascriptTestF(' + isAsyncParam +
371 print('}');
372 print();