Home | History | Annotate | Download | only in base

Lines Matching refs:to

21         ' path-to-testfile.js testfile.js path_to_deps.js output.cc test-type');
26 * Full path to the test input file.
32 * Relative path to the test input file appropriate for use in the
39 * Path to Closure library style deps.js file.
45 * Path to C++ file generation is outputting to.
63 * C++ gtest macro to use for TEST_F depending on |testType|.
76 * Maintains a list of relative file paths to add to each gtest body
83 * When true, add calls to set_preload_test_(fixture|name). This is needed when
84 * |testType| === 'webui' to send an injection message before the page loads,
91 * Whether cc headers need to be generated.
97 * Helpful hint pointing back to the source js.
104 * Generates the header of the cc file to stdout.
149 * Convert the |includeFile| to paths appropriate for immediate
151 * @param {string} includeFile The file to include.
164 * Maps object names to the path to the file that provides them.
171 * Maps dependency path names to object names required by the file.
180 * Called by the javascript in the deps file to add modules and their
182 * @param {string} path Relative path to the file.
199 * Resolves a list of libraries to an ordered list of paths to load by the
205 * @return {Array.<string>} List of paths to load.
224 // Set before recursing to catch cycles.
258 * @param {string} code The code to output.
266 * Outputs |commentEncodedCode|, converting comment to enclosed C++ code.
268 * the space in '/ *' and '* /' should be removed to form a comment delimiter):
270 * Code between / *! and * / will be extracted and written to stdout.
284 * @param {Array.<string>} includes Paths to JavaScript files to
301 * @param {Function} testBody The function body to execute for this test.