Home | History | Annotate | Download | only in tools

Lines Matching refs:root

28 // Load source code files from <project root>/tools.
37 function assertPathExists(root, path, opt_message) {
39 assertNotNull(root.descendToChild(path, function(node, pos) {
47 function assertNoPathExists(root, path, opt_message) {
49 assertNull(root.descendToChild(path), opt_message);
189 function assertNodeWeights(root, path, selfTicks, totalTicks) {
190 var node = root.descendToChild(path);
217 var root = testDriver.profile.getTopDownProfile().getRoot();
220 assertNodeWeights(root, data[0], data[1], data[2]);
230 this.root = null;
274 this.root = this.counters[''];
288 assertEquals(testDriver.root.self, flatProfileRoot.selfWeight);
289 assertEquals(testDriver.root.total, flatProfileRoot.totalWeight);
315 var root = profile.getRoot();
318 assertNodeWeights(root, data[0], data[1], data[2]);